revm/handler/
handle_types.rspub mod execution;
pub mod generic;
pub mod post_execution;
pub mod pre_execution;
pub mod validation;
pub use execution::{
ExecutionHandler, FrameCallHandle, FrameCallReturnHandle, FrameCreateHandle,
FrameCreateReturnHandle, InsertCallOutcomeHandle, InsertCreateOutcomeHandle,
};
pub use generic::{GenericContextHandle, GenericContextHandleRet};
pub use post_execution::{
EndHandle, OutputHandle, PostExecutionHandler, ReimburseCallerHandle, RewardBeneficiaryHandle,
};
pub use pre_execution::{
DeductCallerHandle, LoadAccountsHandle, LoadPrecompilesHandle, PreExecutionHandler,
};
pub use validation::{
ValidateEnvHandle, ValidateInitialTxGasHandle, ValidateTxEnvAgainstState, ValidationHandler,
};