Ethereum Test Forks package¶
Ethereum test fork definitions.
BPO1
¶
Bases: Osaka
Mainnet BPO1 fork - Blob Parameter Only fork 1.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 | |
BPO2
¶
Bases: BPO1
Mainnet BPO2 fork - Blob Parameter Only fork 2.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 | |
BPO3
¶
Bases: BPO2
Pseudo BPO3 fork - Blob Parameter Only fork 3. For testing purposes only.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 | |
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 packages/testing/src/execution_testing/forks/forks/forks.py
1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 | |
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 packages/testing/src/execution_testing/forks/forks/forks.py
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 | |
Amsterdam
¶
Bases: AmsterdamEIPs, BPO2
Amsterdam fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 | |
ArrowGlacier
¶
Bases: London
Arrow Glacier fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1394 1395 1396 1397 1398 1399 1400 1401 | |
Berlin
¶
Bases: EIP2930, Istanbul
Berlin fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1373 1374 1375 1376 1377 1378 1379 | |
Byzantium
¶
Bases: EIP649, EIP214, EIP211, EIP140, EIP198, EIP196, EIP197, SpuriousDragon
Byzantium fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 | |
Cancun
¶
Bases: EIP5656, EIP1153, EIP4788, EIP4844, EIP7516, EIP6780, Shanghai
Cancun fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 | |
Constantinople
¶
Bases: EIP1234, EIP1052, EIP1014, EIP145, Byzantium
Constantinople fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 | |
ConstantinopleFix
¶
Bases: Constantinople
Constantinople Fix fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1339 1340 1341 1342 1343 1344 1345 1346 | |
Frontier
¶
Bases: BaseFork
Frontier fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
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 684 685 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 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 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 823 824 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 855 856 857 858 859 860 861 862 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 888 889 890 891 892 893 894 895 896 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 948 949 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 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 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 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 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 | |
transition_tool_name()
classmethod
¶
Return fork name as it's meant to be passed to the transition tool for execution.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
48 49 50 51 52 53 54 55 56 | |
solc_name()
classmethod
¶
Return fork name as it's meant to be passed to the solc compiler.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
58 59 60 61 62 63 | |
header_base_fee_required()
classmethod
¶
At genesis, header must not contain base fee.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
65 66 67 68 | |
header_prev_randao_required()
classmethod
¶
At genesis, header must not contain Prev Randao value.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
70 71 72 73 | |
header_zero_difficulty_required()
classmethod
¶
At genesis, header must not have difficulty zero.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
75 76 77 78 | |
header_withdrawals_required()
classmethod
¶
At genesis, header must not contain withdrawals.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
80 81 82 83 | |
header_excess_blob_gas_required()
classmethod
¶
At genesis, header must not contain excess blob gas.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
85 86 87 88 | |
header_blob_gas_used_required()
classmethod
¶
At genesis, header must not contain blob gas used.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
90 91 92 93 | |
gas_costs()
classmethod
¶
Return dataclass with the defined gas costs constants for genesis.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
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 | |
opcode_gas_map()
classmethod
¶
Return a mapping of opcodes to their gas costs.
Each entry is either: - Constants (int): Direct gas cost values from gas_costs() - Callables: Functions that take the opcode instance with metadata and return gas cost
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
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 | |
opcode_gas_calculator()
classmethod
¶
Return callable that calculates the gas cost of a single opcode.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 | |
opcode_refund_map()
classmethod
¶
Return a mapping of opcodes to their gas refunds.
Each entry is either: - Constants (int): Direct gas refund values - Callables: Functions that take the opcode instance with metadata and return gas refund
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 | |
opcode_refund_calculator()
classmethod
¶
Return callable that calculates the gas refund of a single opcode.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 | |
memory_expansion_gas_calculator()
classmethod
¶
Return callable that calculates the gas cost of memory expansion for the fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | |
calldata_gas_calculator()
classmethod
¶
Return callable that calculates the transaction gas cost for its calldata depending on its contents.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 | |
base_fee_per_gas_calculator()
classmethod
¶
Return a callable that calculates the base fee per gas at a given fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
775 776 777 778 779 780 781 782 | |
base_fee_change_calculator()
classmethod
¶
Return a callable that calculates the gas that needs to be used to change the base fee.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
784 785 786 787 788 789 790 791 792 | |
base_fee_max_change_denominator()
classmethod
¶
Return the base fee max change denominator at a given fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
794 795 796 797 798 799 | |
base_fee_elasticity_multiplier()
classmethod
¶
Return the base fee elasticity multiplier at a given fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
801 802 803 804 805 806 | |
transaction_data_floor_cost_calculator()
classmethod
¶
At frontier, the transaction data floor cost is a constant zero.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
808 809 810 811 812 813 814 815 816 817 818 | |
transaction_intrinsic_cost_calculator()
classmethod
¶
Return callable that calculates the intrinsic gas cost of a transaction for the fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
820 821 822 823 824 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 855 856 857 858 | |
blob_gas_price_calculator()
classmethod
¶
Return a callable that calculates the blob gas price at a given fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
860 861 862 863 864 865 866 867 | |
excess_blob_gas_calculator()
classmethod
¶
Return a callable that calculates the excess blob gas for a block at a given fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
869 870 871 872 873 874 875 876 877 | |
supports_blobs()
classmethod
¶
Blobs are not supported at Frontier.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
879 880 881 882 | |
blob_reserve_price_active()
classmethod
¶
Return whether the fork uses a reserve price mechanism for blobs or not.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
884 885 886 887 888 889 890 891 892 | |
full_blob_tx_wrapper_version()
classmethod
¶
Return the version of the full blob transaction wrapper.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
894 895 896 897 898 899 900 | |
blob_schedule()
classmethod
¶
At genesis, no blob schedule is used.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
902 903 904 905 | |
header_requests_required()
classmethod
¶
At genesis, header must not contain beacon chain requests.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
907 908 909 910 | |
header_bal_hash_required()
classmethod
¶
At genesis, header must not contain block access list hash.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
912 913 914 915 | |
empty_block_bal_item_count()
classmethod
¶
Pre-Amsterdam forks have no block access list.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
917 918 919 920 | |
header_beacon_root_required()
classmethod
¶
At genesis, header must not contain parent beacon block root.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
922 923 924 925 | |
engine_new_payload_blob_hashes()
classmethod
¶
At genesis, payloads do not have blob hashes.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
927 928 929 930 | |
engine_new_payload_beacon_root()
classmethod
¶
At genesis, payloads do not have a parent beacon block root.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
932 933 934 935 | |
engine_new_payload_requests()
classmethod
¶
At genesis, payloads do not have requests.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
937 938 939 940 | |
engine_execution_payload_block_access_list()
classmethod
¶
At genesis, payloads do not have block access list.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
942 943 944 945 | |
engine_new_payload_target_blobs_per_block()
classmethod
¶
At genesis, payloads do not have target blobs per block.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
947 948 949 950 | |
engine_payload_attribute_target_blobs_per_block()
classmethod
¶
At genesis, payload attributes do not include the target blobs per block.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
952 953 954 955 956 957 958 | |
engine_payload_attribute_max_blobs_per_block()
classmethod
¶
At genesis, payload attributes do not include the max blobs per block.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
960 961 962 963 964 965 | |
get_reward()
classmethod
¶
At Genesis the expected reward amount in wei is 5_000_000_000_000_000_000.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
967 968 969 970 971 972 973 | |
supports_protected_txs()
classmethod
¶
At Genesis, fork has no support for EIP-155 protected txs.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
975 976 977 978 | |
tx_types()
classmethod
¶
At Genesis, only legacy transactions are allowed.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
980 981 982 983 | |
contract_creating_tx_types()
classmethod
¶
At Genesis, only legacy transactions are allowed.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
985 986 987 988 | |
transaction_gas_limit_cap()
classmethod
¶
At Genesis, no transaction gas limit cap is imposed.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
990 991 992 993 | |
block_rlp_size_limit()
classmethod
¶
At Genesis, no RLP block size limit is imposed.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
995 996 997 998 | |
precompiles()
classmethod
¶
At Genesis, EC-recover, SHA256, RIPEMD160, and Identity precompiles are introduced.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 | |
system_contracts()
classmethod
¶
At Genesis, no system contracts are present.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1013 1014 1015 1016 | |
deterministic_factory_predeploy_address()
classmethod
¶
At Genesis, no deterministic factory predeploy is present.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1018 1019 1020 1021 | |
max_code_size()
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 packages/testing/src/execution_testing/forks/forks/forks.py
1023 1024 1025 1026 1027 1028 1029 1030 1031 | |
max_stack_height()
classmethod
¶
At genesis, the maximum stack height is 1024.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1033 1034 1035 1036 | |
max_initcode_size()
classmethod
¶
At genesis, there is no upper bound for initcode size.
However, the default is set to the limit of EIP-3860 (Shanghai).
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1038 1039 1040 1041 1042 1043 1044 1045 | |
call_opcodes()
classmethod
¶
Return list of call opcodes supported by the fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1047 1048 1049 1050 | |
valid_opcodes()
classmethod
¶
Return list of Opcodes that are valid to work on this fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
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 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 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 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 | |
create_opcodes()
classmethod
¶
At Genesis, only CREATE opcode is supported.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1187 1188 1189 1190 | |
max_refund_quotient()
classmethod
¶
Return the max refund quotient at Genesis.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1192 1193 1194 1195 | |
max_request_type()
classmethod
¶
At genesis, no request type is supported, signaled by -1.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1197 1198 1199 1200 | |
pre_allocation()
classmethod
¶
Return whether the fork expects pre-allocation of accounts.
Frontier does not require pre-allocated accounts
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1202 1203 1204 1205 1206 1207 1208 1209 | |
pre_allocation_blockchain()
classmethod
¶
Return whether the fork expects pre-allocation of accounts.
Frontier does not require pre-allocated accounts
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1211 1212 1213 1214 1215 1216 1217 1218 | |
build_default_block_header(*, block_number=0, timestamp=0)
classmethod
¶
Build a default block header for this fork with the given attributes.
This method automatically detects which header fields are required by the fork and assigns appropriate default values. It introspects the FixtureHeader model to find fields with HeaderForkRequirement annotations and automatically includes them if the fork requires them.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
block_number
|
int
|
The block number |
0
|
timestamp
|
int
|
The block timestamp |
0
|
Returns:
| Type | Description |
|---|---|
FixtureHeader
|
FixtureHeader instance with default values applied based on fork |
FixtureHeader
|
requirements. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If the overrides don't have the correct type. |
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
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 | |
GrayGlacier
¶
Bases: ArrowGlacier
Gray Glacier fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1404 1405 1406 1407 1408 1409 1410 1411 | |
Homestead
¶
Bases: EIP7, EIP2, Frontier
Homestead fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1269 1270 1271 1272 1273 1274 1275 1276 | |
Istanbul
¶
Bases: EIP2028, EIP1884, EIP1344, EIP1108, EIP152, ConstantinopleFix
Istanbul fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 | |
London
¶
Bases: EIP3529, EIP3198, EIP1559, Berlin
London fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1382 1383 1384 1385 1386 1387 1388 1389 1390 | |
MuirGlacier
¶
Bases: Istanbul
Muir Glacier fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1363 1364 1365 1366 1367 1368 1369 1370 | |
Osaka
¶
Bases: EIP7939, EIP7934, EIP7825, EIP7918, EIP7594, EIP7951, Prague
Osaka fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 | |
Paris
¶
Bases: EIP3675, London
Paris (Merge) fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1414 1415 1416 1417 1418 1419 1420 1421 1422 | |
Prague
¶
Bases: EIP7691, EIP7685, EIP2935, EIP7251, EIP7002, EIP6110, EIP7623, EIP7702, EIP2537, Cancun
Prague fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 | |
Shanghai
¶
Bases: EIP3855, EIP3860, EIP4895, Paris
Shanghai fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 | |
SpuriousDragon
¶
Bases: EIP170, EIP161, EIP155, TangerineWhistle
SpuriousDragon fork.
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 | |
TangerineWhistle
¶
Bases: DAOFork
TangerineWhistle fork (EIP-150).
Source code in packages/testing/src/execution_testing/forks/forks/forks.py
1289 1290 1291 1292 1293 1294 1295 1296 | |
BerlinToLondonAt5
¶
Bases: TransitionBaseClass
Berlin to London transition at Block 5.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
21 22 23 24 25 | |
BPO1ToBPO2AtTime15k
¶
Bases: TransitionBaseClass
BPO1 to BPO2 transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
63 64 65 66 67 | |
BPO2ToAmsterdamAtTime15k
¶
Bases: TransitionBaseClass
BPO2 to Amsterdam transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
70 71 72 73 74 75 76 77 78 | |
BPO2ToBPO3AtTime15k
¶
Bases: TransitionBaseClass
BPO2 to BPO3 transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
81 82 83 84 85 | |
BPO3ToBPO4AtTime15k
¶
Bases: TransitionBaseClass
BPO3 to BPO4 transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
88 89 90 91 92 | |
CancunToPragueAtTime15k
¶
Bases: TransitionBaseClass
Cancun to Prague transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
42 43 44 45 46 | |
OsakaToBPO1AtTime15k
¶
Bases: TransitionBaseClass
Osaka to BPO1 transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
56 57 58 59 60 | |
ParisToShanghaiAtTime15k
¶
Bases: TransitionBaseClass
Paris to Shanghai transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
28 29 30 31 32 | |
PragueToOsakaAtTime15k
¶
Bases: TransitionBaseClass
Prague to Osaka transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
49 50 51 52 53 | |
ShanghaiToCancunAtTime15k
¶
Bases: TransitionBaseClass
Shanghai to Cancun transition at Timestamp 15k.
Source code in packages/testing/src/execution_testing/forks/forks/transition.py
35 36 37 38 39 | |
GasCosts
dataclass
¶
Class that contains the gas cost constants for any fork.
Source code in packages/testing/src/execution_testing/forks/gas_costs.py
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 | |
ForkRangeDescriptor
¶
Bases: BaseModel
Fork descriptor parsed from string normally contained in ethereum/tests fillers.
Source code in packages/testing/src/execution_testing/forks/helpers.py
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 | |
fork_in_range(fork)
¶
Return whether the given fork is within range.
Source code in packages/testing/src/execution_testing/forks/helpers.py
364 365 366 367 368 369 370 | |
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 packages/testing/src/execution_testing/forks/helpers.py
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 | |
InvalidForkError
¶
Bases: Exception
Invalid fork error raised when the fork specified is not found or incompatible.
Source code in packages/testing/src/execution_testing/forks/helpers.py
31 32 33 34 35 36 37 38 39 | |
__init__(message)
¶
Initialize the InvalidForkError exception.
Source code in packages/testing/src/execution_testing/forks/helpers.py
37 38 39 | |
forks_from(fork, deployed_only=True)
¶
Return specified fork and all forks after it.
Source code in packages/testing/src/execution_testing/forks/helpers.py
302 303 304 305 306 307 308 309 310 | |
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 packages/testing/src/execution_testing/forks/helpers.py
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
get_closest_fork(fork)
¶
Return None if BaseFork is passed, otherwise return the fork itself.
Source code in packages/testing/src/execution_testing/forks/helpers.py
108 109 110 111 112 | |
get_deployed_forks()
¶
Return all fork classes that have been deployed to mainnet.
Chronologically ordered by deployment. BPO (Blob Parameter Only) forks are excluded as they are handled separately.
Source code in packages/testing/src/execution_testing/forks/helpers.py
85 86 87 88 89 90 91 92 93 94 95 96 | |
get_development_forks()
¶
Return all fork classes not yet deployed and under development.
The list is ordered by their planned deployment date.
Source code in packages/testing/src/execution_testing/forks/helpers.py
99 100 101 102 103 104 105 | |
get_fork_by_name(fork_name)
¶
Get a fork by name.
Source code in packages/testing/src/execution_testing/forks/helpers.py
346 347 348 349 350 351 | |
get_forks()
¶
Return all fork classes implemented by execution_testing.forks.
Ordered chronologically by deployment.
Source code in packages/testing/src/execution_testing/forks/helpers.py
76 77 78 79 80 81 82 | |
get_forks_with_no_descendants(forks)
¶
Get forks with no descendants in the inheritance hierarchy.
Source code in packages/testing/src/execution_testing/forks/helpers.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
get_forks_with_no_parents(forks)
¶
Get forks with no parents in the inheritance hierarchy.
Source code in packages/testing/src/execution_testing/forks/helpers.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 | |
get_from_until_fork_set(forks, forks_from, forks_until)
¶
Get fork range from forks_from to forks_until.
Source code in packages/testing/src/execution_testing/forks/helpers.py
138 139 140 141 142 143 144 145 146 147 148 149 150 | |
get_last_descendants(forks, forks_from)
¶
Get last descendant of a class in the inheritance hierarchy.
Source code in packages/testing/src/execution_testing/forks/helpers.py
185 186 187 188 189 190 191 192 193 194 195 | |
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 packages/testing/src/execution_testing/forks/helpers.py
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 | |
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 packages/testing/src/execution_testing/forks/helpers.py
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 | |
get_transition_fork_predecessor(transition_fork)
¶
Return the fork from which the transition fork transitions.
Source code in packages/testing/src/execution_testing/forks/helpers.py
120 121 122 123 124 125 126 | |
get_transition_fork_successor(transition_fork)
¶
Return the fork to which the transition fork transitions.
Source code in packages/testing/src/execution_testing/forks/helpers.py
129 130 131 132 133 134 135 | |
get_transition_forks()
¶
Return all the transition forks.
Source code in packages/testing/src/execution_testing/forks/helpers.py
115 116 117 | |
transition_fork_from_to(fork_from, fork_to)
¶
Return transition fork that transitions to and from the specified forks.
Source code in packages/testing/src/execution_testing/forks/helpers.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | |
transition_fork_to(fork_to)
¶
Return transition fork that transitions to the specified fork.
Source code in packages/testing/src/execution_testing/forks/helpers.py
262 263 264 265 266 267 268 269 270 271 272 273 274 275 | |