safe_rs/simulation/
mod.rs

1//! Transaction simulation using fork database and revm
2
3mod fork;
4
5pub use alloy::rpc::types::trace::geth::pre_state::{AccountState, DiffMode};
6pub use fork::{ForkSimulator, SimulationResult};