revm_specification/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Optimism-specific constants, types, and helpers.
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
extern crate alloc as std;

pub mod constants;
pub mod eip170;
pub mod eip2;
pub mod eip2930;
pub mod eip4844;
pub mod eip7702;
pub mod hardfork;