monad-revm 0.7.0

Monad-specific REVM implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Block lifecycle helpers for staking syscalls.
pub mod block;
/// Builder traits and types for Monad EVM construction.
pub mod builder;
/// Default context implementations for Monad.
pub mod default_ctx;
/// Execution traits and error types for Monad.
pub mod exec;

pub use block::{
    apply_epoch_boundary, apply_syscall_on_epoch_change, apply_syscall_reward,
    apply_syscall_snapshot,
};
pub use builder::{DefaultMonadEvm, MonadBuilder};
pub use default_ctx::{monad_context_with_db, DefaultMonad, MonadContext};
pub use exec::{MonadContextTr, MonadError};