mega-evme 1.7.0

MegaETH executable EVM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Replay module for fetching and executing transactions from RPC
//!
//! This module provides functionality to replay historical transactions
//! by fetching them from an RPC endpoint and re-executing them.

mod cmd;
mod fixture;
mod hardforks;

pub use cmd::Cmd;
pub use hardforks::*;

// Re-export EvmeError and Result from common module
pub use crate::common::{EvmeError as ReplayError, Result, RpcArgs};