revm_primitives/
eip7907.rs

1//! EIP-7907: Meter Contract Code Size And Increase Limit (Prague)
2//!
3//! This EIP introduces updated code size limits that apply starting from the Prague hard fork.
4
5/// By default the limit is `0xC000` (49_152 bytes).
6pub const MAX_CODE_SIZE: usize = 0xC000;
7/// By default the limit is `0x12000` (73_728 bytes).
8pub const MAX_INITCODE_SIZE: usize = 0x12000;