1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
//! This module contains [`CfgEnv`] and implements [`Cfg`] trait for it.
pub use context_interface::Cfg;
use primitives::{eip170::MAX_CODE_SIZE, eip7825, hardfork::SpecId};
/// EVM configuration
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub struct CfgEnv<SPEC = SpecId> {
/// Chain ID of the EVM. Used in CHAINID opcode and transaction's chain ID check.
///
/// Chain ID is introduced EIP-155.
pub chain_id: u64,
/// Whether to check the transaction's chain ID.
///
/// If set to `false`, the transaction's chain ID check will be skipped.
pub tx_chain_id_check: bool,
/// Specification for EVM represent the hardfork
pub spec: SPEC,
/// If some it will effects EIP-170: Contract code size limit.
///
/// Useful to increase this because of tests.
///
/// By default it is `0x6000` (~25kb).
pub limit_contract_code_size: Option<usize>,
/// Skips the nonce validation against the account's nonce
pub disable_nonce_check: bool,
/// Blob max count. EIP-7840 Add blob schedule to EL config files.
///
/// If this config is not set, the check for max blobs will be skipped.
pub blob_max_count: Option<u64>,
/// Blob base fee update fraction. EIP-4844 Blob base fee update fraction.
///
/// If this config is not set, the blob base fee update fraction will be set to the default value.
/// See also [CfgEnv::blob_base_fee_update_fraction].
///
/// Default values for Cancun is [`primitives::eip4844::BLOB_BASE_FEE_UPDATE_FRACTION_CANCUN`]
/// and for Prague is [`primitives::eip4844::BLOB_BASE_FEE_UPDATE_FRACTION_PRAGUE`].
pub blob_base_fee_update_fraction: Option<u64>,
/// Configures the gas limit cap for the transaction.
///
/// If `None`, default value defined by spec will be used.
///
/// Introduced in Osaka in [EIP-7825: Transaction Gas Limit Cap](https://eips.ethereum.org/EIPS/eip-7825)
/// with initials cap of 30M.
pub tx_gas_limit_cap: Option<u64>,
/// A hard memory limit in bytes beyond which
/// [OutOfGasError::Memory][context_interface::result::OutOfGasError::Memory] cannot be resized.
///
/// In cases where the gas limit may be extraordinarily high, it is recommended to set this to
/// a sane value to prevent memory allocation panics.
///
/// Defaults to `2^32 - 1` bytes per EIP-1985.
#[cfg(feature = "memory_limit")]
pub memory_limit: u64,
/// Skip balance checks if `true`
///
/// Adds transaction cost to balance to ensure execution doesn't fail.
///
/// By default, it is set to `false`.
#[cfg(feature = "optional_balance_check")]
pub disable_balance_check: bool,
/// There are use cases where it's allowed to provide a gas limit that's higher than a block's gas limit.
///
/// To that end, you can disable the block gas limit validation.
///
/// By default, it is set to `false`.
#[cfg(feature = "optional_block_gas_limit")]
pub disable_block_gas_limit: bool,
/// EIP-3607 rejects transactions from senders with deployed code
///
/// In development, it can be desirable to simulate calls from contracts, which this setting allows.
///
/// By default, it is set to `false`.
#[cfg(feature = "optional_eip3607")]
pub disable_eip3607: bool,
/// Disables base fee checks for EIP-1559 transactions
///
/// This is useful for testing method calls with zero gas price.
///
/// By default, it is set to `false`.
#[cfg(feature = "optional_no_base_fee")]
pub disable_base_fee: bool,
}
impl CfgEnv {
/// Creates new `CfgEnv` with default values.
pub fn new() -> Self {
Self::default()
}
}
impl<SPEC: Into<SpecId> + Copy> CfgEnv<SPEC> {
/// Returns the blob base fee update fraction from [CfgEnv::blob_base_fee_update_fraction].
///
/// If this field is not set, return the default value for the spec.
///
/// Default values for Cancun is [`primitives::eip4844::BLOB_BASE_FEE_UPDATE_FRACTION_CANCUN`]
/// and for Prague is [`primitives::eip4844::BLOB_BASE_FEE_UPDATE_FRACTION_PRAGUE`].
pub fn blob_base_fee_update_fraction(&mut self) -> u64 {
self.blob_base_fee_update_fraction.unwrap_or_else(|| {
let spec: SpecId = self.spec.into();
if spec.is_enabled_in(SpecId::PRAGUE) {
primitives::eip4844::BLOB_BASE_FEE_UPDATE_FRACTION_PRAGUE
} else {
primitives::eip4844::BLOB_BASE_FEE_UPDATE_FRACTION_CANCUN
}
})
}
}
impl<SPEC> CfgEnv<SPEC> {
/// Create new `CfgEnv` with default values and specified spec.
pub fn new_with_spec(spec: SPEC) -> Self {
Self {
chain_id: 1,
tx_chain_id_check: false,
limit_contract_code_size: None,
spec,
disable_nonce_check: false,
blob_max_count: None,
tx_gas_limit_cap: None,
blob_base_fee_update_fraction: None,
#[cfg(feature = "memory_limit")]
memory_limit: (1 << 32) - 1,
#[cfg(feature = "optional_balance_check")]
disable_balance_check: false,
#[cfg(feature = "optional_block_gas_limit")]
disable_block_gas_limit: false,
#[cfg(feature = "optional_eip3607")]
disable_eip3607: false,
#[cfg(feature = "optional_no_base_fee")]
disable_base_fee: false,
}
}
/// Consumes `self` and returns a new `CfgEnv` with the specified chain ID.
pub fn with_chain_id(mut self, chain_id: u64) -> Self {
self.chain_id = chain_id;
self
}
/// Enables the transaction's chain ID check.
pub fn enable_tx_chain_id_check(mut self) -> Self {
self.tx_chain_id_check = true;
self
}
/// Disables the transaction's chain ID check.
pub fn disable_tx_chain_id_check(mut self) -> Self {
self.tx_chain_id_check = false;
self
}
/// Consumes `self` and returns a new `CfgEnv` with the specified spec.
pub fn with_spec<OSPEC: Into<SpecId>>(self, spec: OSPEC) -> CfgEnv<OSPEC> {
CfgEnv {
chain_id: self.chain_id,
tx_chain_id_check: self.tx_chain_id_check,
limit_contract_code_size: self.limit_contract_code_size,
spec,
disable_nonce_check: self.disable_nonce_check,
tx_gas_limit_cap: self.tx_gas_limit_cap,
blob_max_count: self.blob_max_count,
blob_base_fee_update_fraction: self.blob_base_fee_update_fraction,
#[cfg(feature = "memory_limit")]
memory_limit: self.memory_limit,
#[cfg(feature = "optional_balance_check")]
disable_balance_check: self.disable_balance_check,
#[cfg(feature = "optional_block_gas_limit")]
disable_block_gas_limit: self.disable_block_gas_limit,
#[cfg(feature = "optional_eip3607")]
disable_eip3607: self.disable_eip3607,
#[cfg(feature = "optional_no_base_fee")]
disable_base_fee: self.disable_base_fee,
}
}
/// Sets the blob target
pub fn with_blob_max_count(mut self, blob_max_count: u64) -> Self {
self.set_blob_max_count(blob_max_count);
self
}
/// Sets the blob target
pub fn set_blob_max_count(&mut self, blob_max_count: u64) {
self.blob_max_count = Some(blob_max_count);
}
/// Clears the blob target and max count over hardforks.
pub fn clear_blob_max_count(&mut self) {
self.blob_max_count = None;
}
}
impl<SPEC: Into<SpecId> + Copy> Cfg for CfgEnv<SPEC> {
type Spec = SPEC;
#[inline]
fn chain_id(&self) -> u64 {
self.chain_id
}
#[inline]
fn spec(&self) -> Self::Spec {
self.spec
}
#[inline]
fn tx_chain_id_check(&self) -> bool {
self.tx_chain_id_check
}
#[inline]
fn tx_gas_limit_cap(&self) -> u64 {
self.tx_gas_limit_cap
.unwrap_or(if self.spec.into().is_enabled_in(SpecId::OSAKA) {
eip7825::TX_GAS_LIMIT_CAP
} else {
u64::MAX
})
}
#[inline]
fn blob_max_count(&self) -> Option<u64> {
self.blob_max_count
}
fn max_code_size(&self) -> usize {
self.limit_contract_code_size.unwrap_or(MAX_CODE_SIZE)
}
fn is_eip3607_disabled(&self) -> bool {
cfg_if::cfg_if! {
if #[cfg(feature = "optional_eip3607")] {
self.disable_eip3607
} else {
false
}
}
}
fn is_balance_check_disabled(&self) -> bool {
cfg_if::cfg_if! {
if #[cfg(feature = "optional_balance_check")] {
self.disable_balance_check
} else {
false
}
}
}
/// Returns `true` if the block gas limit is disabled.
fn is_block_gas_limit_disabled(&self) -> bool {
cfg_if::cfg_if! {
if #[cfg(feature = "optional_block_gas_limit")] {
self.disable_block_gas_limit
} else {
false
}
}
}
fn is_nonce_check_disabled(&self) -> bool {
self.disable_nonce_check
}
fn is_base_fee_check_disabled(&self) -> bool {
cfg_if::cfg_if! {
if #[cfg(feature = "optional_no_base_fee")] {
self.disable_base_fee
} else {
false
}
}
}
}
impl<SPEC: Default> Default for CfgEnv<SPEC> {
fn default() -> Self {
Self::new_with_spec(SPEC::default())
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn blob_max_and_target_count() {
let cfg: CfgEnv = Default::default();
assert_eq!(cfg.blob_max_count(), None);
}
}