alloy_eip7547/
constants.rs

1//! Constants related to EIP-7547.
2
3/// The maximum gas allowed for the inclusion list.
4///
5/// Based on the following part of the spec:
6///
7/// ## Constants
8///
9/// | Name | Value |
10/// | - | - |
11/// | `INCLUSION_LIST_MAX_GAS` |  `uint64(4194304) = 2**22` |
12pub const INCLUSION_LIST_MAX_GAS: u64 = 4194304;
13
14/// The capabilities for inclusion list engine API endpoints.
15pub const CAPABILITIES: [&str; 2] = ["engine_newInclusionListV1", "engine_getInclusionListV1"];