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;
10mod deserializer;
11mod env;
12mod error;
13mod spec;
14mod test;
15mod test_authorization;
16mod test_suite;
17mod test_unit;
18mod transaction;
19mod utils;
20
21pub use account_info::*;
22pub use deserializer::*;
23pub use env::*;
24pub use error::*;
25pub use spec::*;
26pub use test::*;
27pub use test_authorization::*;
28pub use test_suite::*;
29pub use test_unit::*;
30pub use transaction::*;
31pub use utils::*;