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::{
7 AccountStateDebug, CallDebugInfo, CallTraceArena, ForkSimulator, LogDebug,
8 SimulationDebugOutput, SimulationResult, SimulationResultDebug, StateDiffDebug,
9};