revm/handler/
mainnet.rs
1mod execution;
4mod post_execution;
5mod pre_execution;
6mod validation;
7
8pub use execution::{
11 call, call_return, create, create_return, eofcreate, eofcreate_return, execute_frame,
12 insert_call_outcome, insert_create_outcome, insert_eofcreate_outcome, last_frame_return,
13};
14pub use post_execution::{clear, end, output, refund, reimburse_caller, reward_beneficiary};
15pub use pre_execution::{
16 apply_eip7702_auth_list, deduct_caller, deduct_caller_inner, load_accounts, load_precompiles,
17};
18pub use validation::{validate_env, validate_initial_tx_gas, validate_tx_against_state};