1#![cfg_attr(not(test), warn(unused_crate_dependencies))]
5#![cfg_attr(not(feature = "std"), no_std)]
6
7#[cfg(not(feature = "std"))]
8extern crate alloc as std;
9
10pub mod constants;
11pub mod eip170;
12pub mod eip4844;
13pub mod eip7702;
14pub mod eip7823;
15pub mod eip7825;
16pub mod eip7918;
17pub mod eof;
18pub mod hardfork;
19
20pub use constants::*;
21
22pub use alloy_primitives::map::{self, hash_map, hash_set, HashMap, HashSet};
25pub use alloy_primitives::{
26 self, address, b256, bytes, fixed_bytes, hex, hex_literal, keccak256, ruint, uint, Address,
27 Bytes, FixedBytes, Log, LogData, TxKind, B256, I128, I256, U128, U256,
28};
29
30pub type StorageKey = U256;
32pub type StorageValue = U256;