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
28 29 30 31 32 33 34 35 36 37 38 | |
__call__(block_number=0, timestamp=0)
¶
Return value of the attribute at the given block number and timestamp.
Source code in src/ethereum_test_forks/base_fork.py
34 35 36 37 38 | |
BPO1
¶
Bases: Osaka
Mainnet BPO1 fork - Blob Parameter Only fork 1.
Source code in src/ethereum_test_forks/forks/forks.py
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 | |
blob_base_fee_update_fraction(*, block_number=0, timestamp=0)
classmethod
¶
Return the blob base fee update fraction for BPO1.
Source code in src/ethereum_test_forks/forks/forks.py
1871 1872 1873 1874 | |
target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO1 have a target of 10 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1876 1877 1878 1879 | |
max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO1 have a max of 15 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1881 1882 1883 1884 | |
BPO2
¶
Bases: BPO1
Mainnet BPO2 fork - Blob Parameter Only fork 2.
Source code in src/ethereum_test_forks/forks/forks.py
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 | |
blob_base_fee_update_fraction(*, block_number=0, timestamp=0)
classmethod
¶
Return the blob base fee update fraction for BPO2.
Source code in src/ethereum_test_forks/forks/forks.py
1890 1891 1892 1893 | |
target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO2 have a target of 14 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1895 1896 1897 1898 | |
max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO2 have a max of 21 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1900 1901 1902 1903 | |
BPO3
¶
Bases: BPO2
Pseudo BPO3 fork - Blob Parameter Only fork 3. For testing purposes only.
Source code in src/ethereum_test_forks/forks/forks.py
1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 | |
blob_base_fee_update_fraction(*, block_number=0, timestamp=0)
classmethod
¶
Return the blob base fee update fraction for BPO3.
Source code in src/ethereum_test_forks/forks/forks.py
1912 1913 1914 1915 | |
target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO3 have a target of 21 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1917 1918 1919 1920 | |
max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO3 have a max of 32 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1922 1923 1924 1925 | |
BPO4
¶
Bases: BPO3
Pseudo BPO4 fork - Blob Parameter Only fork 4. For testing purposes only. Testing a decrease in values from BPO3.
Source code in src/ethereum_test_forks/forks/forks.py
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 | |
blob_base_fee_update_fraction(*, block_number=0, timestamp=0)
classmethod
¶
Return the blob base fee update fraction for BPO4.
Source code in src/ethereum_test_forks/forks/forks.py
1934 1935 1936 1937 | |
target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO4 have a target of 14 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1939 1940 1941 1942 | |
max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in BPO4 have a max of 21 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1944 1945 1946 1947 | |
BPO5
¶
Bases: BPO4
Pseudo BPO5 fork - Blob Parameter Only fork 5. For testing purposes only. Required to parse Fusaka devnet genesis files.
Source code in src/ethereum_test_forks/forks/forks.py
1950 1951 1952 1953 1954 1955 1956 | |
Amsterdam
¶
Bases: Osaka
Amsterdam fork.
Source code in src/ethereum_test_forks/forks/forks.py
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 | |
header_bal_hash_required(*, block_number=0, timestamp=0)
classmethod
¶
From Amsterdam, header must contain block access list hash (EIP-7928).
Source code in src/ethereum_test_forks/forks/forks.py
1962 1963 1964 1965 1966 1967 | |
is_deployed()
classmethod
¶
Return True if this fork is deployed.
Source code in src/ethereum_test_forks/forks/forks.py
1969 1970 1971 1972 | |
engine_new_payload_version(*, block_number=0, timestamp=0)
classmethod
¶
From Amsterdam, new payload calls must use version 5.
Source code in src/ethereum_test_forks/forks/forks.py
1974 1975 1976 1977 1978 1979 | |
engine_execution_payload_block_access_list(*, block_number=0, timestamp=0)
classmethod
¶
From Amsterdam, engine execution payload includes block_access_list
as a parameter.
Source code in src/ethereum_test_forks/forks/forks.py
1981 1982 1983 1984 1985 1986 1987 1988 1989 | |
ArrowGlacier
¶
Bases: London
Arrow Glacier fork.
Source code in src/ethereum_test_forks/forks/forks.py
1122 1123 1124 1125 | |
Berlin
¶
Bases: Istanbul
Berlin fork.
Source code in src/ethereum_test_forks/forks/forks.py
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 | |
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
900 901 902 903 | |
contract_creating_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
905 906 907 908 909 910 | |
transaction_intrinsic_cost_calculator(*, block_number=0, timestamp=0)
classmethod
¶
At Berlin, the transaction intrinsic cost needs to take the access list into account.
Source code in src/ethereum_test_forks/forks/forks.py
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 | |
Byzantium
¶
Bases: Homestead
Byzantium fork.
Source code in src/ethereum_test_forks/forks/forks.py
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 | |
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
773 774 775 776 777 778 779 | |
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
781 782 783 784 785 786 787 788 789 790 791 792 793 | |
max_code_size(*, block_number=0, timestamp=0)
classmethod
¶
At Spurious Dragon, an upper bound was introduced for max contract code size.
Source code in src/ethereum_test_forks/forks/forks.py
795 796 797 798 799 800 801 802 803 | |
call_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
At Byzantium, STATICCALL opcode was introduced.
Source code in src/ethereum_test_forks/forks/forks.py
805 806 807 808 809 810 811 812 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
814 815 816 817 818 819 820 821 822 | |
Cancun
¶
Bases: Shanghai
Cancun fork.
Source code in src/ethereum_test_forks/forks/forks.py
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 | |
get_blob_constant(name)
classmethod
¶
Return blob constant if it exists.
Source code in src/ethereum_test_forks/forks/forks.py
1208 1209 1210 1211 1212 1213 1214 1215 | |
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
1217 1218 1219 1220 | |
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
1222 1223 1224 1225 | |
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
1227 1228 1229 1230 | |
blob_gas_price_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the blob gas price at Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 | |
excess_blob_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the excess blob gas for a block at Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 | |
min_base_fee_per_blob_gas(*, block_number=0, timestamp=0)
classmethod
¶
Return the minimum base fee per blob gas for Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
1291 1292 1293 1294 | |
blob_base_fee_update_fraction(*, block_number=0, timestamp=0)
classmethod
¶
Return the blob base fee update fraction for Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
1296 1297 1298 1299 | |
blob_gas_per_blob(*, block_number=0, timestamp=0)
classmethod
¶
Blobs are enabled starting from Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
1301 1302 1303 1304 | |
supports_blobs(*, block_number=0, timestamp=0)
classmethod
¶
At Cancun, blobs support is enabled.
Source code in src/ethereum_test_forks/forks/forks.py
1306 1307 1308 1309 | |
target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs are enabled starting from Cancun, with a static target of 3 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1311 1312 1313 1314 1315 1316 1317 | |
max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs are enabled starting from Cancun, with a static max of 6 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1319 1320 1321 1322 1323 1324 1325 | |
blob_reserve_price_active(*, block_number=0, timestamp=0)
classmethod
¶
Blob reserve price is not supported in Cancun.
Source code in src/ethereum_test_forks/forks/forks.py
1327 1328 1329 1330 | |
full_blob_tx_wrapper_version(*, block_number=0, timestamp=0)
classmethod
¶
Pre-Osaka forks don't use tx wrapper versions for full blob transactions.
Source code in src/ethereum_test_forks/forks/forks.py
1332 1333 1334 1335 1336 1337 1338 1339 1340 | |
max_blobs_per_tx(*, block_number=0, timestamp=0)
classmethod
¶
Blobs are enabled starting from Cancun, with a static max equal to the max per block.
Source code in src/ethereum_test_forks/forks/forks.py
1342 1343 1344 1345 1346 1347 1348 | |
blob_schedule(*, block_number=0, timestamp=0)
classmethod
¶
At Cancun, the fork object runs this routine to get the updated blob schedule.
Source code in src/ethereum_test_forks/forks/forks.py
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 | |
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
1376 1377 1378 1379 | |
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
1381 1382 1383 1384 1385 1386 | |
system_contracts(*, block_number=0, timestamp=0)
classmethod
¶
Cancun introduces the system contract for EIP-4788.
Source code in src/ethereum_test_forks/forks/forks.py
1388 1389 1390 1391 | |
pre_allocation_blockchain(*, block_number=0, timestamp=0)
classmethod
¶
Cancun requires pre-allocation of the beacon root contract for EIP-4788 on blockchain type tests.
Source code in src/ethereum_test_forks/forks/forks.py
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 | |
engine_new_payload_version(*, block_number=0, timestamp=0)
classmethod
¶
From Cancun, new payload calls must use version 3.
Source code in src/ethereum_test_forks/forks/forks.py
1409 1410 1411 1412 1413 1414 | |
engine_get_blobs_version(*, block_number=0, timestamp=0)
classmethod
¶
At Cancun, the engine get blobs version is 1.
Source code in src/ethereum_test_forks/forks/forks.py
1416 1417 1418 1419 1420 1421 | |
engine_new_payload_blob_hashes(*, block_number=0, timestamp=0)
classmethod
¶
From Cancun, payloads must have blob hashes.
Source code in src/ethereum_test_forks/forks/forks.py
1423 1424 1425 1426 | |
engine_new_payload_beacon_root(*, block_number=0, timestamp=0)
classmethod
¶
From Cancun, payloads must have a parent beacon block root.
Source code in src/ethereum_test_forks/forks/forks.py
1428 1429 1430 1431 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 | |
Constantinople
¶
Bases: Byzantium
Constantinople fork.
Source code in src/ethereum_test_forks/forks/forks.py
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 | |
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
828 829 830 831 832 833 834 | |
create_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
At Constantinople, CREATE2 opcode is added.
Source code in src/ethereum_test_forks/forks/forks.py
836 837 838 839 840 841 842 843 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
845 846 847 848 849 850 851 852 853 854 | |
ConstantinopleFix
¶
Bases: Constantinople
Constantinople Fix fork.
Source code in src/ethereum_test_forks/forks/forks.py
857 858 859 860 | |
EOFv1
¶
Bases: Prague
EOF fork.
Source code in src/ethereum_test_forks/forks/forks.py
1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 | |
evm_code_types(*, block_number=0, timestamp=0)
classmethod
¶
EOF V1 is supported starting from Osaka.
Source code in src/ethereum_test_forks/forks/forks.py
1995 1996 1997 1998 1999 2000 2001 | |
call_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
EOF V1 introduces EXTCALL, EXTSTATICCALL, EXTDELEGATECALL.
Source code in src/ethereum_test_forks/forks/forks.py
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 | |
is_deployed()
classmethod
¶
Flag that the fork has not been deployed to mainnet; it is under active development.
Source code in src/ethereum_test_forks/forks/forks.py
2014 2015 2016 2017 2018 2019 2020 | |
Frontier
¶
Bases: BaseFork
Frontier fork.
Source code in src/ethereum_test_forks/forks/forks.py
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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 | |
transition_tool_name(*, block_number=0, timestamp=0)
classmethod
¶
Return 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
35 36 37 38 39 40 41 42 43 | |
solc_name()
classmethod
¶
Return fork name as it's meant to be passed to the solc compiler.
Source code in src/ethereum_test_forks/forks/forks.py
45 46 47 48 49 50 | |
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
52 53 54 55 | |
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
57 58 59 60 | |
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
62 63 64 65 | |
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
67 68 69 70 | |
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
72 73 74 75 | |
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
77 78 79 80 | |
gas_costs(*, block_number=0, timestamp=0)
classmethod
¶
Return dataclass with the defined gas costs constants for genesis.
Source code in src/ethereum_test_forks/forks/forks.py
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 | |
memory_expansion_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return callable that calculates the gas cost of memory expansion for the fork.
Source code in src/ethereum_test_forks/forks/forks.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | |
calldata_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return callable that calculates the transaction gas cost for its calldata depending on its contents.
Source code in src/ethereum_test_forks/forks/forks.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | |
base_fee_per_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the base fee per gas at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
176 177 178 179 180 181 182 183 | |
base_fee_change_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the gas that needs to be used to change the base fee.
Source code in src/ethereum_test_forks/forks/forks.py
185 186 187 188 189 190 191 192 193 | |
base_fee_max_change_denominator(*, block_number=0, timestamp=0)
classmethod
¶
Return the base fee max change denominator at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
195 196 197 198 199 200 | |
base_fee_elasticity_multiplier(*, block_number=0, timestamp=0)
classmethod
¶
Return the base fee elasticity multiplier at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
202 203 204 205 206 207 | |
transaction_data_floor_cost_calculator(*, block_number=0, timestamp=0)
classmethod
¶
At frontier, the transaction data floor cost is a constant zero.
Source code in src/ethereum_test_forks/forks/forks.py
209 210 211 212 213 214 215 216 217 218 219 | |
transaction_intrinsic_cost_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return callable that calculates the intrinsic gas cost of a transaction for the fork.
Source code in src/ethereum_test_forks/forks/forks.py
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 | |
blob_gas_price_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the blob gas price at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
260 261 262 263 264 265 266 267 | |
excess_blob_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the excess blob gas for a block at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
269 270 271 272 273 274 275 276 277 | |
min_base_fee_per_blob_gas(*, block_number=0, timestamp=0)
classmethod
¶
Return the amount of blob gas used per blob at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
279 280 281 282 | |
blob_base_fee_update_fraction(*, block_number=0, timestamp=0)
classmethod
¶
Return the blob base fee update fraction at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
284 285 286 287 288 289 | |
blob_gas_per_blob(*, block_number=0, timestamp=0)
classmethod
¶
Return the amount of blob gas used per blob at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
291 292 293 294 | |
supports_blobs(*, block_number=0, timestamp=0)
classmethod
¶
Blobs are not supported at Frontier.
Source code in src/ethereum_test_forks/forks/forks.py
296 297 298 299 | |
target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Return the target number of blobs per block at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
301 302 303 304 | |
max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Return the max number of blobs per block at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
306 307 308 309 | |
blob_reserve_price_active(*, block_number=0, timestamp=0)
classmethod
¶
Return whether the fork uses a reserve price mechanism for blobs or not.
Source code in src/ethereum_test_forks/forks/forks.py
311 312 313 314 315 316 317 | |
blob_base_cost(*, block_number=0, timestamp=0)
classmethod
¶
Return the base cost of a blob at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
319 320 321 322 | |
full_blob_tx_wrapper_version(*, block_number=0, timestamp=0)
classmethod
¶
Return the version of the full blob transaction wrapper.
Source code in src/ethereum_test_forks/forks/forks.py
324 325 326 327 328 329 330 331 | |
max_blobs_per_tx(*, block_number=0, timestamp=0)
classmethod
¶
Return the max number of blobs per tx at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
333 334 335 336 | |
blob_schedule(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, no blob schedule is used.
Source code in src/ethereum_test_forks/forks/forks.py
338 339 340 341 | |
header_requests_required(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain beacon chain requests.
Source code in src/ethereum_test_forks/forks/forks.py
343 344 345 346 | |
header_bal_hash_required(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, header must not contain block access list hash.
Source code in src/ethereum_test_forks/forks/forks.py
348 349 350 351 | |
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
353 354 355 356 357 358 | |
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
360 361 362 363 | |
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
365 366 367 368 | |
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
370 371 372 373 | |
engine_new_payload_requests(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, payloads do not have requests.
Source code in src/ethereum_test_forks/forks/forks.py
375 376 377 378 | |
engine_execution_payload_block_access_list(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, payloads do not have block access list.
Source code in src/ethereum_test_forks/forks/forks.py
380 381 382 383 384 385 | |
engine_new_payload_target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, payloads do not have target blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
387 388 389 390 391 392 393 394 395 | |
engine_payload_attribute_target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, payload attributes do not include the target blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
397 398 399 400 401 402 403 404 405 | |
engine_payload_attribute_max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, payload attributes do not include the max blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
407 408 409 410 411 412 413 414 | |
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
416 417 418 419 420 421 422 423 | |
engine_get_payload_version(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, payloads cannot be retrieved through the engine API.
Source code in src/ethereum_test_forks/forks/forks.py
425 426 427 428 429 430 | |
engine_get_blobs_version(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, blobs cannot be retrieved through the engine API.
Source code in src/ethereum_test_forks/forks/forks.py
432 433 434 435 436 437 | |
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
439 440 441 442 443 444 445 | |
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
447 448 449 450 | |
contract_creating_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
452 453 454 455 | |
transaction_gas_limit_cap(*, block_number=0, timestamp=0)
classmethod
¶
At Genesis, no transaction gas limit cap is imposed.
Source code in src/ethereum_test_forks/forks/forks.py
457 458 459 460 | |
block_rlp_size_limit(*, block_number=0, timestamp=0)
classmethod
¶
At Genesis, no RLP block size limit is imposed.
Source code in src/ethereum_test_forks/forks/forks.py
462 463 464 465 | |
precompiles(*, block_number=0, timestamp=0)
classmethod
¶
At Genesis, no pre-compiles are present.
Source code in src/ethereum_test_forks/forks/forks.py
467 468 469 470 | |
system_contracts(*, block_number=0, timestamp=0)
classmethod
¶
At Genesis, no system-contracts are present.
Source code in src/ethereum_test_forks/forks/forks.py
472 473 474 475 | |
evm_code_types(*, block_number=0, timestamp=0)
classmethod
¶
At Genesis, only legacy EVM code is supported.
Source code in src/ethereum_test_forks/forks/forks.py
477 478 479 480 | |
max_code_size(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, there is no upper bound for code size (bounded by block gas limit).
However, the default is set to the limit of EIP-170 (Spurious Dragon)
Source code in src/ethereum_test_forks/forks/forks.py
482 483 484 485 486 487 488 489 490 | |
max_stack_height(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, the maximum stack height is 1024.
Source code in src/ethereum_test_forks/forks/forks.py
492 493 494 495 | |
max_initcode_size(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, there is no upper bound for initcode size.
Source code in src/ethereum_test_forks/forks/forks.py
497 498 499 500 501 | |
call_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of call opcodes supported by the fork.
Source code in src/ethereum_test_forks/forks/forks.py
503 504 505 506 507 508 509 510 511 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 | |
create_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
At Genesis, only CREATE opcode is supported.
Source code in src/ethereum_test_forks/forks/forks.py
648 649 650 651 652 653 654 655 | |
max_refund_quotient(*, block_number=0, timestamp=0)
classmethod
¶
Return the max refund quotient at Genesis.
Source code in src/ethereum_test_forks/forks/forks.py
657 658 659 660 | |
max_request_type(*, block_number=0, timestamp=0)
classmethod
¶
At genesis, no request type is supported, signaled by -1.
Source code in src/ethereum_test_forks/forks/forks.py
662 663 664 665 | |
pre_allocation(*, block_number=0, timestamp=0)
classmethod
¶
Return 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
667 668 669 670 671 672 673 674 | |
pre_allocation_blockchain(*, block_number=0, timestamp=0)
classmethod
¶
Return 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
676 677 678 679 680 681 682 683 | |
GrayGlacier
¶
Bases: ArrowGlacier
Gray Glacier fork.
Source code in src/ethereum_test_forks/forks/forks.py
1128 1129 1130 1131 | |
Homestead
¶
Bases: Frontier
Homestead fork.
Source code in src/ethereum_test_forks/forks/forks.py
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 | |
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
689 690 691 692 693 694 695 696 697 698 699 700 | |
call_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
At Homestead, DELEGATECALL opcode was introduced.
Source code in src/ethereum_test_forks/forks/forks.py
702 703 704 705 706 707 708 709 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return the list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
711 712 713 714 | |
transaction_intrinsic_cost_calculator(*, block_number=0, timestamp=0)
classmethod
¶
At Homestead, the transaction intrinsic cost needs to take contract creation into account.
Source code in src/ethereum_test_forks/forks/forks.py
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 | |
Istanbul
¶
Bases: ConstantinopleFix
Istanbul fork.
Source code in src/ethereum_test_forks/forks/forks.py
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 | |
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
866 867 868 869 870 871 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
873 874 875 876 | |
gas_costs(*, block_number=0, timestamp=0)
classmethod
¶
On Istanbul, the non-zero transaction data byte cost is reduced to 16 due to EIP-2028.
Source code in src/ethereum_test_forks/forks/forks.py
878 879 880 881 882 883 884 885 886 887 | |
London
¶
Bases: Berlin
London fork.
Source code in src/ethereum_test_forks/forks/forks.py
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 | |
header_base_fee_required(*, block_number=0, timestamp=0)
classmethod
¶
Header must contain the Base Fee starting from London.
Source code in src/ethereum_test_forks/forks/forks.py
953 954 955 956 | |
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
958 959 960 961 | |
contract_creating_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
963 964 965 966 967 968 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
970 971 972 973 | |
max_refund_quotient(*, block_number=0, timestamp=0)
classmethod
¶
Return the max refund quotient at London.
Source code in src/ethereum_test_forks/forks/forks.py
975 976 977 978 | |
base_fee_max_change_denominator(*, block_number=0, timestamp=0)
classmethod
¶
Return the base fee max change denominator at London.
Source code in src/ethereum_test_forks/forks/forks.py
980 981 982 983 | |
base_fee_elasticity_multiplier(*, block_number=0, timestamp=0)
classmethod
¶
Return the base fee elasticity multiplier at London.
Source code in src/ethereum_test_forks/forks/forks.py
985 986 987 988 | |
base_fee_per_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the base fee per gas at London.
EIP-1559 block validation pseudo code:
if INITIAL_FORK_BLOCK_NUMBER == block.number: expected_base_fee_per_gas = INITIAL_BASE_FEE elif parent_gas_used == parent_gas_target: expected_base_fee_per_gas = parent_base_fee_per_gas elif parent_gas_used > parent_gas_target: gas_used_delta = parent_gas_used - parent_gas_target base_fee_per_gas_delta = max( parent_base_fee_per_gas * gas_used_delta // parent_gas_target // BASE_FEE_MAX_CHANGE_DENOMINATOR, 1, ) expected_base_fee_per_gas = parent_base_fee_per_gas + base_fee_per_gas_delta else: gas_used_delta = parent_gas_target - parent_gas_used base_fee_per_gas_delta = ( parent_base_fee_per_gas * gas_used_delta // parent_gas_target // BASE_FEE_MAX_CHANGE_DENOMINATOR ) expected_base_fee_per_gas = parent_base_fee_per_gas - base_fee_per_gas_delta
Source code in src/ethereum_test_forks/forks/forks.py
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 | |
base_fee_change_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the gas that needs to be used to change the base fee.
Source code in src/ethereum_test_forks/forks/forks.py
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 | |
MuirGlacier
¶
Bases: Istanbul
Muir Glacier fork.
Source code in src/ethereum_test_forks/forks/forks.py
891 892 893 894 | |
Osaka
¶
Bases: Prague
Osaka fork.
Source code in src/ethereum_test_forks/forks/forks.py
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 | |
engine_get_payload_version(*, block_number=0, timestamp=0)
classmethod
¶
From Osaka, get payload calls must use version 5.
Source code in src/ethereum_test_forks/forks/forks.py
1736 1737 1738 1739 1740 1741 | |
engine_get_blobs_version(*, block_number=0, timestamp=0)
classmethod
¶
At Osaka, the engine get blobs version is 2.
Source code in src/ethereum_test_forks/forks/forks.py
1743 1744 1745 1746 1747 1748 | |
full_blob_tx_wrapper_version(*, block_number=0, timestamp=0)
classmethod
¶
At Osaka, the full blob transaction wrapper version is defined.
Source code in src/ethereum_test_forks/forks/forks.py
1750 1751 1752 1753 | |
transaction_gas_limit_cap(*, block_number=0, timestamp=0)
classmethod
¶
At Osaka, transaction gas limit is capped at 16 million (2**24).
Source code in src/ethereum_test_forks/forks/forks.py
1755 1756 1757 1758 | |
block_rlp_size_limit(*, block_number=0, timestamp=0)
classmethod
¶
From Osaka, block RLP size is limited as specified in EIP-7934.
Source code in src/ethereum_test_forks/forks/forks.py
1760 1761 1762 1763 1764 1765 | |
is_deployed()
classmethod
¶
Flag that the fork has not been deployed to mainnet; it is under active development.
Source code in src/ethereum_test_forks/forks/forks.py
1767 1768 1769 1770 1771 1772 1773 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
1775 1776 1777 1778 1779 1780 | |
precompiles(*, block_number=0, timestamp=0)
classmethod
¶
At Osaka, pre-compile for p256verify operation is added.
P256VERIFY = 0x100
Source code in src/ethereum_test_forks/forks/forks.py
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 | |
excess_blob_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the excess blob gas for a block.
Source code in src/ethereum_test_forks/forks/forks.py
1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 | |
max_blobs_per_tx(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in Osaka, have a static max of 6 blobs per tx. Differs from the max per block.
Source code in src/ethereum_test_forks/forks/forks.py
1849 1850 1851 1852 1853 1854 1855 | |
blob_reserve_price_active(*, block_number=0, timestamp=0)
classmethod
¶
Blob reserve price is supported in Osaka.
Source code in src/ethereum_test_forks/forks/forks.py
1857 1858 1859 1860 | |
blob_base_cost(*, block_number=0, timestamp=0)
classmethod
¶
Return the base cost of a blob at a given fork.
Source code in src/ethereum_test_forks/forks/forks.py
1862 1863 1864 1865 | |
Paris
¶
Bases: London
Paris (Merge) fork.
Source code in src/ethereum_test_forks/forks/forks.py
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 | |
header_prev_randao_required(*, block_number=0, timestamp=0)
classmethod
¶
Prev Randao is required starting from Paris.
Source code in src/ethereum_test_forks/forks/forks.py
1140 1141 1142 1143 | |
header_zero_difficulty_required(*, block_number=0, timestamp=0)
classmethod
¶
Zero difficulty is required starting from Paris.
Source code in src/ethereum_test_forks/forks/forks.py
1145 1146 1147 1148 | |
get_reward(*, block_number=0, timestamp=0)
classmethod
¶
Paris updates the reward to 0.
Source code in src/ethereum_test_forks/forks/forks.py
1150 1151 1152 1153 | |
engine_new_payload_version(*, block_number=0, timestamp=0)
classmethod
¶
From Paris, payloads can be sent through the engine API.
Source code in src/ethereum_test_forks/forks/forks.py
1155 1156 1157 1158 1159 1160 | |
Prague
¶
Bases: Cancun
Prague fork.
Source code in src/ethereum_test_forks/forks/forks.py
1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 | |
precompiles(*, block_number=0, timestamp=0)
classmethod
¶
At Prague, pre-compile for BLS operations are added.
BLS12_G1ADD = 0x0B BLS12_G1MSM = 0x0C BLS12_G2ADD = 0x0D BLS12_G2MSM = 0x0E BLS12_PAIRING_CHECK = 0x0F BLS12_MAP_FP_TO_G1 = 0x10 BLS12_MAP_FP2_TO_G2 = 0x11
Source code in src/ethereum_test_forks/forks/forks.py
1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 | |
tx_types(*, block_number=0, timestamp=0)
classmethod
¶
At Prague, set-code type transactions are introduced.
Source code in src/ethereum_test_forks/forks/forks.py
1481 1482 1483 1484 | |
gas_costs(*, block_number=0, timestamp=0)
classmethod
¶
On Prague, the standard token cost and the floor token costs are introduced due to EIP-7623.
Source code in src/ethereum_test_forks/forks/forks.py
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 | |
system_contracts(*, block_number=0, timestamp=0)
classmethod
¶
Prague introduces the system contracts for EIP-6110, EIP-7002, EIP-7251 and EIP-2935.
Source code in src/ethereum_test_forks/forks/forks.py
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 | |
max_request_type(*, block_number=0, timestamp=0)
classmethod
¶
At Prague, three request types are introduced, hence the max request type is 2.
Source code in src/ethereum_test_forks/forks/forks.py
1525 1526 1527 1528 1529 1530 1531 | |
calldata_gas_calculator(*, block_number=0, timestamp=0)
classmethod
¶
Return a callable that calculates the transaction gas cost for its calldata depending on its contents.
Source code in src/ethereum_test_forks/forks/forks.py
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 | |
transaction_data_floor_cost_calculator(*, block_number=0, timestamp=0)
classmethod
¶
On Prague, due to EIP-7623, the transaction data floor cost is introduced.
Source code in src/ethereum_test_forks/forks/forks.py
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 | |
transaction_intrinsic_cost_calculator(*, block_number=0, timestamp=0)
classmethod
¶
At Prague, the transaction intrinsic cost needs to take the authorizations into account.
Source code in src/ethereum_test_forks/forks/forks.py
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 | |
blob_base_fee_update_fraction(*, block_number=0, timestamp=0)
classmethod
¶
Return the blob base fee update fraction for Prague.
Source code in src/ethereum_test_forks/forks/forks.py
1617 1618 1619 1620 | |
target_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in Prague, have a static target of 6 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1622 1623 1624 1625 | |
max_blobs_per_block(*, block_number=0, timestamp=0)
classmethod
¶
Blobs in Prague, have a static max of 9 blobs per block.
Source code in src/ethereum_test_forks/forks/forks.py
1627 1628 1629 1630 | |
pre_allocation_blockchain(*, block_number=0, timestamp=0)
classmethod
¶
Prague requires pre-allocation of the beacon chain deposit contract for EIP-6110, the exits contract for EIP-7002, and the history storage contract for EIP-2935.
Source code in src/ethereum_test_forks/forks/forks.py
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 | |
header_requests_required(*, block_number=0, timestamp=0)
classmethod
¶
Prague requires that the execution layer header contains the beacon chain requests hash.
Source code in src/ethereum_test_forks/forks/forks.py
1695 1696 1697 1698 1699 1700 1701 | |
engine_new_payload_requests(*, block_number=0, timestamp=0)
classmethod
¶
From Prague, new payloads include the requests hash as a parameter.
Source code in src/ethereum_test_forks/forks/forks.py
1703 1704 1705 1706 1707 1708 | |
engine_new_payload_version(*, block_number=0, timestamp=0)
classmethod
¶
From Prague, new payload calls must use version 4.
Source code in src/ethereum_test_forks/forks/forks.py
1710 1711 1712 1713 1714 1715 | |
engine_forkchoice_updated_version(*, block_number=0, timestamp=0)
classmethod
¶
At Prague, version number of NewPayload and ForkchoiceUpdated diverge.
Source code in src/ethereum_test_forks/forks/forks.py
1717 1718 1719 1720 1721 1722 1723 1724 | |
Shanghai
¶
Bases: Paris
Shanghai fork.
Source code in src/ethereum_test_forks/forks/forks.py
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 | |
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
1166 1167 1168 1169 | |
engine_new_payload_version(*, block_number=0, timestamp=0)
classmethod
¶
From Shanghai, new payload calls must use version 2.
Source code in src/ethereum_test_forks/forks/forks.py
1171 1172 1173 1174 1175 1176 | |
max_initcode_size(*, block_number=0, timestamp=0)
classmethod
¶
From Shanghai, the initcode size is now limited. See EIP-3860.
Source code in src/ethereum_test_forks/forks/forks.py
1178 1179 1180 1181 | |
valid_opcodes(*, block_number=0, timestamp=0)
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in src/ethereum_test_forks/forks/forks.py
1183 1184 1185 1186 | |
BerlinToLondonAt5
¶
Bases: Berlin
Berlin to London transition at Block 5.
Source code in src/ethereum_test_forks/forks/transition.py
8 9 10 11 12 | |
BPO1ToBPO2AtTime15k
¶
Bases: BPO1
BPO1 to BPO2 transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
50 51 52 53 54 | |
BPO2ToBPO3AtTime15k
¶
Bases: BPO2
BPO2 to BPO3 transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
57 58 59 60 61 | |
BPO3ToBPO4AtTime15k
¶
Bases: BPO3
BPO3 to BPO4 transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
64 65 66 67 68 | |
CancunToPragueAtTime15k
¶
Bases: Cancun
Cancun to Prague transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
29 30 31 32 33 | |
OsakaToBPO1AtTime15k
¶
Bases: Osaka
Osaka to BPO1 transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
43 44 45 46 47 | |
ParisToShanghaiAtTime15k
¶
Bases: Paris
Paris to Shanghai transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
15 16 17 18 19 | |
PragueToOsakaAtTime15k
¶
Bases: Prague
Prague to Osaka transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
36 37 38 39 40 | |
ShanghaiToCancunAtTime15k
¶
Bases: Shanghai
Shanghai to Cancun transition at Timestamp 15k.
Source code in src/ethereum_test_forks/forks/transition.py
22 23 24 25 26 | |
GasCosts
dataclass
¶
Class that contains the gas cost constants for any fork.
Source code in src/ethereum_test_forks/gas_costs.py
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 | |
ForkRangeDescriptor
¶
Bases: BaseModel
Fork descriptor parsed from string normally contained in ethereum/tests fillers.
Source code in src/ethereum_test_forks/helpers.py
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 | |
fork_in_range(fork)
¶
Return whether the given fork is within range.
Source code in src/ethereum_test_forks/helpers.py
316 317 318 319 320 321 322 | |
validate_fork_range_descriptor(v, handler)
classmethod
¶
Validate the fork range descriptor from a string.
Examples:
-
">=Osaka" validates to {greater_equal=Osaka, less_than=None}
-
">=Prague
Source code in src/ethereum_test_forks/helpers.py
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 | |
InvalidForkError
¶
Bases: Exception
Invalid fork error raised when the fork specified is not found or incompatible.
Source code in src/ethereum_test_forks/helpers.py
22 23 24 25 26 27 28 29 30 | |
__init__(message)
¶
Initialize the InvalidForkError exception.
Source code in src/ethereum_test_forks/helpers.py
28 29 30 | |
forks_from(fork, deployed_only=True)
¶
Return specified fork and all forks after it.
Source code in src/ethereum_test_forks/helpers.py
256 257 258 259 260 261 262 | |
forks_from_until(fork_from, fork_until)
¶
Return specified fork and all forks after it until and including the second specified fork.
Source code in src/ethereum_test_forks/helpers.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
get_closest_fork(fork)
¶
Return None if BaseFork is passed, otherwise return the fork itself.
Source code in src/ethereum_test_forks/helpers.py
91 92 93 94 95 | |
get_deployed_forks()
¶
Return 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
66 67 68 69 70 71 | |
get_development_forks()
¶
Return 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
74 75 76 77 78 79 80 | |
get_fork_by_name(fork_name)
¶
Get a fork by name.
Source code in src/ethereum_test_forks/helpers.py
298 299 300 301 302 303 | |
get_forks()
¶
Return list of all the fork classes implemented by ethereum_test_forks
ordered chronologically by deployment.
Source code in src/ethereum_test_forks/helpers.py
58 59 60 61 62 63 | |
get_forks_with_no_descendants(forks)
¶
Get forks with no descendants in the inheritance hierarchy.
Source code in src/ethereum_test_forks/helpers.py
148 149 150 151 152 153 154 155 156 157 158 159 | |
get_forks_with_no_parents(forks)
¶
Get forks with no parents in the inheritance hierarchy.
Source code in src/ethereum_test_forks/helpers.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 | |
get_from_until_fork_set(forks, forks_from, forks_until)
¶
Get fork range from forks_from to forks_until.
Source code in src/ethereum_test_forks/helpers.py
117 118 119 120 121 122 123 124 125 126 127 128 129 | |
get_last_descendants(forks, forks_from)
¶
Get last descendant of a class in the inheritance hierarchy.
Source code in src/ethereum_test_forks/helpers.py
162 163 164 165 166 167 168 169 170 171 172 | |
get_relative_fork_markers(fork_identifier, strict_mode=True)
¶
Return a list of marker names for a given fork.
For a base fork (e.g. Shanghai), return [ Shanghai ]. For a transition
fork (e.g. ShanghaiToCancunAtTime15k which transitions to Cancun),
return [ ShanghaiToCancunAtTime15k, Cancun ].
If strict_mode is set to True, raise an InvalidForkError if the fork
is not found, otherwise, simply return the provided (str) fork_identifier
(this is required to run consume with forks that are unknown to EEST).
Source code in src/ethereum_test_forks/helpers.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 | |
get_selected_fork_set(*, single_fork, forks_from, forks_until, transition_forks=True)
¶
Process sets derived from --fork, --until and --from to return an
unified fork set.
Source code in src/ethereum_test_forks/helpers.py
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 | |
get_transition_fork_predecessor(transition_fork)
¶
Return the fork from which the transition fork transitions.
Source code in src/ethereum_test_forks/helpers.py
103 104 105 106 107 | |
get_transition_fork_successor(transition_fork)
¶
Return the fork to which the transition fork transitions.
Source code in src/ethereum_test_forks/helpers.py
110 111 112 113 114 | |
get_transition_forks()
¶
Return all the transition forks.
Source code in src/ethereum_test_forks/helpers.py
98 99 100 | |
transition_fork_from_to(fork_from, fork_to)
¶
Return transition fork that transitions to and from the specified forks.
Source code in src/ethereum_test_forks/helpers.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | |
transition_fork_to(fork_to)
¶
Return transition fork that transitions to the specified fork.
Source code in src/ethereum_test_forks/helpers.py
220 221 222 223 224 225 226 227 228 229 | |