mega-state-test 1.6.1

Self-contained EEST-compatible state-test fixtures and runner for mega-evm
//! # state-test-types
//! # This module is copied from `revm`'s `revm-statetest-types` crate.
//!
//! This module provides type definitions and utilities for Ethereum state tests,
//! specifically tailored for use with REVM.
//!
//! It includes structures for representing account information, environment settings,
//! test cases, and transaction data used in Ethereum state tests.

mod account_info;
mod deserializer;
mod env;
mod error;
mod mega_env;
mod spec;
mod test;
mod test_authorization;
mod test_suite;
mod test_unit;
mod transaction;

pub use account_info::*;
pub use deserializer::*;
pub use env::*;
pub use error::*;
pub use mega_env::*;
pub use spec::*;
pub use test::*;
pub use test_authorization::*;
pub use test_suite::*;
pub use test_unit::*;
pub use transaction::*;