aurora_evm/executor/
mod.rs

1//! # EVM executors
2//!
3//! Executors are structs that hook gasometer and the EVM core together. It
4//! also handles the call stacks in EVM.
5//!
6//! Currently only a stack-based (customizable) executor is provided.
7
8pub mod stack;