aurora-evm 2.2.1

Aurora Ethereum Virtual Machine implementation written in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A stack-based executor with customizable state.
//! A memory-based state is provided, but can be replaced by a custom
//! implementation, for example one interacting with a database.

mod executor;
mod memory;
mod precompile;
mod tagged_runtime;

pub use self::executor::{
    Accessed, Authorization, StackExecutor, StackExitKind, StackState, StackSubstateMetadata,
};
pub use self::memory::{MemoryStackAccount, MemoryStackState, MemoryStackSubstate};
pub use self::precompile::{
    PrecompileFailure, PrecompileFn, PrecompileHandle, PrecompileOutput, PrecompileSet,
};