Ethereum Test Forks package¶
Ethereum test fork definitions.
ForkAttribute
¶
Bases: Protocol
A protocol to get the attribute of a fork at a given block number and timestamp.
Source code in src/ethereum_test_forks/base_fork.py
10 11 12 13 14 15 16 17 18 19 |
|
__call__(block_number=0, timestamp=0)
¶
Returns the value of the attribute at the given block number and timestamp.
Source code in src/ethereum_test_forks/base_fork.py
15 16 17 18 19 |
|
ArrowGlacier
¶
Bases: London
Arrow Glacier fork
Source code in src/ethereum_test_forks/forks/forks.py
249 250 251 252 253 254 |
|
Berlin
¶
Bases: Istanbul
Berlin fork
Source code in src/ethereum_test_forks/forks/forks.py
215 216 217 218 219 220 221 222 223 224 225 |
|
tx_types(block_number=0, timestamp=0)
classmethod
¶
At Berlin, access list transactions are introduced
Source code in src/ethereum_test_forks/forks/forks.py
220 221 222 223 224 225 |
|
Byzantium
¶
Bases: Homestead
Byzantium fork
Source code in src/ethereum_test_forks/forks/forks.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
|
get_reward(block_number=0, timestamp=0)
classmethod
¶
At Byzantium, the block reward is reduced to 3_000_000_000_000_000_000 wei
Source code in src/ethereum_test_forks/forks/forks.py
153 154 155 156 157 158 159 |
|
precompiles(block_number=0, timestamp=0)
classmethod
¶
At Byzantium, pre-compiles for bigint modular exponentiation, addition and scalar multiplication on elliptic curve alt_bn128, and optimal ate pairing check on elliptic curve alt_bn128 are introduced
Source code in src/ethereum_test_forks/forks/forks.py
161 162 163 164 165 166 167 168 |
|
Cancun
¶
Bases: Shanghai
Cancun fork
Source code in src/ethereum_test_forks/forks/forks.py
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 |
|
is_deployed()
classmethod
¶
Flags that Cancun has not been deployed to mainnet; it is under active development.
Source code in src/ethereum_test_forks/forks/forks.py
328 329 330 331 332 333 334 |
|
header_excess_blob_gas_required(block_number=0, timestamp=0)
classmethod
¶
Excess blob gas is required starting from Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
336 337 338 339 340 341 |
|
header_blob_gas_used_required(block_number=0, timestamp=0)
classmethod
¶
Blob gas used is required starting from Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
343 344 345 346 347 348 |
|
header_beacon_root_required(block_number=0, timestamp=0)
classmethod
¶
Parent beacon block root is required starting from Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
350 351 352 353 354 355 |
|
tx_types(block_number=0, timestamp=0)
classmethod
¶
At Cancun, blob type transactions are introduced
Source code in src/ethereum_test_forks/forks/forks.py
357 358 359 360 361 362 |
|
precompiles(block_number=0, timestamp=0)
classmethod
¶
At Cancun, pre-compile for kzg point evaluation is introduced
Source code in src/ethereum_test_forks/forks/forks.py
364 365 366 367 368 369 |
|
pre_allocation(block_number=0, timestamp=0)
classmethod
¶
Cancun requires pre-allocation of the beacon root contract for EIP-4788
Source code in src/ethereum_test_forks/forks/forks.py
371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
|
engine_new_payload_version(block_number=0, timestamp=0)
classmethod
¶
Starting at Cancun, new payload calls must use version 3
Source code in src/ethereum_test_forks/forks/forks.py
386 387 388 389 390 391 392 393 |
|
engine_new_payload_blob_hashes(block_number=0, timestamp=0)
classmethod
¶
Starting at Cancun, payloads must have blob hashes.
Source code in src/ethereum_test_forks/forks/forks.py
395 396 397 398 399 400 |
|
engine_new_payload_beacon_root(block_number=0, timestamp=0)
classmethod
¶
Starting at Cancun, payloads must have a parent beacon block root.
Source code in src/ethereum_test_forks/forks/forks.py
402 403 404 405 406 407 |
|
Constantinople
¶
Bases: Byzantium
Constantinople fork
Source code in src/ethereum_test_forks/forks/forks.py
171 172 173 174 175 176 177 178 179 180 181 182 |
|
get_reward(block_number=0, timestamp=0)
classmethod
¶
At Constantinople, the block reward is reduced to 2_000_000_000_000_000_000 wei
Source code in src/ethereum_test_forks/forks/forks.py
176 177 178 179 180 181 182 |
|
ConstantinopleFix
¶
Bases: Constantinople
Constantinople Fix fork
Source code in src/ethereum_test_forks/forks/forks.py
185 186 187 188 189 190 |
|
Frontier
¶
Bases: BaseFork
Frontier fork
Source code in src/ethereum_test_forks/forks/forks.py
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 |
|
fork(block_number=0, timestamp=0)
classmethod
¶
Returns fork name as it's meant to be passed to the transition tool for execution.
Source code in src/ethereum_test_forks/forks/forks.py
15 16 17 18 19 20 |
|
header_base_fee_required(block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain base fee
Source code in src/ethereum_test_forks/forks/forks.py
22 23 24 25 26 27 |
|
header_prev_randao_required(block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain Prev Randao value
Source code in src/ethereum_test_forks/forks/forks.py
29 30 31 32 33 34 |
|
header_zero_difficulty_required(block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not have difficulty zero
Source code in src/ethereum_test_forks/forks/forks.py
36 37 38 39 40 41 |
|
header_withdrawals_required(block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain withdrawals
Source code in src/ethereum_test_forks/forks/forks.py
43 44 45 46 47 48 |
|
header_excess_blob_gas_required(block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain excess blob gas
Source code in src/ethereum_test_forks/forks/forks.py
50 51 52 53 54 55 |
|
header_blob_gas_used_required(block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain blob gas used
Source code in src/ethereum_test_forks/forks/forks.py
57 58 59 60 61 62 |
|
engine_new_payload_version(block_number=0, timestamp=0)
classmethod
¶
At genesis, payloads cannot be sent through the engine API
Source code in src/ethereum_test_forks/forks/forks.py
64 65 66 67 68 69 70 71 |
|
header_beacon_root_required(block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain parent beacon block root
Source code in src/ethereum_test_forks/forks/forks.py
73 74 75 76 77 78 |
|
engine_new_payload_blob_hashes(block_number=0, timestamp=0)
classmethod
¶
At genesis, payloads do not have blob hashes.
Source code in src/ethereum_test_forks/forks/forks.py
80 81 82 83 84 85 |
|
engine_new_payload_beacon_root(block_number=0, timestamp=0)
classmethod
¶
At genesis, payloads do not have a parent beacon block root.
Source code in src/ethereum_test_forks/forks/forks.py
87 88 89 90 91 92 |
|
engine_forkchoice_updated_version(block_number=0, timestamp=0)
classmethod
¶
At genesis, forkchoice updates cannot be sent through the engine API.
Source code in src/ethereum_test_forks/forks/forks.py
94 95 96 97 98 99 100 101 |
|
get_reward(block_number=0, timestamp=0)
classmethod
¶
At Genesis the expected reward amount in wei is 5_000_000_000_000_000_000
Source code in src/ethereum_test_forks/forks/forks.py
103 104 105 106 107 108 109 |
|
tx_types(block_number=0, timestamp=0)
classmethod
¶
At Genesis, only legacy transactions are allowed
Source code in src/ethereum_test_forks/forks/forks.py
111 112 113 114 115 116 |
|
precompiles(block_number=0, timestamp=0)
classmethod
¶
At Genesis, no pre-compiles are allowed
Source code in src/ethereum_test_forks/forks/forks.py
118 119 120 121 122 123 |
|
pre_allocation(block_number=0, timestamp=0)
classmethod
¶
Returns whether the fork expects pre-allocation of accounts
Frontier does not require pre-allocated accounts
Source code in src/ethereum_test_forks/forks/forks.py
125 126 127 128 129 130 131 132 |
|
GrayGlacier
¶
Bases: ArrowGlacier
Gray Glacier fork
Source code in src/ethereum_test_forks/forks/forks.py
257 258 259 260 261 262 |
|
Homestead
¶
Bases: Frontier
Homestead fork
Source code in src/ethereum_test_forks/forks/forks.py
135 136 137 138 139 140 141 142 143 144 145 |
|
precompiles(block_number=0, timestamp=0)
classmethod
¶
At Homestead, EC-recover, SHA256, RIPEMD160, and Identity pre-compiles are introduced
Source code in src/ethereum_test_forks/forks/forks.py
140 141 142 143 144 145 |
|
Istanbul
¶
Bases: ConstantinopleFix
Istanbul fork
Source code in src/ethereum_test_forks/forks/forks.py
193 194 195 196 197 198 199 200 201 202 203 |
|
precompiles(block_number=0, timestamp=0)
classmethod
¶
At Istanbul, pre-compile for blake2 compression is introduced
Source code in src/ethereum_test_forks/forks/forks.py
198 199 200 201 202 203 |
|
London
¶
Bases: Berlin
London fork
Source code in src/ethereum_test_forks/forks/forks.py
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
|
header_base_fee_required(block_number=0, timestamp=0)
classmethod
¶
Base Fee is required starting from London.
Source code in src/ethereum_test_forks/forks/forks.py
233 234 235 236 237 238 |
|
tx_types(block_number=0, timestamp=0)
classmethod
¶
At London, dynamic fee transactions are introduced
Source code in src/ethereum_test_forks/forks/forks.py
240 241 242 243 244 245 |
|
Merge
¶
Bases: London
Merge fork
Source code in src/ethereum_test_forks/forks/forks.py
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 |
|
header_prev_randao_required(block_number=0, timestamp=0)
classmethod
¶
Prev Randao is required starting from Merge.
Source code in src/ethereum_test_forks/forks/forks.py
270 271 272 273 274 275 |
|
header_zero_difficulty_required(block_number=0, timestamp=0)
classmethod
¶
Zero difficulty is required starting from Merge.
Source code in src/ethereum_test_forks/forks/forks.py
277 278 279 280 281 282 |
|
get_reward(block_number=0, timestamp=0)
classmethod
¶
Merge updates the reward to 0.
Source code in src/ethereum_test_forks/forks/forks.py
284 285 286 287 288 289 |
|
engine_new_payload_version(block_number=0, timestamp=0)
classmethod
¶
Starting at the merge, payloads can be sent through the engine API
Source code in src/ethereum_test_forks/forks/forks.py
291 292 293 294 295 296 297 298 |
|
MuirGlacier
¶
Bases: Istanbul
Muir Glacier fork
Source code in src/ethereum_test_forks/forks/forks.py
207 208 209 210 211 212 |
|
Shanghai
¶
Bases: Merge
Shanghai fork
Source code in src/ethereum_test_forks/forks/forks.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
|
header_withdrawals_required(block_number=0, timestamp=0)
classmethod
¶
Withdrawals are required starting from Shanghai.
Source code in src/ethereum_test_forks/forks/forks.py
306 307 308 309 310 311 |
|
engine_new_payload_version(block_number=0, timestamp=0)
classmethod
¶
Starting at Shanghai, new payload calls must use version 2
Source code in src/ethereum_test_forks/forks/forks.py
313 314 315 316 317 318 319 320 |
|
BerlinToLondonAt5
¶
Bases: Berlin
Berlin to London transition at Block 5
Source code in src/ethereum_test_forks/forks/transition.py
9 10 11 12 13 14 15 |
|
MergeToShanghaiAtTime15k
¶
Bases: Merge
Merge to Shanghai transition at Timestamp 15k
Source code in src/ethereum_test_forks/forks/transition.py
18 19 20 21 22 23 24 |
|
ShanghaiToCancunAtTime15k
¶
Bases: Shanghai
Shanghai to Cancun transition at Timestamp 15k
Source code in src/ethereum_test_forks/forks/transition.py
27 28 29 30 31 32 33 |
|
InvalidForkError
¶
Bases: Exception
Invalid fork error raised when the fork specified by command-line option --latest-fork is not found.
Source code in src/ethereum_test_forks/helpers.py
11 12 13 14 15 16 17 18 |
|
forks_from(fork, deployed_only=True)
¶
Returns the specified fork and all forks after it.
Source code in src/ethereum_test_forks/helpers.py
129 130 131 132 133 134 135 136 137 |
|
forks_from_until(fork_from, fork_until)
¶
Returns the specified fork and all forks after it until and including the second specified fork
Source code in src/ethereum_test_forks/helpers.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
|
get_deployed_forks()
¶
Returns a list of all the fork classes implemented by ethereum_test_forks
that have been deployed to mainnet, chronologically ordered by deployment.
Source code in src/ethereum_test_forks/helpers.py
36 37 38 39 40 41 |
|
get_development_forks()
¶
Returns a list of all the fork classes implemented by ethereum_test_forks
that have been not yet deployed to mainnet and are currently under
development. The list is ordered by their planned deployment date.
Source code in src/ethereum_test_forks/helpers.py
44 45 46 47 48 49 50 |
|
get_forks()
¶
Returns a list of all the fork classes implemented by
ethereum_test_forks
ordered chronologically by deployment.
Source code in src/ethereum_test_forks/helpers.py
21 22 23 24 25 26 27 28 29 30 31 32 33 |
|
get_transition_forks()
¶
Returns all the transition forks
Source code in src/ethereum_test_forks/helpers.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
is_fork(fork, which)
¶
Returns True
if fork
is which
or beyond, `False otherwise.
Source code in src/ethereum_test_forks/helpers.py
140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
transition_fork_from_to(fork_from, fork_to)
¶
Returns the transition fork that transitions to and from the specified forks.
Source code in src/ethereum_test_forks/helpers.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
|
transition_fork_to(fork_to)
¶
Returns the transition fork that transitions to the specified fork.
Source code in src/ethereum_test_forks/helpers.py
93 94 95 96 97 98 99 100 101 102 103 104 |
|