revm_statetest_types/lib.rs
1//! # revm-statetest-types
2//!
3//! This crate provides type definitions and utilities for Ethereum state tests,
4//! specifically tailored for use with REVM.
5//!
6//! It includes structures for representing account information, environment settings,
7//! test cases, and transaction data used in Ethereum state tests.
8
9mod account_info;
10/// Blockchain test types
11pub mod blockchain;
12mod deserializer;
13mod env;
14mod error;
15mod spec;
16mod test;
17mod test_authorization;
18mod test_suite;
19mod test_unit;
20mod transaction;
21mod utils;
22
23pub use account_info::*;
24pub use deserializer::*;
25pub use env::*;
26pub use error::*;
27pub use spec::*;
28pub use test::*;
29pub use test_authorization::*;
30pub use test_suite::*;
31pub use test_unit::*;
32pub use transaction::*;
33pub use utils::*;