Skip to main content

safe_rs/types/
mod.rs

1//! Type definitions for Safe transactions
2
3mod batch_result;
4mod call;
5mod operation;
6
7pub use batch_result::{BatchResult, BatchSimulationResult};
8pub use call::{Call, CallBuilder, SafeCall, TypedCall};
9pub use operation::Operation;