//! Global constants for the EVM
//!
//! Here you can find constants that dont belong to any EIP and are there for the genesis.
use ;
/// Number of block hashes that EVM can access in the past (pre-Prague)
pub const BLOCK_HASH_HISTORY: u64 = 256;
/// The address of precompile 3, which is handled specially in a few places
pub const PRECOMPILE3: Address =
new;
/// EVM interpreter stack limit
pub const STACK_LIMIT: usize = 1024;
/// EVM call stack limit
pub const CALL_STACK_LIMIT: u64 = 1024;
/// The Keccak-256 hash of the empty string `""`.
pub const KECCAK_EMPTY: B256 =
b256!;