-
Notifications
You must be signed in to change notification settings - Fork 514
/
Copy pathIReleaseSpec.cs
437 lines (334 loc) · 12.9 KB
/
IReleaseSpec.cs
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// SPDX-FileCopyrightText: 2022 Demerzel Solutions Limited
// SPDX-License-Identifier: LGPL-3.0-only
using Nethermind.Int256;
namespace Nethermind.Core.Specs
{
/// <summary>
/// https://github.com/ethereum/EIPs
/// </summary>
public interface IReleaseSpec : IEip1559Spec, IReceiptSpec
{
public string Name { get; }
long MaximumExtraDataSize { get; }
long MaxCodeSize { get; }
//EIP-3860: Limit and meter initcode
long MaxInitCodeSize => 2 * MaxCodeSize;
long MinGasLimit { get; }
long GasLimitBoundDivisor { get; }
UInt256 BlockReward { get; }
long DifficultyBombDelay { get; }
long DifficultyBoundDivisor { get; }
long? FixedDifficulty { get; }
int MaximumUncleCount { get; }
/// <summary>
/// ---
/// In chainspec - Ethash.Duration
/// </summary>
bool IsTimeAdjustmentPostOlympic { get; }
/// <summary>
/// Homestead contract creation via transaction cost set to 21000 + 32000 (previously 21000)
/// Failing init does not create an empty code contract
/// Difficulty adjustment changed
/// Transaction signature uniqueness (s-value has to be less or equal than than secp256k1n/2)
/// </summary>
bool IsEip2Enabled { get; }
/// <summary>
/// Homestead DELEGATECALL instruction added
/// </summary>
bool IsEip7Enabled { get; }
/// <summary>
/// Byzantium Change difficulty adjustment to target mean block time including uncles
/// </summary>
bool IsEip100Enabled { get; }
/// <summary>
/// Byzantium REVERT instruction in the Ethereum Virtual Machine
/// ---
/// in chainspec Ethash.Eip100bTransition
/// </summary>
bool IsEip140Enabled { get; }
/// <summary>
/// Tangerine Whistle Gas cost of IO operations increased
/// </summary>
bool IsEip150Enabled { get; }
/// <summary>
/// Spurious Dragon Chain ID in signatures (replay attack protection)
/// </summary>
bool IsEip155Enabled { get; }
/// <summary>
/// Spurious Dragon State clearing
/// </summary>
bool IsEip158Enabled { get; }
/// <summary>
/// Spurious Dragon EXP cost increase
/// </summary>
bool IsEip160Enabled { get; }
/// <summary>
/// Spurious Dragon Code size limit
/// ---
/// in chainspec MaxCodeSizeTransition
/// </summary>
bool IsEip170Enabled { get; }
/// <summary>
/// Byzantium Precompiled contracts for addition and scalar multiplication on the elliptic curve alt_bn128
/// ---
/// in chainspec in builtin accounts
/// </summary>
bool IsEip196Enabled { get; }
/// <summary>
/// Byzantium Precompiled contracts for optimal ate pairing check on the elliptic curve alt_bn128
/// ---
/// in chainspec in builtin accounts
/// </summary>
bool IsEip197Enabled { get; }
/// <summary>
/// Byzantium Precompiled contract for bigint modular exponentiation
/// ---
/// in chainspec in builtin accounts
/// </summary>
bool IsEip198Enabled { get; }
/// <summary>
/// Byzantium New opcodes: RETURNDATASIZE and RETURNDATACOPY
/// </summary>
bool IsEip211Enabled { get; }
/// <summary>
/// Byzantium New opcode STATICCALL
/// </summary>
bool IsEip214Enabled { get; }
/// <summary>
/// Byzantium Difficulty Bomb Delay and Block Reward Reduction
/// ---
/// in chainspec as DifficultyBombDelays
/// </summary>
bool IsEip649Enabled { get; }
/// <summary>
/// Constantinople SHL, SHR, SAR instructions
/// </summary>
bool IsEip145Enabled { get; }
/// <summary>
/// Constantinople Skinny CREATE2
/// </summary>
bool IsEip1014Enabled { get; }
/// <summary>
/// Constantinople EXTCODEHASH instructions
/// </summary>
bool IsEip1052Enabled { get; }
/// <summary>
/// Constantinople Net gas metering for SSTORE operations
/// </summary>
bool IsEip1283Enabled { get; }
/// <summary>
/// Constantinople Difficulty Bomb Delay and Block Reward Adjustment
/// ---
/// in chainspec as DifficultyBombDelays and BlockReward
/// </summary>
bool IsEip1234Enabled { get; }
/// <summary>
/// Istanbul ChainID opcode
/// </summary>
bool IsEip1344Enabled { get; }
/// <summary>
/// Istanbul transaction data gas cost reduction
/// </summary>
bool IsEip2028Enabled { get; }
/// <summary>
/// Istanbul Blake2F precompile
/// </summary>
bool IsEip152Enabled { get; }
/// <summary>
/// Istanbul alt_bn128 gas cost reduction
/// </summary>
bool IsEip1108Enabled { get; }
/// <summary>
/// Istanbul state opcodes gas cost increase
/// </summary>
bool IsEip1884Enabled { get; }
/// <summary>
/// Istanbul net-metered SSTORE
/// </summary>
bool IsEip2200Enabled { get; }
/// <summary>
/// Berlin BLS crypto precompiles
/// </summary>
bool IsEip2537Enabled { get; }
/// <summary>
/// Berlin MODEXP precompiles
/// </summary>
bool IsEip2565Enabled { get; }
/// <summary>
/// Berlin gas cost increases for state reading opcodes
/// </summary>
bool IsEip2929Enabled { get; }
/// <summary>
/// Berlin access lists
/// </summary>
bool IsEip2930Enabled { get; }
/// <summary>
/// Should EIP158 be ignored for this account.
/// </summary>
/// <remarks>THis is needed for SystemUser account compatibility with Parity.</remarks>
/// <param name="address"></param>
/// <returns></returns>
bool IsEip158IgnoredAccount(Address address) => false;
/// <summary>
/// BaseFee opcode
/// </summary>
bool IsEip3198Enabled { get; }
/// <summary>
/// Reduction in refunds
/// </summary>
bool IsEip3529Enabled { get; }
/// <summary>
/// Reject new contracts starting with the 0xEF byte
/// </summary>
bool IsEip3541Enabled { get; }
/// <summary>
/// Reject transactions where senders have non-empty code hash
/// </summary>
bool IsEip3607Enabled { get; }
/// <summary>
/// Warm COINBASE
/// </summary>
bool IsEip3651Enabled { get; }
/// <summary>
/// Transient storage
/// </summary>
bool IsEip1153Enabled { get; }
/// <summary>
/// PUSH0 instruction
/// </summary>
bool IsEip3855Enabled { get; }
/// <summary>
/// MCOPY instruction
/// </summary>
bool IsEip5656Enabled { get; }
/// <summary>
/// EIP-3860: Limit and meter initcode
/// </summary>
bool IsEip3860Enabled { get; }
/// <summary>
/// Gets or sets a value indicating whether the
/// <see href="https://eips.ethereum.org/EIPS/eip-4895">EIP-4895</see>
/// validator withdrawals are enabled.
/// </summary>
bool IsEip4895Enabled { get; }
/// <summary>
/// Blob transactions
/// </summary>
bool IsEip4844Enabled { get; }
/// <summary>
/// Parent Beacon Block precompile
/// </summary>
bool IsEip4788Enabled { get; }
Address? Eip4788ContractAddress { get; }
/// <summary>
/// EIP-6110: Supply validator deposits on chain
/// </summary>
bool IsEip6110Enabled { get; }
bool DepositsEnabled => IsEip6110Enabled;
Address DepositContractAddress { get; }
/// <summary>
/// Execution layer triggerable exits
/// </summary>
bool IsEip7002Enabled { get; }
bool WithdrawalRequestsEnabled => IsEip7002Enabled;
Address Eip7002ContractAddress { get; }
/// <summary>
/// EIP-7251: triggered consolidations
/// </summary>
bool IsEip7251Enabled { get; }
bool ConsolidationRequestsEnabled => IsEip7251Enabled;
Address Eip7251ContractAddress { get; }
/// <summary>
/// Save historical block hashes in state
/// </summary>
bool IsEip2935Enabled { get; }
/// <summary>
/// Fetch blockHashes from the state for BLOCKHASH opCode
/// </summary>
bool IsEip7709Enabled { get; }
Address Eip2935ContractAddress { get; }
/// <summary>
/// SELFDESTRUCT only in same transaction
/// </summary>
bool IsEip6780Enabled { get; }
/// <summary>
/// Transactions that allows code delegation for EOA
/// </summary>
bool IsEip7702Enabled { get; }
/// <summary>
/// Blob base fee collection for Gnosis
/// </summary>
bool IsEip4844FeeCollectorEnabled { get; }
/// <summary>
/// Secp256r1 precompile
/// </summary>
bool IsRip7212Enabled { get; }
/// OP Granite
bool IsOpGraniteEnabled { get; }
/// OP Holocene
bool IsOpHoloceneEnabled { get; }
/// <summary>
/// Increase call data cost
/// </summary>
bool IsEip7623Enabled { get; }
/// <summary>
/// Increase ModExp Gas Cost
/// </summary>
bool IsEip7883Enabled { get; }
/// <summary>
/// Should transactions be validated against chainId.
/// </summary>
/// <remarks>Backward compatibility for early Kovan blocks.</remarks>
bool ValidateChainId => true;
/// <summary>
/// EIP-7780: Add blob schedule to EL config files
/// </summary>
public ulong TargetBlobCount { get; }
public ulong MaxBlobCount { get; }
public UInt256 BlobBaseFeeUpdateFraction { get; }
public ulong WithdrawalTimestamp { get; }
public ulong Eip4844TransitionTimestamp { get; }
// STATE related
public bool ClearEmptyAccountWhenTouched => IsEip158Enabled;
// VM
public bool LimitCodeSize => IsEip170Enabled;
public bool UseHotAndColdStorage => IsEip2929Enabled;
public bool UseTxAccessLists => IsEip2930Enabled;
public bool AddCoinbaseToTxAccessList => IsEip3651Enabled;
public bool ModExpEnabled => IsEip198Enabled;
public bool Bn128Enabled => IsEip196Enabled && IsEip197Enabled;
public bool BlakeEnabled => IsEip152Enabled;
public bool Bls381Enabled => IsEip2537Enabled;
public bool ChargeForTopLevelCreate => IsEip2Enabled;
public bool FailOnOutOfGasCodeDeposit => IsEip2Enabled;
public bool UseShanghaiDDosProtection => IsEip150Enabled;
public bool UseExpDDosProtection => IsEip160Enabled;
public bool UseLargeStateDDosProtection => IsEip1884Enabled;
public bool ReturnDataOpcodesEnabled => IsEip211Enabled;
public bool ChainIdOpcodeEnabled => IsEip1344Enabled;
public bool Create2OpcodeEnabled => IsEip1014Enabled;
public bool DelegateCallEnabled => IsEip7Enabled;
public bool StaticCallEnabled => IsEip214Enabled;
public bool ShiftOpcodesEnabled => IsEip145Enabled;
public bool RevertOpcodeEnabled => IsEip140Enabled;
public bool ExtCodeHashOpcodeEnabled => IsEip1052Enabled;
public bool SelfBalanceOpcodeEnabled => IsEip1884Enabled;
public bool UseConstantinopleNetGasMetering => IsEip1283Enabled;
public bool UseIstanbulNetGasMetering => IsEip2200Enabled;
public bool UseNetGasMetering => UseConstantinopleNetGasMetering | UseIstanbulNetGasMetering;
public bool UseNetGasMeteringWithAStipendFix => UseIstanbulNetGasMetering;
public bool Use63Over64Rule => UseShanghaiDDosProtection;
public bool BaseFeeEnabled => IsEip3198Enabled;
// EVM Related
public bool IncludePush0Instruction => IsEip3855Enabled;
public bool TransientStorageEnabled => IsEip1153Enabled;
public bool WithdrawalsEnabled => IsEip4895Enabled;
public bool SelfdestructOnlyOnSameTransaction => IsEip6780Enabled;
public bool IsBeaconBlockRootAvailable => IsEip4788Enabled;
public bool IsBlockHashInStateAvailable => IsEip7709Enabled;
public bool MCopyIncluded => IsEip5656Enabled;
public bool BlobBaseFeeEnabled => IsEip4844Enabled;
bool IsAuthorizationListEnabled => IsEip7702Enabled;
public bool RequestsEnabled => ConsolidationRequestsEnabled || WithdrawalRequestsEnabled || DepositsEnabled;
}
}