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