reth_chainspec/
constants.rs

1use crate::spec::DepositContract;
2use alloy_eips::eip6110::MAINNET_DEPOSIT_CONTRACT_ADDRESS;
3use alloy_primitives::b256;
4
5/// Gas per transaction not creating a contract.
6pub const MIN_TRANSACTION_GAS: u64 = 21_000u64;
7
8/// Mainnet prune delete limit.
9pub const MAINNET_PRUNE_DELETE_LIMIT: usize = 20000;
10
11/// Deposit contract address: `0x00000000219ab540356cbb839cbe05303d7705fa`
12pub(crate) const MAINNET_DEPOSIT_CONTRACT: DepositContract = DepositContract::new(
13    MAINNET_DEPOSIT_CONTRACT_ADDRESS,
14    11052984,
15    b256!("0x649bbc62d0e31342afea4e5cd82d4049e7e1ee912fc0889aa790803be39038c5"),
16);