diff --git a/tests/eof_suite/eest/.meta/assets/style.css b/tests/eof_suite/eest/.meta/assets/style.css new file mode 100644 index 0000000000..561524c691 --- /dev/null +++ b/tests/eof_suite/eest/.meta/assets/style.css @@ -0,0 +1,319 @@ +body { + font-family: Helvetica, Arial, sans-serif; + font-size: 12px; + /* do not increase min-width as some may use split screens */ + min-width: 800px; + color: #999; +} + +h1 { + font-size: 24px; + color: black; +} + +h2 { + font-size: 16px; + color: black; +} + +p { + color: black; +} + +a { + color: #999; +} + +table { + border-collapse: collapse; +} + +/****************************** + * SUMMARY INFORMATION + ******************************/ +#environment td { + padding: 5px; + border: 1px solid #e6e6e6; + vertical-align: top; +} +#environment tr:nth-child(odd) { + background-color: #f6f6f6; +} +#environment ul { + margin: 0; + padding: 0 20px; +} + +/****************************** + * TEST RESULT COLORS + ******************************/ +span.passed, +.passed .col-result { + color: green; +} + +span.skipped, +span.xfailed, +span.rerun, +.skipped .col-result, +.xfailed .col-result, +.rerun .col-result { + color: orange; +} + +span.error, +span.failed, +span.xpassed, +.error .col-result, +.failed .col-result, +.xpassed .col-result { + color: red; +} + +.col-links__extra { + margin-right: 3px; +} + +/****************************** + * RESULTS TABLE + * + * 1. Table Layout + * 2. Extra + * 3. Sorting items + * + ******************************/ +/*------------------ + * 1. Table Layout + *------------------*/ +#results-table { + border: 1px solid #e6e6e6; + color: #999; + font-size: 12px; + width: 100%; +} +#results-table th, +#results-table td { + padding: 5px; + border: 1px solid #e6e6e6; + text-align: left; +} +#results-table th { + font-weight: bold; +} + +/*------------------ + * 2. Extra + *------------------*/ +.logwrapper { + max-height: 230px; + overflow-y: scroll; + background-color: #e6e6e6; +} +.logwrapper.expanded { + max-height: none; +} +.logwrapper.expanded .logexpander:after { + content: "collapse [-]"; +} +.logwrapper .logexpander { + z-index: 1; + position: sticky; + top: 10px; + width: max-content; + border: 1px solid; + border-radius: 3px; + padding: 5px 7px; + margin: 10px 0 10px calc(100% - 80px); + cursor: pointer; + background-color: #e6e6e6; +} +.logwrapper .logexpander:after { + content: "expand [+]"; +} +.logwrapper .logexpander:hover { + color: #000; + border-color: #000; +} +.logwrapper .log { + min-height: 40px; + position: relative; + top: -50px; + height: calc(100% + 50px); + border: 1px solid #e6e6e6; + color: black; + display: block; + font-family: "Courier New", Courier, monospace; + padding: 5px; + padding-right: 80px; + white-space: pre-wrap; +} + +div.media { + border: 1px solid #e6e6e6; + float: right; + height: 240px; + margin: 0 5px; + overflow: hidden; + width: 320px; +} + +.media-container { + display: grid; + grid-template-columns: 25px auto 25px; + align-items: center; + flex: 1 1; + overflow: hidden; + height: 200px; +} + +.media-container--fullscreen { + grid-template-columns: 0px auto 0px; +} + +.media-container__nav--right, +.media-container__nav--left { + text-align: center; + cursor: pointer; +} + +.media-container__viewport { + cursor: pointer; + text-align: center; + height: inherit; +} +.media-container__viewport img, +.media-container__viewport video { + object-fit: cover; + width: 100%; + max-height: 100%; +} + +.media__name, +.media__counter { + display: flex; + flex-direction: row; + justify-content: space-around; + flex: 0 0 25px; + align-items: center; +} + +.collapsible td:not(.col-links) { + cursor: pointer; +} +.collapsible td:not(.col-links):hover::after { + color: #bbb; + font-style: italic; + cursor: pointer; +} + +.col-result { + width: 130px; +} +.col-result:hover::after { + content: " (hide details)"; +} + +.col-result.collapsed:hover::after { + content: " (show details)"; +} + +#environment-header h2:hover::after { + content: " (hide details)"; + color: #bbb; + font-style: italic; + cursor: pointer; + font-size: 12px; +} + +#environment-header.collapsed h2:hover::after { + content: " (show details)"; + color: #bbb; + font-style: italic; + cursor: pointer; + font-size: 12px; +} + +/*------------------ + * 3. Sorting items + *------------------*/ +.sortable { + cursor: pointer; +} +.sortable.desc:after { + content: " "; + position: relative; + left: 5px; + bottom: -12.5px; + border: 10px solid #4caf50; + border-bottom: 0; + border-left-color: transparent; + border-right-color: transparent; +} +.sortable.asc:after { + content: " "; + position: relative; + left: 5px; + bottom: 12.5px; + border: 10px solid #4caf50; + border-top: 0; + border-left-color: transparent; + border-right-color: transparent; +} + +.hidden, .summary__reload__button.hidden { + display: none; +} + +.summary__data { + flex: 0 0 550px; +} +.summary__reload { + flex: 1 1; + display: flex; + justify-content: center; +} +.summary__reload__button { + flex: 0 0 300px; + display: flex; + color: white; + font-weight: bold; + background-color: #4caf50; + text-align: center; + justify-content: center; + align-items: center; + border-radius: 3px; + cursor: pointer; +} +.summary__reload__button:hover { + background-color: #46a049; +} +.summary__spacer { + flex: 0 0 550px; +} + +.controls { + display: flex; + justify-content: space-between; +} + +.filters, +.collapse { + display: flex; + align-items: center; +} +.filters button, +.collapse button { + color: #999; + border: none; + background: none; + cursor: pointer; + text-decoration: underline; +} +.filters button:hover, +.collapse button:hover { + color: #ccc; +} + +.filter__label { + margin-right: 10px; +} diff --git a/tests/eof_suite/eest/.meta/fixtures.ini b/tests/eof_suite/eest/.meta/fixtures.ini new file mode 100644 index 0000000000..cc548164d7 --- /dev/null +++ b/tests/eof_suite/eest/.meta/fixtures.ini @@ -0,0 +1,24 @@ +; This file describes fixture build properties + +[fixtures] +timestamp = 2024-08-29T15:46:57.171615 +command_line_args = fill --session-temp-folder=/var/folders/8w/d0vphdxj41s_jsn30bb_09p80000gn/T/tmpvio13dnk --index --fork=CancunEIP7692 -v tests/prague/eip7692_eof_v1 --evm-bin /Users/shemnon/git/ethereum/evmone/build/bin/evmone-t8n --t8n-dump-dir debug/evmone_dev + +[packages] +pytest = 7.4.4 +pluggy = 1.5.0 + +[plugins] +html = 4.1.1 +metadata = 3.1.1 +cov = 4.1.0 +xdist = 3.6.1 + +[tools] +t8n = evmone-t8n 0.12.0-6+commit.2d20cc63.dirty +solc = 0.8.24 + +[environment] +python = 3.10.14 +platform = macOS-14.6.1-arm64-arm-64bit + diff --git a/tests/eof_suite/eest/.meta/index.json b/tests/eof_suite/eest/.meta/index.json new file mode 100644 index 0000000000..b4ec75ef72 --- /dev/null +++ b/tests/eof_suite/eest/.meta/index.json @@ -0,0 +1,47033 @@ +{ + "root_hash": "0x8ebc407142644b2a36afa42836d6033c12c195030b81194584b753611ca874be", + "created_at": "2024-08-29T15:50:59.382644", + "test_count": 6718, + "test_cases": [ + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-empty_data_section]", + "fixture_hash": "0x8035e6c9f67eb155f0776d688e78fcb3b8dee48fd9dbeb227bebf2db8767bcb4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-small_data_section]", + "fixture_hash": "0x190d4b26894296f5500baabb9e57c4bf7a28850e1be6ea7ddeffa449cf9314b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-large_data_section]", + "fixture_hash": "0x884193cbfdc09a0aa173de13e9e29413e20ceae1140b0f1fc0abc375a5ec9b6a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-max_data_section]", + "fixture_hash": "0x7056b2dae796b360225ecb0636ad1dc77fa5c17d5c5f37ba19931a7267635676", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-DATALOADN_zero]", + "fixture_hash": "0x9cff51b32b690afa38ce259946014a1f1f90fb467f5d43507ca57808c0bd07eb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-DATALOADN_middle]", + "fixture_hash": "0xe49dcb37d0dc3800f165879c7b2322104b1ccb553c7f97641ee5f1b613a8755b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-DATALOADN_edge]", + "fixture_hash": "0x1f2a6c752a58b705038635235d499f6b4d732b8ff3c8ff9989c974dd665a0041", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-DATALOADN_max_empty_data]", + "fixture_hash": "0xd4f927c135c3f195e036216ab7f6e658bf0701854506bced47f234d1ea0e0e84", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-DATALOADN_max_small_data]", + "fixture_hash": "0xb4177c60e2c427be8eb088902eda1e1b08e5b512221000bb038ee9a91733eda0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-DATALOADN_max_half_data]", + "fixture_hash": "0xabdf3ea1a9f73e39725deb638adf6e9feb14e2e5bf547cde0d34c00bb85e326d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-data_section_over_container_limit]", + "fixture_hash": "0x6a9f4bc861c85e7d48a5867eab889715a5b867d8a6006b514a70a3a1044cd734", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7480_data_section/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-eof_test-EOFCREATE/RETURNCONTRACT]", + "fixture_hash": "0x5b3092ac5daf83b1cb41ebfcb010a710f913c25e59af3128c4c151fffa6254de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/STOP]", + "fixture_hash": "0x3a3a51d7f1493a8b0a78fc045c7682474bf732e3f3f4b86d15ed7671ca8abf4f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/RETURN]", + "fixture_hash": "0x4ef84a4feeb49a56de06e0db6fc7aaedc57b5dc4f58170f41101b236c6ba1319", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-eof_test-EOFCREATE/REVERT]", + "fixture_hash": "0x57b62b8a58439f6d107aece65d0489b9c18fb28e52967bf02d5312f0ee13c61c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/REVERT]", + "fixture_hash": "0x4bb1e3fee8584a26e87c6bc1cfd7796c9a06ca00d9d5267a46aed80c6616fcfa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_wide_container[fork_CancunEIP7692-eof_test-256]", + "fixture_hash": "0xf76acaf3853ca06f2b96fb3cc1fe39ebe8f0ae6594735eea5dfa6f6c667b98c8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/wide_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_wide_container[fork_CancunEIP7692-eof_test-257]", + "fixture_hash": "0xde6e35235e44e7f4fa266728b10dc2a90d8496f2de57ce88f533f76faaab5e54", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/wide_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_wide_container[fork_CancunEIP7692-eof_test-negative_i16]", + "fixture_hash": "0xa75cc2745f389061df5a8700c45b98bb1a7ec491b38aafe263a44fb92260079e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/wide_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_wide_container[fork_CancunEIP7692-eof_test-max_u16]", + "fixture_hash": "0xe727cc20b71e1f13c47280ff05384cca4f51d82c3a12227c1a52dbd4f4d6781c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/wide_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_invalid[fork_CancunEIP7692-eof_test-EOFCREATE/STOP]", + "fixture_hash": "0xffcb61781846b0dd9dc65d2985359203ee69808e31f72c79776698d1c83a4f28", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_invalid[fork_CancunEIP7692-eof_test-EOFCREATE/RETURN]", + "fixture_hash": "0xbbfcc6560e9f8e826924307552e6f1aadfe77242e3b571dc55b1c22269f2599e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_invalid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/RETURNCONTRACT]", + "fixture_hash": "0xcb470f5f5d46c9325b33a1efb1a8e732ab0483e22181403301cdea1c858ceb97", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_both_kinds_same_sub[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xb7850d8aa9f42c8e58d294dacda1177104b185ee746abb790b74c204808a1688", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_both_kinds_same_sub.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_deployed[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5b3092ac5daf83b1cb41ebfcb010a710f913c25e59af3128c4c151fffa6254de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_deployed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_invalid[fork_CancunEIP7692-eof_test-EOFCREATE/STOP]", + "fixture_hash": "0xc9ee11048bb2f9c96fd897201879905f93114756129d3ad8c8df4285d279f792", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_invalid[fork_CancunEIP7692-eof_test-EOFCREATE/RETURN]", + "fixture_hash": "0xb184d51af1ba9b4326d317cc5809500eecdbfb293a0e83ab55065b85f848379b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_invalid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/RETURNCONTRACT]", + "fixture_hash": "0x7295bc81ef0f3542451633690c3179cf6244ce23d6f3008c6dc63d0c265dff44", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_valid[fork_CancunEIP7692-eof_test-EOFCREATE/RETURNCONTRACT]", + "fixture_hash": "0x5c2e7af54c00ebd613396c3632fd6fce855d7d006cc52d6301d9a403c2e017e1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/STOP]", + "fixture_hash": "0xee79f9b3436b003ac5750780e5d31353a0b5cc47d43478407ef7c5b60584231f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/RETURN]", + "fixture_hash": "0x42b6bc4137a27b0f94e58a8a978fd617252bf53168aad4625870972d34c1e226", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_valid[fork_CancunEIP7692-eof_test-EOFCREATE/REVERT]", + "fixture_hash": "0x3419abb01626220478bbdce0d0be4cedf6853084a6f152fa3b0a2251c97c9b74", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_non_first_code_sections_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/REVERT]", + "fixture_hash": "0x7b0268348585dd9d98bfe7b1ca2d358617ca4fc6650aea51c6a717b838eaa6a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_non_first_code_sections_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_creation[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3a3a51d7f1493a8b0a78fc045c7682474bf732e3f3f4b86d15ed7671ca8abf4f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_creation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_valid[fork_CancunEIP7692-eof_test-EOFCREATE/RETURNCONTRACT]", + "fixture_hash": "0x492e9a96d321740b6f7c4f9de51d345e117e0e354460a1ac4482e1d2efc0321d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/STOP]", + "fixture_hash": "0x5e46e621c72bc644cc6331ab08be25a4d946af4bb092997b8d0df83f47fc638c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/RETURN]", + "fixture_hash": "0xba67ad93801d14af87a06b279a10ad4b7241fd52d94840fcc5f20950b5886653", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_valid[fork_CancunEIP7692-eof_test-EOFCREATE/REVERT]", + "fixture_hash": "0x76969c55ed51605cfa8d90fb1f684674410f404f0031c0d8bb10cd3a429c1458", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_deeply_nested_valid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/REVERT]", + "fixture_hash": "0xa835646c8e3545a3bcb79791377a054e2e24667761e6a4075801594e5b5a8c93", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_deeply_nested_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_deep_container[fork_CancunEIP7692-eof_test-valid]", + "fixture_hash": "0x89d10b159c0992bbcea35592a7fd246d58e7ca94dafd389d1e37de083118c447", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/deep_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_deep_container[fork_CancunEIP7692-eof_test-code-error]", + "fixture_hash": "0x4092d26e5e7d09b2e015ef4130d1c3ab931104fac2faf2b7019d3cd1ed9ae5a7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/deep_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_deep_container[fork_CancunEIP7692-eof_test-structure-error]", + "fixture_hash": "0x1568dc7d05df464a8d3a7754b35298e3e465b3da19179c69e1fa0292f7b9f9b5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/deep_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_invalid[fork_CancunEIP7692-eof_test-EOFCREATE/STOP]", + "fixture_hash": "0xc4545bcbdbfc671403771288a424fbbce7df7653d661f69d07eabddb838bcc0c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_invalid[fork_CancunEIP7692-eof_test-EOFCREATE/RETURN]", + "fixture_hash": "0xa10fe6e1bc3412ee00057231fbc13601a0c60dd44a5dcc4ca8563c799f7f7e13", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_invalid[fork_CancunEIP7692-eof_test-RETURNCONTRACT/RETURNCONTRACT]", + "fixture_hash": "0xd6e97262dd03b1cd5770c77fc175e0c95d1e1948ef3b6c69e81346214cabd817", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-eofcreate_0]", + "fixture_hash": "0x30f37eaaed02d8f3fdf4d3eae20794aa26aab0db47f103010dfc6e437eab0732", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-orphan_subcontainer_0]", + "fixture_hash": "0x30c9e6f1c24bb8b155b20563ebf9dfed2884deb3fdbfbb6d5e3bd8a2fdd2a4b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-orphan_subcontainer_0_and_truncated_data]", + "fixture_hash": "0xff65ac5ec3ec6d416e4e59dd345a2d150a1edf0acf1a166290b94c85fca90263", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-orphan_subcontainer_0_and_data]", + "fixture_hash": "0x4308743bc3ddc44938c5483bb276c7cef6f4eb065ad77e8c481f7d59eb233fe8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-subcontainer_0_with_invalid_prefix]", + "fixture_hash": "0x7512411f474fc44d650e82d3d5f34b7c35b829e249e06bbd07dd318dc7832c48", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-eofcreate_1_orphan_subcontainer_0]", + "fixture_hash": "0xf86220e64da4d58e1dcf0e364fdacced5b2da59437b7b11c93965b8e2c9e24d3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-two_orphan_subcontainers]", + "fixture_hash": "0x918715ecb4670d3abc07bcf5fb9f6b3d620e96edefa0d8bbdb956c865f73aa9b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-eofcreate_255_max_orphan_subcontainers]", + "fixture_hash": "0xaa97b3ac07fa42200d798eb3020eb84f15e5b0dae6709475f993c71d84f8edb1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_migrated_eofcreate[fork_CancunEIP7692-eof_test-max_orphan_subcontainers]", + "fixture_hash": "0x8d47b3f01c8f605251bf2b96aa27240ac9f1836c089c274413c03512143b246c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/migrated_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-eof_test-eofcreate]", + "fixture_hash": "0x57b62b8a58439f6d107aece65d0489b9c18fb28e52967bf02d5312f0ee13c61c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-eof_test-returncontract]", + "fixture_hash": "0x4bb1e3fee8584a26e87c6bc1cfd7796c9a06ca00d9d5267a46aed80c6616fcfa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_both_kinds_different_sub[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xf6f2628b0095c7323f2958ba794114fb94870dd92dfc413275be6621971aa170", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_both_kinds_different_sub.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_orphan_container[fork_CancunEIP7692-eof_test-stop-eofcreate]", + "fixture_hash": "0x1ff15adba2e218fafb662a4861ee6e5fee6ab970f6a94c0d2cc041e9ef012438", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/orphan_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_orphan_container[fork_CancunEIP7692-eof_test-stop-returncontract]", + "fixture_hash": "0xdab95f6e0afd657d0fbbb4218ddb9fdc9236b5bc4cb259879c4aaf14c4d0e9bc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/orphan_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_orphan_container[fork_CancunEIP7692-eof_test-revert-eofcreate]", + "fixture_hash": "0x38d7aa5aa69c00546d70b395227096ce2395e911e40e1d2556615dd96b916caa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/orphan_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_orphan_container[fork_CancunEIP7692-eof_test-revert-returncontract]", + "fixture_hash": "0x99f190f86650cc7f0a51a18b41aec744440094a8c3a22eb3f3ef49dc0c26503e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/orphan_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_orphan_container[fork_CancunEIP7692-eof_test-returncontract-eofcreate]", + "fixture_hash": "0xee6b87db20da97e82a102558d5ea38fb79fc28a98e8fdfb8a71e763473e8e984", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/orphan_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_orphan_container[fork_CancunEIP7692-eof_test-returncontract-returncontract]", + "fixture_hash": "0x3934d3117d471b3055360c2d238d0455f4239a66547781e21da82a02e009b716", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/orphan_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_invalid_truncated_immediate[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xba1a80ff6ee5d3f70c22c4112fe8cea9c89b08e3e53b1cb6b4821a9f0d03fe65", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_invalid_truncated_immediate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_valid_index_1[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x4f8431178baea35ef417b26c775236e62f55b0bbec3a5e8e9fd7e9ae1f4ef44f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_valid_index_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_valid_index_255[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x9801f3b782cfd08beaa7b28065d40f496429db865cfe13c8369f2b4c57ea538", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_valid_index_255.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_valid_index_0[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xf233a0c18d2a2308e91cfbbe837d6e2b2a130548bc606b0c953cd6ced1f52561", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_valid_index_0.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_terminating[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3e7cc5340638306f3cad11ff31b0217f2f7e65ddb9aa7335c78bf0e3e9e4ed6c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_terminating.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_invalid_index_255[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5ed30b01721e3cf9c2b6d3788b672187b2b48a4dc78e2ef481f7cd72e19bb167", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_invalid_index_255.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_invalid_index_1[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x65d749657b17a5065d4ec39a519b36341922558a63ac0056565d73f48c25f938", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_invalid_index_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_returncontract.py::test_returncontract_invalid_index_0[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x1d007235aaf7d2dfd742136f7fc6e41b508215f9318293ecca9955c9338ed84e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip7620_eof_create/returncontract/returncontract_invalid_index_0.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_zero[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x7c49b2457de9f7de705ee910cbc8cec22759fdf611e81366aa4398f373362263", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_truncated[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xb71074979f525c5bf3b7b5216f7f9d74560f643719fc09c8525d49169d272b36", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_truncated.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH2]", + "fixture_hash": "0xd0311c898276a3b0c84d5ed64a8f51956989c2f40ba5e5b4753ab36e7e848cf4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH3]", + "fixture_hash": "0x48f0cd3915ba1b8bffb33abc57a5b9805c156455cdf448e686db270c1e86c5ed", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH4]", + "fixture_hash": "0xa133ecf0b42031b109240c3ad5771db33ccbbb36822d2baa464793ec4ed88336", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH5]", + "fixture_hash": "0x7bf7f47704760d27136537df0134fcb1f192c3a764c810ab2d1e6c573b4cc265", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH6]", + "fixture_hash": "0xd9e6d24297788bdd3bf1507713c4c07764aad248249a21d395806e9ebef35106", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH7]", + "fixture_hash": "0xc68a1f3451ee8c369cdedcff932eab719d2e7fbc708ffd735b8cd715e7a5e4e1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH8]", + "fixture_hash": "0x9c6eddf6268ce667ea44caca61da575aa129446a0f122c7089e52d0ec3a52bc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH9]", + "fixture_hash": "0xd629aa4e21e642fd9fb1a5e9106705b34b3942436621c3cf9ad60ea1c0339c00", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH10]", + "fixture_hash": "0x3a098bd2f7bc5232d86b653f43d5a64b640ead3b9b706982ba49743d8affb963", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH11]", + "fixture_hash": "0xfd2d87365d1e6ad37e9307b76a3733b2df48b02e7ef0a51c86bed344905dadbc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH12]", + "fixture_hash": "0x5b99607cb01824f52df030ce8314fae0b446f73fecf59e58021d058480df9cba", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH13]", + "fixture_hash": "0x1a3dfcf4b43ad4d39f20831683ad7fb3a751cca6b11780b5f9e1c98f3f7d0a0f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH14]", + "fixture_hash": "0x407ae260ae760b91cda5094e3600b94a95cbddff187782057fc198e12a56aadd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH15]", + "fixture_hash": "0xcadca0985eee7ca33024f90ea9d9240bfe112bace7d584a0020449b783510b81", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH16]", + "fixture_hash": "0x579978f921a1b98b2a3ca7d7a06de840818ef771af2b1e5d19e0db82defb8c32", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH17]", + "fixture_hash": "0x88f3810f41ac824832a9b69abdc558c7bce9b5374245e496862183b17ee8603e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH18]", + "fixture_hash": "0x382210864c0bcd598f56681808766581f935c9bac2eed602b64b5c1dfd6cacfd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH19]", + "fixture_hash": "0xfada71786357e8db8728df7af461818c65cd3629ea74cbd83c255e6a18dfb5e8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH20]", + "fixture_hash": "0xae940df04053c14f27757f6f4a3993341611484e2c8578465dbfe6331c446d06", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH21]", + "fixture_hash": "0xbc478b99bcc21a21110fe075a7e200ab10751ad325bd72ff9914096fc6f77aef", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH22]", + "fixture_hash": "0x1c658abdac6eb273b2b8e33f371aea40e2aae30773671c784e169ceb6eca5ea3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH23]", + "fixture_hash": "0x6cb023cd01713e164a5c086f2ff18aaa7e2a75b5ef4835a03c0e35e0684fd5c9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH24]", + "fixture_hash": "0x305e66e65a4890f23767fb3ae787683eac3f1da1dea5c024e7f28e7b4f45e368", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH25]", + "fixture_hash": "0x220b7f5e568f1af70d603d841acdf24eacd6a265887949860e9b4f3a5773c507", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH26]", + "fixture_hash": "0x4ca709b25ef2b0d3f5af4a9ab71b35155e8f49bcc6b325d81a96bd980465e977", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH27]", + "fixture_hash": "0x93a1ed13f5e96943b2436cc5691c34eb42888fc0c24e8f4ec7256db843a0eaa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH28]", + "fixture_hash": "0x8f2e89c65b9b227ce4e978192d89e4b79915b227ab76f261ad1a2b8f8ee6a2e9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH29]", + "fixture_hash": "0xeec3ab96c9f6402a0b08e62d9802b63a114846168ab8a57ed7384e038a5f2f3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH30]", + "fixture_hash": "0x4cd4fae9db9e841b1ad82f21f3a051a96b58d4d0d1850460a3db74414923545", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH31]", + "fixture_hash": "0x8b6156ad6d89ee79a412ffe0355f4f8ca7997740b0d98b4e7d6e2377cb61623c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH32]", + "fixture_hash": "0xb71e2dafd44e3d64e0a8d1ac45b8f3dee064ed2fce64eb185d0dcc8534ecfe58", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH2]", + "fixture_hash": "0x8cd32af1fe3ab8b1c19d15c847becbe3a7d8c2b54945c4e1406d666954bd7fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH3]", + "fixture_hash": "0x8f251d634cd4e203ba91ebb7691b833d893fcb283536370d6cf08de3bfb4f7ad", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH4]", + "fixture_hash": "0x2f4ec9c000d9246a0f92bdc09935d3d5f9c7409cc4415850b0bf1882aadb0284", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH5]", + "fixture_hash": "0xa05be34de8769dedf0038f7858ba81f0ed65af0defc403e1c80761268cb7298e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH6]", + "fixture_hash": "0xeb0087126a6512af3168e79c6c03958b1bed3370ef095b4c938de3479a5f61ec", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH7]", + "fixture_hash": "0xdb330c5c207e8bfe03163996600634686136cc12dc961e696ee802419c30821e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH8]", + "fixture_hash": "0xcd0314821c25f0b9fc0fbef53a56490abdf8a06556b23855a3195507cecb2f89", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH9]", + "fixture_hash": "0xaa2a73c0d668dbff348e41875772305424fc6adc794ce8fee75c2ba3f486453c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH10]", + "fixture_hash": "0xa59c7ce2b36af548c31b5e4ad2cbb3cee8079627f011807f4be3cf60a5504c2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH11]", + "fixture_hash": "0x7a2e02a94b259a092425caca809a00edae70a4ae1046e9c8b868c6e81de186de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH12]", + "fixture_hash": "0x8862638ac49fc4cedc12bc4339263b2e4ff46d0b2f2b84fe6b4149019ab3f3ec", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH13]", + "fixture_hash": "0x36efd09dc5af7fabde0c964bbd2763df11a6b381dc3337ea7d4c81eef88682ec", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH14]", + "fixture_hash": "0xefa703b0a22c446bfd39228489137c89cfc5ba0133426adbaeae45318ef41b42", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH15]", + "fixture_hash": "0xf0ec6f94713f474dbf3cbcb2588030ce4db33f9562864fd09d7b212f73df50c3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH16]", + "fixture_hash": "0x43961f7b6526f0d73685a2baa1eea4b9eff744b5b26e298888ca339509a727c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH17]", + "fixture_hash": "0x956ae0897b24c6c8aa6d6f8c33eec03691751e3a56fff2145d7c2e006358f060", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH18]", + "fixture_hash": "0xf640f576eaa6c490cfc25cfcfbb3d03c3249287c99928503174353516c184375", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH19]", + "fixture_hash": "0x9c564b1accd51da28f8666ab88aa68261d9aa07ed30ddf8728d4bfd6dcf73441", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH20]", + "fixture_hash": "0xb70b4092bb71bfa0fc7a434b231940fecaaf0944a396c4dd1e19fc8056da8f0d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH21]", + "fixture_hash": "0x8e94abb13f64aea1cc652548023cc3d64011c1f9fe37dd3d7e197993fe9bb943", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH22]", + "fixture_hash": "0x51edee46d2901d6a0aa033b395857f5b564f523fbf2e4743bb2ead701bd911ce", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH23]", + "fixture_hash": "0x6153da753c7f995a2f30f00ba770f222f0c65551ce858e4a74cf0bd92125031e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH24]", + "fixture_hash": "0x824fe89e1ca56cc1e2d3f5b55128b3e0d93f20b270698786fcd17712dd4cbc1c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH25]", + "fixture_hash": "0xe7f01f6e64c5e2d3dfdad4005c83814c13a74cbed2d3fa90d572556cfea0e7bd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH26]", + "fixture_hash": "0xb306c8c1f1cfd4e3e49ef894aacbf299361d5bfdc4944390b26cc857e4fd4faf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH27]", + "fixture_hash": "0x2529e924952e54163e3e56c2f7e3a58a6e2e489c79ee1016106d903d47f3a931", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH28]", + "fixture_hash": "0xd087e05e51ff4b15fd1a08e143a276c651faed05f358115608d680b58ca3b848", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH29]", + "fixture_hash": "0xaab4b6b59bc6c5872942425404f27a2a89c9b14ff0bb638b10a39d9106367ab3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH30]", + "fixture_hash": "0xed65f48b9620241a22bd8e49af56d8abcc2554febfb4b65685485a7041652579", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH31]", + "fixture_hash": "0x24751f64229aef52db1c800c4895738584f237a70ab275512019d9b4ba36c684", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH32]", + "fixture_hash": "0xcb4f1285c8886a8f9c14e47432bc7b8baf9123be1ecf7a6c35590aa2a8223796", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH2]", + "fixture_hash": "0x13877dd105ca72bdfcff9e10b65ea2807671fa9433558beba031694c6e81a3bb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH3]", + "fixture_hash": "0x3049e0ebf50b61acc57d13719be500cc419edb38decbfe744c23aaa3d80ce0db", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH4]", + "fixture_hash": "0xdf1cf79231ea05edd8a6ae3bfed7ef33fd8030ed95cdb2bb9e9b970705d70646", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH5]", + "fixture_hash": "0xff9007fbf7b4bf6959e8f1786054dddee991587d1dbcb6a0ff9a1deb97b4e92b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH6]", + "fixture_hash": "0xf9c1ac9e94c2c6d87cd17e16a8ba50008e540d34db21d4799fce7824b5687e4a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH7]", + "fixture_hash": "0x4b19b90f0dfbf73ca15b01d60a33600a75ae1b75ecaabd2fcda4fcb0e042a7e2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH8]", + "fixture_hash": "0xb656b5f42ed51659ca0afc14ddcf32be654b9b3b28a198ee36ef8075022022ee", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH9]", + "fixture_hash": "0x7a2a788ce791bc570b5563693121b6ee6aaf9ab7dbf40394c65f02aa2637da56", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH10]", + "fixture_hash": "0x5137c73bb392b92852fc82831d7830baf53eb5a67350a372bb1489e20dd22ccf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH11]", + "fixture_hash": "0x9446f958cccce5c83abfddc8ee64c3d76550073cccd5c6bdf9819d91bedbe63c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH12]", + "fixture_hash": "0x9715cee7d1b33266344ccdac5c314d0434de602931fda406a6a30f6196255dae", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH13]", + "fixture_hash": "0x8335e5a39b5bc3ca8e1bc5174e8c571a3c0b30ce39eded4bcc0fc14353d5c13d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH14]", + "fixture_hash": "0xe96711cad78f5ecf0fde2fc58c5ff1f2672c0941c5df7f617aaf7254cd3d2855", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH15]", + "fixture_hash": "0x7cb886f9d988b1c9672b9f0b0d047f6fdc2d7f61d3c2d7c6be7707ad8057c5a7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH16]", + "fixture_hash": "0x6beed012213ecd949a777adc14b4342abe04e9695d9db389a45f21b5061f9b63", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH17]", + "fixture_hash": "0xc48a5929d5d127281797deb0eae7666b4d1cb57b7bf0f46921a7dcde89a79cbe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH18]", + "fixture_hash": "0x2843dd84e71cfb84ee42ced879e1d0a7ca01c8eb657a08752fd508e2c9cb1de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH19]", + "fixture_hash": "0xe9697f246b11468210a9800c21955c209a530bd96b91aabd99a2aada6f1d3713", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH20]", + "fixture_hash": "0xa87d98d946ac94123a079ac2567d9146617cf5b03a8bc3c3281874e48e1676ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH21]", + "fixture_hash": "0x7cd52fed6bb650da73b9ab112e807f2afeadc4211ea5bdc64ac9224de3755c21", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH22]", + "fixture_hash": "0x5220ce535d1c51721c052aa326fc75d2bb14a5e092e87429c92d77c70fcd37df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH23]", + "fixture_hash": "0x41c225c8a9096d33ab45f6602a16667cd4df09fdec09af1b75fceb0426d3d772", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH24]", + "fixture_hash": "0x81737894b5fa3c622d568e16fbc714f4ad4817e203007eb7aa2b2e612de34d4d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH25]", + "fixture_hash": "0xa1ee3e5a4c38378a65f84decfc3173a67ec482d2194cb4f239a4902b74863810", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH26]", + "fixture_hash": "0x4ecf67f6733da062417e96233d40c7b4f63d9dcd05ec7db8fc6b920dec14fa3a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH27]", + "fixture_hash": "0x58c132d9ad78f6a710442c26b091005b67ad8cf376eded482556341e6a55016e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH28]", + "fixture_hash": "0x158e617d97f05148763c75c59d59c02eada1a2ef217f79c0f647c2f8e050c574", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH29]", + "fixture_hash": "0xb0dbb82d878fa003029ff79dc981997515dfe997c41f4d01b6bbc6d2e1f19571", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH30]", + "fixture_hash": "0xe759aaa895322f8ad6dfa80bbcc12f1c192299e26043f13b24937f57a9e8ef0d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH31]", + "fixture_hash": "0x6c85eb551bcf4ae68e4da66b3e002db5b70cc7459c5afdc49af56309ca5d0fc9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH32]", + "fixture_hash": "0x3ad981dffc2af5ef6df39058acacf481e71c44a03af63a732ad8e4c3fd51d780", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH2]", + "fixture_hash": "0xf411d736d3d83e3688d5520d79870fb489961e88f739a2a7c2b2534cf2f3616", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH3]", + "fixture_hash": "0xa8af04b48f1de718609a3965df6cb099e9dd435d3648b1e1d08bb2d122e6fdc1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH4]", + "fixture_hash": "0xba913b2092ef8a1c7d4845f21776fb8cf6ec914c1b5104b393007f10219cf2f8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH5]", + "fixture_hash": "0xafcdb0fd2e8ac772bb0407659f63ff62efa1da0eab813f4a154935b594f8f2dc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH6]", + "fixture_hash": "0xb859db6319e1b779a691dce31d06a15ee8399b2bb5c7123c0d879868469a69c8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH7]", + "fixture_hash": "0xe03c269282bf473b9ec7f5e800274d10660894d776a6e55d4a3e5e1b6a101488", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH8]", + "fixture_hash": "0xa21983291623d88426de12910098876aaf6fdfb0e1f29c2a476b5d76f4f82620", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH9]", + "fixture_hash": "0x49eb6a852d3f64a01903cc225959cb879e5fe13fa1107f28cb4186ca60a47cbe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH10]", + "fixture_hash": "0x355cf5202924198b936babe73d02d30011e51acdac6655f5a4a9f85a332d0bc3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH11]", + "fixture_hash": "0x863d1f01fe1ddffebb5c3860b6642638006e3ff4f95ea85dcc3dae226a4ddf76", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH12]", + "fixture_hash": "0x8d64dcce523255b4eb8a04544af5442e9db6678eba389de18215abdfd1464748", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH13]", + "fixture_hash": "0xb357f77f16035d560489917cece9fe2a7c719fd21cfa388ed88724c4eebcfd40", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH14]", + "fixture_hash": "0x5a5454ccc898a22eedf0ff6a791035d59d6f3145bfdceb4d3931d5b21d19fc7f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH15]", + "fixture_hash": "0x42c227c0e39e3bdfcd3d3eadaf1b70b1ed9f191a3ea1aee0258fe201aac14f1f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH16]", + "fixture_hash": "0x3be8f67c37806da9fa18796b913918c3c4716cfab67558d8ffee24acadc632e1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH17]", + "fixture_hash": "0xe0d036517dc6b6caf2fbf5d1bc9d66fcb3157d4e13bdb0b5cb1645195c9d2a9c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH18]", + "fixture_hash": "0xcdcf597b5778c5f5e838fb85bd1259e703e5e61f971c240ceafb8a0fca79da83", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH19]", + "fixture_hash": "0x6dee6a86127ad54e90aa7e6016c255746574076fe11400edfb434850ebc8b385", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH20]", + "fixture_hash": "0xec0590a2ef366d344b29fdd770409419ff4c28b55ef8edce3b913b30d3b216ec", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH21]", + "fixture_hash": "0xcce804028d23feda040627bdee81de2e25e2b8efae8796e09ee81b7431878ce8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH22]", + "fixture_hash": "0xe61d653df8c2ab703268d2f5e5aae2107045bc3a6d9e3e7838c418f9ae896fc6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH23]", + "fixture_hash": "0xa72d4efcd6937c1ce9a7d55fb3e32067322129343b3b94896f06642d0ec6a915", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH24]", + "fixture_hash": "0x97665ae35546bfdcfb1b7ba43243b17dac0ecc0980bfe84290eb541d4d860848", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH25]", + "fixture_hash": "0x34bf68c8d50101ed6946fb0a3bc7a3cb99fec8f317f7a57f6db6d301d830f1ef", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH26]", + "fixture_hash": "0xe04582bd4e218116d34255a2bb8770bf558eb80b9a34083bd31755c801f6a204", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH27]", + "fixture_hash": "0x805b3fb6e65cbf1ff3bd232fc14788cb1e578d688003c794b1db894efcab2011", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH28]", + "fixture_hash": "0x56338aa7d427c9a67e57db82652dfa680671af9ea2f9c23532cb8cb76f79504c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH29]", + "fixture_hash": "0x1555d4627eea9c6afec2ced49798fcf40c93a80a694a5f9db60fc862e22ed39c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH30]", + "fixture_hash": "0x152e454cfe2a47aca44f5a89cf5fb14ac2344c86c2ddea0d6605773dc52518b8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH31]", + "fixture_hash": "0x35ae63c41bb2e35f5dfbf76186980c845c59b560883201a67b4c361bbd6ed815", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH32]", + "fixture_hash": "0x847045530d8cae0b52bda427aa0f9ea4b90334c72ab8cae46f558a3dfca67fe2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_stack_underflow[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xe3c54293acef1746a45ec2f93432af11798dd3a01f511c9c9159e660815d3d18", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_rjumpi[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x65bb22a17e4098e7e9443d240dbedceeab68ca52a167eaa6bf44ad399d74fc65", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_swapn[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x932d130abac8ef3ae6386eafe289212f8992422ba42c102c60bd3c07d80f8c9e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_swapn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_self_data_portion[fork_CancunEIP7692-eof_test-offset_1]", + "fixture_hash": "0x5a955bd52475e91c52fe5814cc38940ae482efe0ccc7cf57570ab56df16bdb3f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_self_data_portion[fork_CancunEIP7692-eof_test-offset_2]", + "fixture_hash": "0x7e938abe4ae24bbc1bd0797503b8e38232a2fca7a4ada87dfb748e1c0aa52ca8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_rjump[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xfb5615670ae980125dc765025821e6da036b41b129fcffba6657a09a887de396", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_dupn[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xfeabc90ddd1a2cac01983d8f09bdd27b39a6891e61313361eb310cfdbb59b47d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_dupn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_at_the_end[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x974d839b2f12ecaede02aa3e3466f9fb23936f85481a2d10ffe4cde652c0fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_at_the_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_forwards[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x486919d1456312a927b192669f011ca37cf699c30885b411bcddfc5fc0b00e15", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_jump_before_header[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5753028c1fc9b57173a73e8a0ee0e0cbd1324f32e0025cc6b7b371e14de6bc89", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_jump_before_header.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-target_rjumpv_table_size_1]", + "fixture_hash": "0xf6c6deae5e5408608725b3fa141ddad386b482267ee1bb4ac41849db60c39605", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-target_rjumpv_table_size_256]", + "fixture_hash": "0x2dab8099d4b40628d25319eca3f75c692e70cdb136afcb744f44bade3fef3ec7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-target_rjumpv_table_size_1]", + "fixture_hash": "0x4af3f8d89770cdcc9a162f24e24eb3cea0fecbc9b5e6408859402879f6d4f71c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-target_rjumpv_table_size_256]", + "fixture_hash": "0xa6dfc75db743016ebc750c1a7d42ca825631eb467a0d0ebfd3fbb92e058d958e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_stack_validation[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x4613e5e6eb488647cc2ad0af5ddfd96962150b510c595ae7f6de7cba42675ae4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_stack_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_header[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3085d1682f19eb099c91614165c9659afd6b8352f490c6f6f8c477e1d003c3fd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_header.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_truncated_2[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x6650548fead2aca675f79678b651ee3967fcf9831c85cdc02ae798f8f1df86ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_truncated_2.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_exchange[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x881a2fada08ef2fa65068f3a6cfd722af5d04f088a0782ee1d6ccb9b369b939e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_exchange.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD]", + "fixture_hash": "0x2f436692e527a55c8ab3b7a41743236a0fe5d41de286dd2333fbfd0681825738", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD]", + "fixture_hash": "0x9e4744141977ca05dd45b3836e64b5852769f258242bd38add4e0dec7686975a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_skips_stack_underflow[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x29f55b32e7f80c463b7d243deec5246980674bb794489268b5848e4e5e4df07a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_skips_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_self[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3494c34d41809c3cb8a23e14f93b66af15026891ab77c19129fba8960a426fe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_forward[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xfa402bef6b34b5a70462a0bd18ad8283e4c74d145c0d3c10b94ee324b3f8d8c7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_eofcreate[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xf9435ee2dba697e97cc64049e747a963f529f2e948b5d8476dc355e6aab94772", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_after_container[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x9051f9d93e8921cd1c38c0c9a3cd05c7e2fb0a1a5b0a10dce5add70be0ad9244", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_after_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_returncontract[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5e3a98f05bac06487615aa485dd51c2b845de2af4bef69d128781102996b3bc4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_returncontract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_backwards[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x48f5a355d8173a863ed31b63e1c5eaefcedea76f4f19ff6ddda34682d91ef24", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_data[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x51ff4e0ce9a6b24c79f8f6ff91fd6a65ea2a92b64ed26f816db0971b94c48e66", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_backwards_reference_only[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x1e88f6109f7605fb4130f9913f64e3b07b7c01615f02c686173f44639d136d1c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_backwards_reference_only.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_backward[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x1634f896005819a84bc2dd125614c676b1efa1e3d665c385733e7f30f8cafb66", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_to_code_end[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x2f436692e527a55c8ab3b7a41743236a0fe5d41de286dd2333fbfd0681825738", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_to_code_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_stack_height_diff[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x426029a9514e5b45a454844796c79b521ff79aed5f218d1a7f7d60841f153e08", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_stack_height_diff.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_callf[fork_CancunEIP7692-eof_test-data_portion_end]", + "fixture_hash": "0x18b30b17ae98fdddf3f21216b6794849160a21ce06ad38f4209a93976be00c6d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_into_callf[fork_CancunEIP7692-eof_test-data_portion_start]", + "fixture_hash": "0x4076391aa9df8d23ba1ebf530b50ba3d45301b10957d42ebe8ff2d4b3b7b42ff", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_bytecode_size[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x1bdc0950865bd9eb19d636c30c6cdbe4240abdcff6e2d30fdfa64393c4608863", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_bytecode_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_callf[fork_CancunEIP7692-eof_test-data_portion_end]", + "fixture_hash": "0xb747881490d28aec308f4193351960ddf3160832e0a70d74626328e1800c0641", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_callf[fork_CancunEIP7692-eof_test-data_portion_start]", + "fixture_hash": "0x1b338aad71906bba1ca8bd25d47677f29470feaa77e0c1ec0c7d5d8a2ca14e03", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_exchange[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x4660ab6788eed77cd5e05766b84f139b0d201a1068d8b1930c64cac68345519d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_exchange.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_self_pre_code[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xa2d973b7181b1c80ef73822ff42da9779cbbf28f4915f0ac9969c7e37115a22f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_self_pre_code.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_after_container[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x8ae689d6089a8b2ca76196e81c2b90e60a846d67385c4c4d2de189b48ce0578c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_after_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_outside_other_section_after[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xd93f5fc0aea7b12fc619858ba9dfe4973c90997874a8a8854abbd30388946f3f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_outside_other_section_after.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_stack_underflow[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xdab214cfc56a4c1dda8c4b239c525403072a37d1d3fa10a63e50eb61863a5be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_maxes[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x6bc6c2d26a18ac7ab4453e43acc9ee7a9a8eaf53317cd0c925e36f67f3b6a015", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_maxes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-target_rjumpv_table_size_1]", + "fixture_hash": "0x43c4f8418ec19fc41435fce5f54abb1cd28bd8aaeb73f7ea2145ecc7f91ea39c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-target_rjumpv_table_size_256]", + "fixture_hash": "0x3b9aa404fbaaaaba6f57faa4f65f08e141d06a36c8b03d3ac6cdbe53341d82eb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-target_rjumpv_table_size_1]", + "fixture_hash": "0xfdb2857bc39272c3bf91b8774c18cfd56004ae6a1d69625da1f712d8d2186c32", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-target_rjumpv_table_size_256]", + "fixture_hash": "0x6860ae5c9ed7e391ad21347b7aea84e19967f50e98c90b972cc57ac5a756e945", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_stack_height_diff[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x96d6efb698405ab3cf2422aaab9a26956dae7fe7329eba31a9a0ec74b21c677c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_stack_height_diff.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_dupn[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x386690b5109d5afbaccad7d99fc2ea0939a5104ca4f81abf95a18a89008af955", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_dupn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH2]", + "fixture_hash": "0xd7f072fc376f3a71a8d8c7f5bdc9805c01a39c2c633412716ee225fd01c92801", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH3]", + "fixture_hash": "0x6b648502126556ffb9c64a3cbfb81e07d6a3c03f9d1682e97d320b5ffe7343da", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH4]", + "fixture_hash": "0xeadf530a6e0b65bb83929c8c036e6460ee731e3111dec722dfcabe06ae0f57f5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH5]", + "fixture_hash": "0xfe31119e93257d291de265da79b2bee0fef2dba642e22d4c2ca2655da45dd176", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH6]", + "fixture_hash": "0x2cda6cd8a0a6be3e615a2d2b947c6739626895f75aa8351f7295ad60fae54aad", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH7]", + "fixture_hash": "0xec5cc0c3728ce2ae75ecbee1b7554f22bac2590e363c29a8ce402ffd25d0856e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH8]", + "fixture_hash": "0xf9618141d7e76796cacc244c82a8e1b8b8b2c2e81e708ea3d6164d435711cc3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH9]", + "fixture_hash": "0xc4aea208afbef0846ad3e315c0320a9312363a8ee503b64d83bb5025a79233dc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH10]", + "fixture_hash": "0xfcb3441d8c62c654e37878d15c08de06057670f6984d233f35562778be7d19be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH11]", + "fixture_hash": "0x6ac8e9aea56035e0f7aa687befec846bc6173a6b3bec255c2b535d53f66c935d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH12]", + "fixture_hash": "0xb1d427d24ae72d193142ed74b6a0ef04b3a15db6eedf13207094c3096a38ec96", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH13]", + "fixture_hash": "0x81a3839a60eb273ed2be99b9b8c62ac6f39723f433aaf0a6d9639472e0028a77", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH14]", + "fixture_hash": "0xd0932c7264961c6c92f895942eeb0b83c769f6ba6baa463299c7bb9c603df21c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH15]", + "fixture_hash": "0xacdcd83f2be01331f52ffd997c1704eb3cac61100b39c741436d634a400c868c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH16]", + "fixture_hash": "0xe43e0738e2aaa8137f12346d646600d9c7d9d81b5504344ef03eb01dc331ced4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH17]", + "fixture_hash": "0xd2cbd6827e18168fb7bfd0ffe2b20798b161dd5505da3e01dc1eda7e79b747db", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH18]", + "fixture_hash": "0xe3d0fce6e67696bb67d47328f257d2e109546801d8bc8a4bbb56da460d396c7f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH19]", + "fixture_hash": "0x40629a46299efe4cf29f1c97af1b100d469448b8837fbd1bf0c378d60131817e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH20]", + "fixture_hash": "0xfbef4834d1912730a870095a472104551383a939df6ada8cbab4c298e9c6d24b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH21]", + "fixture_hash": "0xe0935a70d8549f5cd72deee0f02da66c3c9ebc734923d8e68d30aa844d5b8401", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH22]", + "fixture_hash": "0xcb390b64dfc4ae2701ab7a72baf671de35586765f18236ecfbdb16c899e11f9c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH23]", + "fixture_hash": "0xaa1fd807db4023ee218cbfe340c53feb919751bece95d6087b34b6d0401549b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH24]", + "fixture_hash": "0x99c46ec7abc9f59e0ff4d5afb6c63281145eb3d91b80b22336ed7d8e024de247", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH25]", + "fixture_hash": "0x189557782d7130ef967cbfe4408670570cc5dff71a16476019f2038a4a0bbaeb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH26]", + "fixture_hash": "0xc835be4fcc10892716bf91d13588b1ae5f11ce1e492cfcb5bde44ce673df395", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH27]", + "fixture_hash": "0x9fdfada54725fa31bbed164a74fb5d117d6844ccc714c8aaa4ada74a03b5f2ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH28]", + "fixture_hash": "0x68268453263b400c284d73eff1751f5069e03062a2cf10fe215e64375c3a6ee7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH29]", + "fixture_hash": "0xd9f50ebccef8720b1d0747e5ee2760810fb5f14694c2dcdac38319165aa5e376", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH30]", + "fixture_hash": "0x15d0873e0300a0d86cc7e038c9e093fb5dc23c6cfc4405d9512f3c19e9c996bb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH31]", + "fixture_hash": "0xe56d522563e5e8283a1c90edf4e2f87bcf4638b31e113c4f4aaf763b0e738a1d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.FORWARD-opcode_PUSH32]", + "fixture_hash": "0xe142dc2ff2237ac8cb53ba7c942f38e675a25dece1817153608cdd7235476001", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH2]", + "fixture_hash": "0x784490b60abfb87d7074f8a9a7dd8e4dd716d62fe1eb6c4c290dd1b45ed02f00", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH3]", + "fixture_hash": "0x432be6aa3cd8ca9cc2e2fc33bbf87484e601a9717054043ed3194daa291292fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH4]", + "fixture_hash": "0xdca451c718c8a57efe0dd05174e6740f610fd7f6b1d99d9f44429a130e46844b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH5]", + "fixture_hash": "0xda20243b8ec2f51304334a9a49de8c9e7d5097b1d32e1399202a1a7222088c79", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH6]", + "fixture_hash": "0xafcdda59734a20b23209cfb3fa3b8f18f3a0027f6d89ef5b160e4d09e237574", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH7]", + "fixture_hash": "0x172559f2513fbe6c9065292ce0f9e6adf84f6ca8adf685e319928330fbc085a9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH8]", + "fixture_hash": "0xac21491e759f3ff65ab8c5f2346f84a9e281f81c8a4881b05121145f1c2e74b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH9]", + "fixture_hash": "0xf605ab4f06bf5fd58d390f5a343b964b8f9f6b3a893383500e762d2beec62604", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH10]", + "fixture_hash": "0x78467f5a1dcbc81cef25e6eeb0e94dcfda817129663b6b9a5f88f2dddbc0bb6e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH11]", + "fixture_hash": "0x55c19f238e4590319d1081cc578f2ac2ef657b286666d3661bdd17c0a8f3f794", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH12]", + "fixture_hash": "0x5b0b11fce890b4fb43a7f1bfe943f48668d51e5792a9c1414736a8ba99016df5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH13]", + "fixture_hash": "0x875657a8cc6701b8efddee8e1bd9486af6006b4b03cbebf1da2e30fa1766f4aa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH14]", + "fixture_hash": "0xeec6bb6a9d6530db6d3f1e1aa50df24fe843a09749456162df3fd716797f3e09", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH15]", + "fixture_hash": "0x95f95fd07ea135849ac30e2c34f1b95f33491168df48c081e84f79fda5a81c47", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH16]", + "fixture_hash": "0x2a133f5df733df3bede098400c40f980e59b704aa4c5bbbdbd378d9adaf23c14", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH17]", + "fixture_hash": "0xdcabc5da948332a12aa4e84910ebab48e7a0c463408ec663cc2ffedd24d904b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH18]", + "fixture_hash": "0x78aef437b091da9fe8354acc3696897958f87b9f7e43d45857962a3b3775e2f3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH19]", + "fixture_hash": "0xa76624dd9e525522b719a5c32a27cf3033a16881c28a92326a183091d1398c12", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH20]", + "fixture_hash": "0x8e669fc17efe1c16b232526efc7ffffd613c3bd1e106eacffa9e4319adf93f3a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH21]", + "fixture_hash": "0xb99c302a55e605b141d5772ac16431185d60e890f3c2f7077639091a327aabf6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH22]", + "fixture_hash": "0x597b6a1979ae66987dafb06a142cff07c1ea1bf0f42d37afc627e80a517927ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH23]", + "fixture_hash": "0x1e6de57763670b9e8324ca292dd989ad1397c7322fe4ced96e6779e1683a98d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH24]", + "fixture_hash": "0x9ed601a7ea02beda48b241c9c5ce778e9a42773142b1baa9e2e9723ee487b31c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH25]", + "fixture_hash": "0xb176987410af1e99b742dc8b95cfe9632791be943fc9e5782ee7021e9f3230f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH26]", + "fixture_hash": "0x641185d7455480c9226f135e7de967b21fe9c51dcc07f0c962861606ad18cf69", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH27]", + "fixture_hash": "0x51a4101d168f2b78b8f3000df57a10cede4ff7877a4a90e8111d6dedde54db35", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH28]", + "fixture_hash": "0x70e9c539a942525fb517cf3d528324a77e1848b7c4c1767521088f3a080190b3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH29]", + "fixture_hash": "0x43af46566840295e76656a535518660930e0cda8afa432ded8b54570745f6778", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH30]", + "fixture_hash": "0x3094fb17d95596e7ca3de2d78ed3cd717218bf34b9005b3f25533e9d5998e664", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH31]", + "fixture_hash": "0x4f0491d1557f8bc47f1cb24bd5520b3e7366f9c63326ed09525d15b73e3f5f8f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_end-jump_JumpDirection.BACKWARD-opcode_PUSH32]", + "fixture_hash": "0x72bb2feae050e1d402a5e926b4404b7ecb7281c9356926225c1e70b17b52ca14", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH2]", + "fixture_hash": "0x8ef428566859df1eb83b368417f02cb361dfff4834d8dfbee63da669c79b2d71", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH3]", + "fixture_hash": "0xa16f7f5fb994ab5edf2ad7f4e6b4f87919995bd022ca63be78e1918a9edd01ef", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH4]", + "fixture_hash": "0x3fec9ca8804755e7b4074cc42f9a4b061a4a7c941f93c07e800c3756ecb98b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH5]", + "fixture_hash": "0xf5f3715ca9c0ba3022905d7bf6f7e8971d387106f2fab8f9bac7f55754202db7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH6]", + "fixture_hash": "0x2d9c42951bda162cff9f6221d55136a3e38fad8c56088e8923a0f56b850fc871", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH7]", + "fixture_hash": "0x730b56418d697998bbda790d47cc6ddcc16e3527c7664922a5c56be35c964532", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH8]", + "fixture_hash": "0x46ef001a9468269ec7478e101cb6c938d552ecbc57d638d3c21e4ab124365e25", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH9]", + "fixture_hash": "0x317c852c481cf7ad9d8a85bbf0326aca3cf5e27794706714510ba9c7e5dfd535", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH10]", + "fixture_hash": "0x7cf77cfacf39b5ec0d84f3e56728c042249915d93ab69da3fb8e27ca74f400a3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH11]", + "fixture_hash": "0xb39c915cd970cfdf7d09a886524aa734ca13697d3bea7bafaace9b4c11247517", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH12]", + "fixture_hash": "0x89c47981f5b280e0c49ea3865b03d38178a9545ee0410bfe0c6b4632092e7b64", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH13]", + "fixture_hash": "0x903f290a6442a87ce15531c36b59bff122fbbcff2fe8c205f2626fb2fd1d63ce", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH14]", + "fixture_hash": "0xf2c3546dcfaa624f3ad005357fa0b288464df834e6174788af554b7af84abdad", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH15]", + "fixture_hash": "0xb9873abe1db453b1d419672c11876acc33f8915d3acbf231002991029094c6c8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH16]", + "fixture_hash": "0x61cea1335669f411be27f9bc220bff05ccb4e1e298caa1a33a7a2c3c29106ea9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH17]", + "fixture_hash": "0x980f1925526c5a48c4337373ec0c53cf84ed16606dc104618e4082799472a65b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH18]", + "fixture_hash": "0xbe7cc6db0718c98fe540cf1609102644f79834adfbcaa6ecacb8fe51c3fc74e4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH19]", + "fixture_hash": "0xdcd9057d608cf0a524878c5dec2706371d545fc6bbc0c99805bacf267c9e785", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH20]", + "fixture_hash": "0x1cca1f07d42844756956d358f01aa1df26439face02037207ff54e0c66a28811", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH21]", + "fixture_hash": "0x1e4fbe3c89f565455fd2f32693fc7be0141b1272c958d142e97f7799ec145497", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH22]", + "fixture_hash": "0xea7caf8e98b0074a055de5496a4a6dfd762f13bb921a558700b3173abd5df37f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH23]", + "fixture_hash": "0xe449866feff679d2491ee4f27aa4d4a075260db3ea53e315cbe89999aa493b5d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH24]", + "fixture_hash": "0x34b285d882729bd0337a6401ac8ee43f2e55a0849c36abb9913cc3f13a99f9fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH25]", + "fixture_hash": "0x63656d4927aea6e0f5f9323cfebeb7973b7cf1b8c0c98480931e54e654c82469", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH26]", + "fixture_hash": "0x49474480297bbb2e9f854c2d89ba5ce5f2f81916835d87e5a345eada225e8fce", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH27]", + "fixture_hash": "0x20c004b424571acefa95ba252461b9daccbd409511b5f941cb9b1927b57a91b5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH28]", + "fixture_hash": "0x4bab8618977c2623b7b94ee02d85337d78501539c8064f8ebf9ab93d4d9c5c3b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH29]", + "fixture_hash": "0xb85e83f9383f5a63b5362eb853b7050e12dde849373cee8b8ba560b0a8d6946e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH30]", + "fixture_hash": "0xee14e2ffba9dc0030d5939fd6deec9c40798357aa59cc7cf00cb5af481bcfeea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH31]", + "fixture_hash": "0x6fb7b8bc34e9aed2f9410e3114e8d8586067a41fdaef55a173d17c2f5157f37f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.FORWARD-opcode_PUSH32]", + "fixture_hash": "0x7178607ab78c3720b8657af5e75500e827f8a54c3a96ff044f3c72c0032371be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH2]", + "fixture_hash": "0x4aaf2c1ebe2c736d284c48240ae3240e683401c6aa76fca284b3aa3874d4ba90", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH3]", + "fixture_hash": "0x58e1885b8f96a89816d5e570799905e5e797710bc71dc0ebbfaaacd3df3291b3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH4]", + "fixture_hash": "0x9e6602de85aaf1f465da62ec6387660a2c3c8fac6f90dc843878a5190d9c34", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH5]", + "fixture_hash": "0xf5f75cdffe7bbdc5b2f904b42cdf0a3867db784e1849271aff238b38ababfe6a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH6]", + "fixture_hash": "0xe4a65eaf17761a7e798a7686152b23b703079a5108c6fe9a6c22ccc8932f2a69", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH7]", + "fixture_hash": "0x148a753bac24719919fb2bf0428891fc77727a95d4ea29aa86f4cd812301f3a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH8]", + "fixture_hash": "0xede29ec09cbb29718da49916a86cd9f9349c447bf4565752bdfa6a09b48a788b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH9]", + "fixture_hash": "0xdd70405cdc5e6adb542a64f85219373a5f60ff51f85a4e45edcc6aacbd6fed54", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH10]", + "fixture_hash": "0xcf5452693363d4eb5b0f9cfe611bc097cf3c284e04494a4a3279d772e3826e2a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH11]", + "fixture_hash": "0x690a8c359b07e7119cab343d230ed8278073c311a250bdd426e87f3e1e95490b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH12]", + "fixture_hash": "0xea530cd637390d88fb766ddc94271af8cea6d1023aeeaf1c8da7f7aaa88120dd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH13]", + "fixture_hash": "0xa10c79ecf47d18098f9f8f7e5bcb2f3857691c4dd90fcc1e5d5c6ebe24bcdb07", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH14]", + "fixture_hash": "0xf0bb0185d7a87c055380795858cf7d03c12dc874f67ed2ef498b6d1bbf991cbd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH15]", + "fixture_hash": "0xb94d6c11a9c087ac3ad96d0fbd073faa5f711586ad18c54629a9dbe3b16bf1a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH16]", + "fixture_hash": "0x2103e64b893747d3382b7ee0e82900026b6b80672aa95c5667d5fb9efadd25e8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH17]", + "fixture_hash": "0x68579580525dc070097ade5dc99b966ff431eab904a3df2e3dee0ef710db09c0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH18]", + "fixture_hash": "0x3aa0c17d9071bb33f53c9932bf7918fb387b60541fbf3b869f08bbeafa61f76a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH19]", + "fixture_hash": "0x39731c4c98cdbcc9e9fd013f8c365027f0f45ee4d2641dd43043d9b5673f85da", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH20]", + "fixture_hash": "0x88997952bcdad662db9a1fcdf8fe9c0b07c1bc5f6d857a1cc85f67da3e66cb40", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH21]", + "fixture_hash": "0x7346e4969459b82d93cd7c99a9a2d3b7d2cb0d2f8347d06a8eab3a1b009ef407", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH22]", + "fixture_hash": "0x83429ac8ecf236bbf15594bc661abede2a75cffc3f4985f06bce80c64da06d54", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH23]", + "fixture_hash": "0x999fa5d924ef90dff151880ceb77267f3b59fbffa1759afd6d3ce11f346ea360", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH24]", + "fixture_hash": "0x360855e38b4ad1e1ef5c457e8352b3f38b6f108694f9f1aa23d7ef97f8136c84", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH25]", + "fixture_hash": "0xacf2ae8b161ad126c0bfc6ff573ac16bb74c8356ebe4d0c1b62ac61b54221cd0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH26]", + "fixture_hash": "0x1d780837aa7c8339bdea24e21bc14d01c08c5df05b9e7db96476a517ce5f6921", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH27]", + "fixture_hash": "0x65e58c97d74cf43c6a8a2cc463864faf996c908e30edafc02782e54f38934af4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH28]", + "fixture_hash": "0xc9a38a978eb1fc350c3ff35e125ea1da645ad62c3331546a420c383983d70a41", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH29]", + "fixture_hash": "0xbea0c24dca41c811edb4f7124c001d334e864095b47de5416dd98f99362ce3e3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH30]", + "fixture_hash": "0xb0194fb4a75a11772503cae99a2c0d3df492d4c3b56a97bdeb8e711229733fe0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH31]", + "fixture_hash": "0xb87b1185592de04840173f2206394b9ef52b3ae316b62dcbb355544c5ba6395e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_n[fork_CancunEIP7692-eof_test-data_portion_start-jump_JumpDirection.BACKWARD-opcode_PUSH32]", + "fixture_hash": "0xbe6da5bd9d73dec200319537fa5ae755527dc1c810a2d8d3711c6670bfedf93d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_rjumpi[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x8a426a0e077dd39ca4c428e5c98764d4f912a511b5dd6e8d74ff83f480b4311", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_truncated_rjump_2[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3df11f7fdc1748b9b54121003eca5684e317bd6e186549fcb4a01f822fabae27", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_truncated_rjump_2.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative_with_data[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x9d43cb65ba78eb2c62b8082f7d06f6d8b264acfd2707b52c6869615b5dda4bd4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative_with_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_before_header[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x8a7457a894ea013987d04c1ecb9e024e647293405664d6f840a480a1f8866a5d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_before_header.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_returncontract[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x7cc11d85000b130cf767172719785b61f3ecfd8c3df08060ee9ef9b3f6d92eb1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_returncontract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_zero[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x68e8f352175afefbb77008b578149258d230068df78c5c80a20a22c1d51047fb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_unreachable_code[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x263d0905519cd5d1e843dc21f2538a88c9cf58d8a4686634448e962fbb1bf530", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_unreachable_code.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_outside_other_section_before[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xedab3947fc7cf86017116eaa83d5b65f5cb835d5a84b4860a76394a64bd63def", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_outside_other_section_before.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xfc71301039485cc0eb3388b1164f294e5228c02e07a36184233b42e572f27e5c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_max_bytecode_size[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xfb075b3e29b303ddb43ccde0ee33d2dd8fbc21c92d7da64c257d0b87799a84ef", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_max_bytecode_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_backwards_reference_only[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xe12d102b0c8942dde883cb8e47d4f13b073a086632db17199a5560f287ada857", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_backwards_reference_only.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_to_code_end[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xe5b134cee8d3232a249b29736e64efac0a240fe4707cc86f1975397da347706", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_to_code_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_truncated_rjump[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x92db468545858eea777eca26db688cc1c86a6556b0aafe6109426160cb7f3975", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_truncated_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_rjump[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5e375f9e98fe1c453bfffcc000857d92be11733b0cb2b06528c7ac66bd595513", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_eofcreate[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xf5d6af2cc8275ba90bca4b41f14510fee34c2e343033898a475ff0a84b219ad5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_self[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xfee827ba77ccc66cfa58d838826c02f3430634bba7ce84af3ab9078e60b5a788", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_swapn[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3c0f8b93e2c9cd5fb41a3f186fb046cfbaa19634bccdceb2b4096e9efb06ffbb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_swapn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_header[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x7a1f1c6bc6a450a43afbb6a920c160f67067aedf192025109e5432c8f1426cef", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_header.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_stack_height_diff_2[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xcf59baf76de10bd5c273e0806b539d85c5ee03852cc4575dc233711fcdc9ad2f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_stack_height_diff_2.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_self_remaining_code[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xe2966b3a8318424fbf1d40cb54c58241b8351519cb3d545f4b759e30e3cee11e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_self_remaining_code.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD]", + "fixture_hash": "0xefa8bb142064ef0e2092e9ce11938f51b1a23cdef885a2abeb3318c8d50f1805", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD]", + "fixture_hash": "0x5dad4927787b12809c11a4006b1abce62b42a851fc785e18366c3ad1f796d929", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_self_data_portion[fork_CancunEIP7692-eof_test-offset_1]", + "fixture_hash": "0x50a996d2367968887f186b3d9543b0f9cb868ad74a323598fc7813615f0c04e9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_self_data_portion[fork_CancunEIP7692-eof_test-offset_2]", + "fixture_hash": "0xbbc3b3ea3e71b7f4848d6b839647fd0774f6799c627d4adcb76202cb9ab3de2c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_into_data[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x9056e1b932fa4552ed51ad8210fc4d9bc77da28255063873649d75c640456634", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_into_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_data[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0x9ff293234cf686d8b5a6cb1d9c3a9bc7cc8da7e605ba2e9a26981b84b4d98db2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_data[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x22d5118837f6a7946150836883e0b7655fbcf764c8bf3d0970144a6953ce0064", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_data[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0x4934ac291d21daae67bb57980b6e2f1160825dcf79b6e3a8b5129dd0466d77e7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_forwards[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x56b11c1bf5652adb628a429e4f9497a090e434409ef440a67f6a854d5011dedf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3c092028bb4137792dce7facbc776715503bc4349e2ec5ff99c1736977fc355b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_callf[fork_CancunEIP7692-eof_test-data_portion_end-t1i0]", + "fixture_hash": "0x1201252ebfabe1592fcd82f42c5bd8d3570dcbfe6cbb2f83b503c8611324bdc1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_callf[fork_CancunEIP7692-eof_test-data_portion_end-t256i0]", + "fixture_hash": "0x152dd27e7530df127bed9a136ee148c6ec845446d4958986973c99ad88c9f8f0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_callf[fork_CancunEIP7692-eof_test-data_portion_end-t256i255]", + "fixture_hash": "0xcdbb0d1de26dc7d211d2611ff495610e4a2f214b557561c7dea74ca88de21478", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_callf[fork_CancunEIP7692-eof_test-data_portion_start-t1i0]", + "fixture_hash": "0x31a68516752a8c857488b86a10cf68d3d585d3e3dd3ce0fddc80e41c8ab7816c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_callf[fork_CancunEIP7692-eof_test-data_portion_start-t256i0]", + "fixture_hash": "0xb3adf2823f73281f0f17027d608bffd621abf3e7ff1a82d82526cd8c5709b977", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_callf[fork_CancunEIP7692-eof_test-data_portion_start-t256i255]", + "fixture_hash": "0x15d84fcacc6f1abdd0832f863b63d6b0a664e1479e20cc4fe6da0fed61db84e2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjump_into_exchange[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0xc226f7418329da683cc377553e7ece06888ffa32896d0407b896b6edd6c3d1df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjump_into_exchange.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjump_into_exchange[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0xc226f7418329da683cc377553e7ece06888ffa32896d0407b896b6edd6c3d1df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjump_into_exchange.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjump_into_exchange[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0xc226f7418329da683cc377553e7ece06888ffa32896d0407b896b6edd6c3d1df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjump_into_exchange.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_backwards[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x4b17d0386d8b5ea194e0a65871db25cbf5b6ff5c6bc12202ace21a2a1ea52a58", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_skips_stack_underflow[fork_CancunEIP7692-eof_test-t1]", + "fixture_hash": "0xa8c9e140daeb1d5e3977b43e7a11552eee4e195a8a0afac2e5170b826b6fd95b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_skips_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_skips_stack_underflow[fork_CancunEIP7692-eof_test-t256]", + "fixture_hash": "0xbc5f0b22c9b89f21f91b456e899794846bbca37edb37db4dcc36a9bd182e97e8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_skips_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_size_3[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x1413966ace4c08ee5066966374f54c97ce03c6a6981362664fe9cb2ee9ff92c6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_size_3.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH2]", + "fixture_hash": "0x46b0086271e97569780472f3fd5351c4733770a7648c32541f8854ad4849cf0f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH3]", + "fixture_hash": "0xef4f7bfc6f8f6ae99a9a300b992d0a4277a5d4d04d448bf345e98e96690926f6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH4]", + "fixture_hash": "0xe8bcd17d3f8566de8e90377e7aae18e6d3b8b899d4a471ebe86b023f2297a413", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH5]", + "fixture_hash": "0xdfae71a14fa5dc3a6de704a8dda42ca0f4b5ba048769ed09495ccd3cc356894f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH6]", + "fixture_hash": "0xd62ec2b3b12f78f82e5007bdd5040b520b74aef18cd546c8e402c117a26a42d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH7]", + "fixture_hash": "0x40a7bf2d4ac3ac0c44a7c033b2f4410949735d831996713825a996b9ba20f1fd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH8]", + "fixture_hash": "0x3c3ec91344b0c1a8552668ba1be09aa0dbbeeeeeaa5522e93e6a71021b626699", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH9]", + "fixture_hash": "0xf9b3ae40273dddab51cda5df3cd907e6023359aaab83f52ec93da4a76a97f8c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH10]", + "fixture_hash": "0x10744ed634a276ebc1f6acb91564366a92994624dc9df93f68fd1eb7a677d58", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH11]", + "fixture_hash": "0xaae317726fd4b1663628020acc947bd0900d0b7f36b664bb5bc680e7df1390b4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH12]", + "fixture_hash": "0x7218b6feb7bb24bdeec1517af276e7f00f2151d347af5a2fa5ed72611e56f872", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH13]", + "fixture_hash": "0x380e8a320348203691fde41ef0b87c3468e9a4d2e8dd25c09a4aa594d6f5c699", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH14]", + "fixture_hash": "0xe779e6fb3239c128ca92295db78c857b7b167cbf6de70262eceae8f3fdf0699", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH15]", + "fixture_hash": "0x375d71e904b74a0d222b464b12c85644f4c1a741f1ccbd1aa7cc0eb2ae55af8c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH16]", + "fixture_hash": "0x1090ff0d0336c8fdb8db957a81e7d20c407290e789982e23001e71f5c4e191ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH17]", + "fixture_hash": "0x25a7023a9caa8747b28f77604e597c30ad1b59e7c3bc8e707db174a104cd81e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH18]", + "fixture_hash": "0x502d8994f79bacff6ca7e12d4bfda5d1bd82c84f8af65a534b5a2297f1b1b7e9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH19]", + "fixture_hash": "0xe46416f21b64cf31aa66f28b18d645863e86701ab2fc528e9e762fd7d3a9321e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH20]", + "fixture_hash": "0xa302667969788f3f78a18b561dcb47e1225480dd6444b46c0f2d871970ad3fd7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH21]", + "fixture_hash": "0x509b7db808b2f2b5811d53842a118f87d04df001b3d15d45f460edc4d4eb4f7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH22]", + "fixture_hash": "0x8f92ccc2ac9abaf7e4bbe09866d9cbbdcef9f50589d26ec39114d863cc98c685", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH23]", + "fixture_hash": "0x8869821d8221374b6bbce72289ce4589fe3f31bc5f920dda25c0bd8c428c0485", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH24]", + "fixture_hash": "0x6257c4fd3a94c83d014a375c373bfc7c1af878a54e21d5cb8020d8f10634650a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH25]", + "fixture_hash": "0x7b97e8511c8a1f6ba938c96d7e54a342c6da00ea030bf5ba70a855a56eb58e5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH26]", + "fixture_hash": "0x9add0398eb2f2e5f46827653625e4296d636b27a41ad9292e1d9b99d1e6fd1f0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH27]", + "fixture_hash": "0xa31180a9636b78344a08537c192daafb850379725aaa9f3f77e72abbf99e0150", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH28]", + "fixture_hash": "0x7b321c715005df27d43010c5a2fc920cc490b3fb1e6f4e5f6a106e57fce57fc7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH29]", + "fixture_hash": "0x5997e662f12e89a242429aa5a3f85348bca7fd0dfa5571a965344f6ef7552d57", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH30]", + "fixture_hash": "0x4ef7fb0ecfe4ffc00479f5250aa8727f505a0a8251497eef3f3e3d2cd054afdf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH31]", + "fixture_hash": "0xf2bb77ef263f09b198bb50f9573e65d25f144985d0a73450ae1a0299cfcffa61", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t1i0-opcode_PUSH32]", + "fixture_hash": "0xfee55e295522f228943f731518d171bd1cbcce20d7ad6fe86453957347dcef64", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH2]", + "fixture_hash": "0x62fda71172e20bafd5a28af09fe5d9889c25e41a1a92ffa4f6ba24ff0dae3bc3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH3]", + "fixture_hash": "0x98689c54f03382af2bd456266cc5b57a91aed8ec6205128d2dd2520d7b2e81cd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH4]", + "fixture_hash": "0x727dc0ecc7901b28c0b9e40a6080f50d342f8e4376fc9f9af4a15ef045e1e644", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH5]", + "fixture_hash": "0x6586c9769d423117036f45f1c5dce17c95e8d92ff862788ba030e4ae5f9b52c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH6]", + "fixture_hash": "0x5eab4605a1fe2062cc984dd6e041d69f4cb142fb43aae9fcaa8835b97c0cf57a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH7]", + "fixture_hash": "0x307ca5da97e402a8c5d826cd109593f948b7fc0c539dccd70bb5bb41f55f4b2d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH8]", + "fixture_hash": "0xd2cd09851c5c13ac2311f1f0e94109b3b5cf7eb3dfb2b2d48faf738a0fa63181", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH9]", + "fixture_hash": "0x3705d683934607c950e943543baa84ff5cc3a9a0a7c688dcf7e91fa9bcb508e6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH10]", + "fixture_hash": "0x49811e69f52abdd661d86b5b0d7871fc81611e3d04c97872f90ffaf4c81dfad1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH11]", + "fixture_hash": "0x93051645baac165cfcb9a2de4067309f18d6e250c82ebd93a774583e5f813a99", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH12]", + "fixture_hash": "0xfef51cb449668cfbdedf873b21b7656aa0cd205cf231201f40dc214207b4edd2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH13]", + "fixture_hash": "0x7531380621013d242441ed5e5504ed3cfa3f094ecbc841e2266f40c5d5ab267e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH14]", + "fixture_hash": "0x14a275792093f185706db69273bbb72b20f2cc8f171379faf62a1cd8dc865dfc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH15]", + "fixture_hash": "0xa47e1b19331d605e8f4c04485a61ee673a32e24876877a68fe6986f6f85404fe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH16]", + "fixture_hash": "0xa1edfd7e4ad5750395d5a7d72fb901d1ab5fdf9e4d792d753150b218b94e91e7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH17]", + "fixture_hash": "0x36298ac9cb8e90303a2a44006368356f761951d25b00d25408d67c3cdddc698a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH18]", + "fixture_hash": "0x191eeafbfe65c09be1f5c7c8b55650fc5efbefb88e42647b74bd452a7f5cb612", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH19]", + "fixture_hash": "0xf161d5e83e492962c5ae6c49b7cdce928c2ce8ebacf901bc1476ab8442fc4ea1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH20]", + "fixture_hash": "0x9bc04050404a0f55c2fcec462ebbc4cfa4e5e43bf5ae4360dc7123b50ddea0ea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH21]", + "fixture_hash": "0x235cf31f35bf4377996d9b562bcefe0e827b0ecf70cc7e8ff85aa6ef3983137c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH22]", + "fixture_hash": "0x536b02ae0c5e48aee41d8c50f85da12f40804b65bd4591b9162ef031493c09b9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH23]", + "fixture_hash": "0x5537e7ae120107f05f0c9874446494025f68833ecd6cdd4f0a7609629d41023d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH24]", + "fixture_hash": "0xf53f4416253965bf4efc082f4150e48d952bd8fc0aa8fe03a3f91b25c7453f55", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH25]", + "fixture_hash": "0xb0a1a40d498db5aa035917cff4bbed5cd0c753236f9240768de56e6ba12286ae", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH26]", + "fixture_hash": "0x95a01d50c2f4b75ca943ee5927453648c6b79801161a06ce4f74349034d368ab", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH27]", + "fixture_hash": "0xe82b35e56d8b4a85e168c739828d2a5c172cf7baf48a02045746a2acfb2df713", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH28]", + "fixture_hash": "0xa8e445996031539d78dcf54ac810323d381a783773cf5b02a47b59a2a6622985", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH29]", + "fixture_hash": "0xa1fbb50fcf0bb7312bc30b76fcdd20d38cb59aa00cff98b4dcc5f78f39b7940b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH30]", + "fixture_hash": "0xcd8ac09bcc3ad9a513c27f3129fdff06ba107ac62a36171c61f156265d8c3a40", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH31]", + "fixture_hash": "0x10ad5a103c5e66b4496c37a4ff5a0a47b3afc92fd5ed0f33f5c701dcdf99898f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i0-opcode_PUSH32]", + "fixture_hash": "0xcd6cc252889df38deba0e2c4864cde5743e4ebfbc5508d56a31f6a381780a780", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH2]", + "fixture_hash": "0x24eb646fef0100af30d6746a86e8044184919e2907fda2a33de257a382363c93", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH3]", + "fixture_hash": "0xe939ad5bdbe3572cec1dfc363fb22325e1a9c11c849c6ee15ff46e152b4735a9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH4]", + "fixture_hash": "0xeb88f44c9b8a1b16bfcabcaf92b0c5c5de70db1353c1d386f290eb2d7a528e8d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH5]", + "fixture_hash": "0x5785919c8e7dd352bb3df281fda725aba6a1bf4b543823669d74269bc8bfd1b2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH6]", + "fixture_hash": "0xb46a8d58e71200e1cebd5477bb9419239e7c55d17ef23a8f0c487ea5906c35d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH7]", + "fixture_hash": "0xf586daf4467f4944958e1b8a9afe70ce92186896aaf18ed5771fac4aaf267448", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH8]", + "fixture_hash": "0xe5a613986c42c0950441ddf6425041e0e5baba882e5957b161cb87b537200d06", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH9]", + "fixture_hash": "0x81b9562a25cdf9c805e04f6ff2904422817e3e54e595a81db2347a49d63b2828", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH10]", + "fixture_hash": "0x3aac54f509f7e54b90a939a8f6cb278252d0db7405fd35b68c94b42943b3c65a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH11]", + "fixture_hash": "0x9a2ef649e31b8a6e349dd3bd51a3178ca7ab880eba8826f1c75fea0e76a025d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH12]", + "fixture_hash": "0xc8e4150dc58b1c4c9e36d83f2c68064045812b77ef2ba05b94dd9d66d9e1babe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH13]", + "fixture_hash": "0x11382b77bf016be4710ce79c94e936b3340d8a314f61f483405afdf1c0fe908e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH14]", + "fixture_hash": "0x51575b424fe7a07500aa74e5b5a1a3e41623590681219996b5c12505209e492a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH15]", + "fixture_hash": "0x29a62cf593dc82aa4c346bee7f416f2a5aa2c59a33ec03cd344bbc6a2ab66d8d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH16]", + "fixture_hash": "0x7b2d05ab5081cd643a9754a79c7933cb1d8dd1759978a4e9e550470c1c3e7958", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH17]", + "fixture_hash": "0x2ae1be0e19be77ed43b6bb0328f67c37000886651ee2ab3638ee3fbc46374f1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH18]", + "fixture_hash": "0xfd9fdae46581b7b019f45540dc5180c83d0c0e3f8b6572d41c8cd8848fbfe292", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH19]", + "fixture_hash": "0x3b3e02a3972548aa3bbc81c8d396c916be543e692a6b972b78ebdf7f0250d815", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH20]", + "fixture_hash": "0x1a376ec099e9861172d51145137255d01659ade701a8e46510926c021eab2d42", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH21]", + "fixture_hash": "0x4702d0ef49ba3d2fcd65a27131c5bf2a441c0fd15b09f7ce64aa4ff22d148edd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH22]", + "fixture_hash": "0x7694b34eb969054443b7be0573d520fc9ab9ac5c1a94e3b52389b3141ec9d641", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH23]", + "fixture_hash": "0x15ce1b491f29b0fa5ad4fe61917f19cd2737cba9f94851419990a1c73972ff31", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH24]", + "fixture_hash": "0x4af4e9746d4f785c13f82ab00883036639339808f1bba1b398a2764839f3361f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH25]", + "fixture_hash": "0x8060d43f7bdda3f14b97e5e6afa05c722238ea1596b9c4a187ced1d4ef66420f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH26]", + "fixture_hash": "0x86074aec351e803990cfbc5fc28dc68d1153dc8748dbacbb472257202110ee0c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH27]", + "fixture_hash": "0xcb60a1aa4e7efdd28a419fa61caf8914c49029d7b90c98641a4d8df29744d898", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH28]", + "fixture_hash": "0xe9f23fa592e516c2a5ea752604c9dad5ac0b27c3a64b105ad430b37d2259a7ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH29]", + "fixture_hash": "0x8c75e5d60ac164befa267cb35d5fa8f246a7a8ca0c4c24bc24b5d0f00326588a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH30]", + "fixture_hash": "0xcb63393c9f6da3f42e94317aab676bc9c8d9de70499a27df7b7e5e6182dc0106", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH31]", + "fixture_hash": "0x621e2f149fb624fccb706142d814fab4ee7c92179973cbc6c380e0081e6d256", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_end-t256i255-opcode_PUSH32]", + "fixture_hash": "0x30c6e1edd29c0bba7317573ca4bce8cb98151956445b7e9650fe046c19872571", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH2]", + "fixture_hash": "0xf6d15614f76f2f260974cf756a2e49f6f698d67a6c297bce7174c697f3c94782", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH3]", + "fixture_hash": "0xb7c296bed7ad7303adfa02833413c0f8e5db68e70c6b96ed5a90ff8189c90bb7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH4]", + "fixture_hash": "0x6fdf275af562654246af285beb88ab8f1276b6e4909783e0bfe37a22c13b229e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH5]", + "fixture_hash": "0xa9e9c8e66cb38dc2b8455911bd545550bad08bb7de90f6caff3b8b29f0f823fb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH6]", + "fixture_hash": "0x9e99a6b66813ef678d9a8e62073fd4d649044421a0dc0df0dfd2789ced7278c3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH7]", + "fixture_hash": "0x63f4da822f619deba5c8619d9d6b8ece07c264a1b27372b1eee372adf1557329", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH8]", + "fixture_hash": "0xc05f7b368192b956a8a5ae77a992a6fc6a643f7a366fd4530d0856eb70211fb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH9]", + "fixture_hash": "0xd5eed030cd6fc7d6b74ab0c78de4bb163859c075425737d832ee4018a363e1f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH10]", + "fixture_hash": "0x4937853007657938f24cc150fac978fd9b7ce51768b9e022b9f7c05bc1f34611", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH11]", + "fixture_hash": "0x5c05dcf9c13b1fef8d47cea6f6a2d6492e08935e55d8ebc9bef25df3a56c4800", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH12]", + "fixture_hash": "0xfb07552f60f0231a2a4992a6f9ff2027767770a5505e5d02a4516a6f0ed30c34", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH13]", + "fixture_hash": "0xe0f549f66e4f2ec95e3069993c90e6fc095c2b0354cc17f00cef74af9bdbf12c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH14]", + "fixture_hash": "0x14a0d1d2f721a927bdb070fba9d2683c8342871233de67a4d3535e1595a4d9e5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH15]", + "fixture_hash": "0x608d2494e6d4fbc0dd05ecfcc3c2853abab33fe63a7ade756e8a747f2ba8d9ce", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH16]", + "fixture_hash": "0xc9085230710a7da1746fe4b30123a14e0b3a13ab2b071de4137803fe50221be4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH17]", + "fixture_hash": "0x9cf43cccebe600471367ba0770eb2949bb8a045e9bec035ee2349d62dba20f6a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH18]", + "fixture_hash": "0xe4a2d830520ed7aca3f2b1a7e8d5b22bc72014b4ee62c3ffbb3c0edc016a4cbc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH19]", + "fixture_hash": "0x956350444b7e38231b71582030af747fb53e3a278018c7201983f49696b532a0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH20]", + "fixture_hash": "0x5f889ab8ac33335a6683f7c663e1bbf63a9d469c5a1f28d033e4d228a0d93f0d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH21]", + "fixture_hash": "0xe02e7d05f5a1ec74b022021662f5e522b604f7e21dcd36e52a11c8ba0d113d4a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH22]", + "fixture_hash": "0x6caa969de5693c3c075efbb381fde559aa45c18f51faeda81aa90a9ff5e07d7f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH23]", + "fixture_hash": "0x3af01d4b942466c6866b087d891e092c3120bdc50ffaca68e0a98371b7e1c4b1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH24]", + "fixture_hash": "0x155cefbb4f90a97e066ae98de2f6af9d7b4408de69f41b5734f40f113f54eda7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH25]", + "fixture_hash": "0xa0a6a701d6e905ff8c525c441102242b77abdffdb56052e90c3c03c353dd64a8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH26]", + "fixture_hash": "0x6bfd3544439df41e6be6f4ffcc3df2bfed8f322e2d81c6c9638bf2e2096df0ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH27]", + "fixture_hash": "0xc8bc014b5f33269dd42b6bb823a71bb83313fb462d29f8396f6ea89a5de602c7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH28]", + "fixture_hash": "0x56afa99a0015deddf75039f9fb498b6aabbf3774b481889c91e39b649f45c18a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH29]", + "fixture_hash": "0xb1accb2052cf7c4baa928461356b1d95a665b4214f54c6a4e597d08e6ee1d162", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH30]", + "fixture_hash": "0xa033ed3573edbd38fd77960996ee3bf6dc50549fda04cf3c68ddd661e9650a21", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH31]", + "fixture_hash": "0x5848171cdbe59ba10927ca35e02e6d7b366fe026121b4fedb73790ddb34489f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t1i0-opcode_PUSH32]", + "fixture_hash": "0xd304d60422b7f54513268ade047e8d6baf5b35c4054dfb1afc7aacc43e9048af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH2]", + "fixture_hash": "0x86bf04c49207a0574b892536d6a295e9f34c67237a9634e99e45f7e933ba9760", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH3]", + "fixture_hash": "0x5b85268b1336f52f712ff089721b63ea9224a04619a6cb1b56affa90a576ed6c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH4]", + "fixture_hash": "0x87f062910487a5380d78e8649ccbe5610961cbee8aa4fb884d1157cf1263fde2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH5]", + "fixture_hash": "0xa0cca807740d581f2f8841c0b9bdc839ea1b32ee5cfcb4be0a7feb72a0f8cb9d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH6]", + "fixture_hash": "0x7896f29836fab6a2077a2b452a19eb4d3bcca21c30200caf8ca6403a616f320c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH7]", + "fixture_hash": "0xed0e61ef34c484b002c4929b0af67cbeca2199f15675bde5c55175c999ef6c90", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH8]", + "fixture_hash": "0xa2608b1e9034b334b5713d1035db0999528f523cfaaee6b51d6662f3678cfd48", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH9]", + "fixture_hash": "0xe0cd3b4c4b06d11103d4e4e01a86f26946b31724c358d8dc965ef9d20eb0cfa0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH10]", + "fixture_hash": "0xbd2477172e8fc69c6c8121c0ab6ef64e0a8d591ae7d9d3b91bd01e7274fd16e7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH11]", + "fixture_hash": "0x6417cf530715a0fe8ea5b2f89ed8e875fa91c6f77db3fca47b9177170164c8e7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH12]", + "fixture_hash": "0xacf9fec2dc75e380c87d94882ec8d04572595e0a03e1421228969715b85565a2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH13]", + "fixture_hash": "0xf860013646adf4b22f143b3ea78c59bf1587f2807dd5fe14b41e2e076ffc7bbe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH14]", + "fixture_hash": "0x36d15d94176b618f5441044d4f22c3421e94d56553c882915af72a250c0bf206", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH15]", + "fixture_hash": "0x830a8d26cb3b6a09721da8f44992a4ff8c93e52a21f91baf6c39e190c6ceb005", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH16]", + "fixture_hash": "0xe9d19e7533ec39b8cd893c342e51fe7873eb9e7a0afa296d9e0d8bb7290269e5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH17]", + "fixture_hash": "0x1c8624be21d15f3a175c89a4439ed18cf8de8d26f8e52acc75ad84b38b5be1b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH18]", + "fixture_hash": "0x5999faab0c001b8c66c749a1e0094dc3099502ddd1aa9b5c33f5f6ec3cc02e31", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH19]", + "fixture_hash": "0x9260388edf2d02a6d55726310593007aa4ec6e0adb351580c2e20c1d417c6e45", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH20]", + "fixture_hash": "0x2ddbbb899de0d36765d8eb90a4c026e83cc25ccf2493262749a2aeb25de8e995", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH21]", + "fixture_hash": "0x48f9840c9f6c0ca2f043bb65da134b723ef65d6f30a7a54b1e854e2ceae2822d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH22]", + "fixture_hash": "0x3166f1194d0534e5584762484f31e1b6031f6aaf853a5b0e2407eb62edab6dcf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH23]", + "fixture_hash": "0xc51782c1a0a4f3a90c9acbac3b95069ac1d9b0bb30eec65b7a238ee35a93c366", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH24]", + "fixture_hash": "0x7267569570202f7e705dc9c5efc317c98d2b1c1c564b52115ec63e174bdc6320", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH25]", + "fixture_hash": "0x8de1aa873813b7707f1999f1f2fd4d6cfb058993c80221e8d9dfee9433527f30", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH26]", + "fixture_hash": "0xc909610892db8354d8aa53acd8b9c22c911ee8556f1dca8ed020426aa8eb4ea9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH27]", + "fixture_hash": "0x50cc50ac6d539244fe99a6427c98002cc1fe508fcb4a1779e1bea426ee48202f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH28]", + "fixture_hash": "0xc7f19115c5bd96048b3753ea70341970b866cf191fec9d64afc0f2ffa4274b16", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH29]", + "fixture_hash": "0x2614cde305e59f9b8fe05b2bede9c81588208996752e580be76f0e8b2df2761e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH30]", + "fixture_hash": "0x7ce3b61c2b8f7d660f9f97e5ae452bc2a97d6111c1c4d2751cd397815d577839", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH31]", + "fixture_hash": "0x49edeabf9bef83333373850c42a0c6f483bd9c9708e82a3f387b72ea99e456f1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i0-opcode_PUSH32]", + "fixture_hash": "0xa7c243b316e1b8e4b33ca2adeb2dc5d5bf302aefc1afc992ab0eaa538348ac16", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH2]", + "fixture_hash": "0xa991838751ac9fc4f6fac4d771d4e0f514adb4d16bf9a25a6e56eed7667be405", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH3]", + "fixture_hash": "0x84e9e43fe69382039594817f6243ffec9fdae368013c2d7366eec5dc68007250", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH4]", + "fixture_hash": "0x532827771dff935d22abd57e310bd96c1df21a7589b735063205407cb2dc9581", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH5]", + "fixture_hash": "0xf77dc18fb3be13b462bb277e223cb2cb350e94bfc4e2a3b04b8a6bb7d1b45103", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH6]", + "fixture_hash": "0x8f62049bffb4f8fd7c1a2f17ebab86019569ade41c954532eb2543c6d86fcef4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH7]", + "fixture_hash": "0x1fa823d03693a97e0ccb25dd05eba354b5a6da92f635845e28a0fd463f09f385", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH8]", + "fixture_hash": "0x54e68b5c6bcff48511d95776d2776a825af06185db7db4eed63f0d87366fc594", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH9]", + "fixture_hash": "0x408c4c01799ed1cbdc71a79d36e7ad79d8e2aa650c2fa57c4dee51fcbc4254c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH10]", + "fixture_hash": "0x9108584db409fabe81d1c13d1b5387eae6e174ba5550ad065ea2f2c99ea82a58", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH11]", + "fixture_hash": "0x527b953bb728b5a2a6ae5a9b8047ec16f7f428f4f16ddb67a8364b5215ed3340", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH12]", + "fixture_hash": "0x520e6a08d58a1c3068a619c1f205d9accef685246ab8475d7ae455bc72b0f06", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH13]", + "fixture_hash": "0xd75c21d1926f6aa59d2294de15676cfef6bb166c6f38ac22e9af33911e7fafc3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH14]", + "fixture_hash": "0xf64df37113c08c234092790085b86b104c4295cab555ee7df04a1136d549a617", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH15]", + "fixture_hash": "0xb4c7d102588d3a40549770b6f54d636f61f908d3220ebf88d1db3840cde2bc5c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH16]", + "fixture_hash": "0xf49d35338379a62426460b93f48f9ac978bf63fc5fef82dc341bb076878004f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH17]", + "fixture_hash": "0x83b1bcea17ffff0d70c5e884746fc64190e2a1766e7310929c3d76b9b711763b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH18]", + "fixture_hash": "0xbc14e8c795eec645f976900a634e480209bef48e714663cc8e3668bb45bcdbc9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH19]", + "fixture_hash": "0x5d05c85112a59439bf6c3fba9100482d27874212108204d78f55ae9349f41965", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH20]", + "fixture_hash": "0xcdce524c2f593aff84eaf1127cacaca456a86319f299fe294d6c48670e4d8b29", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH21]", + "fixture_hash": "0xb720c7d2509c939cf8806f978cd3dc227324ed5013d2f231cb4c0a2d74dbd05b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH22]", + "fixture_hash": "0x2fb1d132fc663d7f047a5d616ff821ecf7e330fd3c895eb98de91fc8bab04491", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH23]", + "fixture_hash": "0x57bfa63fad801140d6270176e1fda141cac2e0f1333225e278ef6b581aba6096", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH24]", + "fixture_hash": "0xe8ad10b79ae2d3d29055bf474a28a6b84e77b1ed8b3024cd539f742ac3dc3ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH25]", + "fixture_hash": "0x7f5b6f219a86f7c7a7d62c9dee3b0a4a0423e6570868222b85ad9b60c8f0a8b9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH26]", + "fixture_hash": "0xa6c8bbbab388a4be354e3eaf4a76eb531a94793f3c86415cc4044448bb3b1128", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH27]", + "fixture_hash": "0x7626cc441d55f5aa93939155a8d7b537fde3a129a4f8ba0ccd6822551a03c2c9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH28]", + "fixture_hash": "0x15d7e3f5d6cd5a361c47914d7a03041c60ec0930fec5ed8d7429887dd2777933", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH29]", + "fixture_hash": "0x8c8d790a53ca4569961b654cf6a390b34c9918b89fd4e4acacbe1af09e9cef39", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH30]", + "fixture_hash": "0x28a991086664d58b6a62800bf1bdb67450ef75a3a88cb813a72403f37227c230", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH31]", + "fixture_hash": "0xf39e9b8630f3275f3eca410ff2dde8fe3c2c742025277b3445fbf44b59a11a17", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-data_portion_start-t256i255-opcode_PUSH32]", + "fixture_hash": "0x5b33be3a54b1d45e71fca5d1506652b9666c3818e149ec7e16d9990d7f553dff", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH2]", + "fixture_hash": "0x7cb65390c88b1d5ebd5ea722267ee5cb9bf24ef38eb77cc8c709ba7f404dc466", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH3]", + "fixture_hash": "0xb39cb58dd96388c5056dfb8d049d8b3b53a24c417573b13a3195f88ea795f637", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH4]", + "fixture_hash": "0xd307a985e4d6aaf0342cea199180047c1e51ff71422ffd1d07952705d1064af0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH5]", + "fixture_hash": "0x6150108b916f91637e26c23d8a2eaea66d638f250960053775d0467ab43d974d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH6]", + "fixture_hash": "0xa452811e1a0b08759fd810ce05bc70b94db341823c876b53180f14c8ffd84eda", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH7]", + "fixture_hash": "0x4913c445259b22e3e57a0d7f783bc3746a306d49eb2510bdd2a06973042424ff", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH8]", + "fixture_hash": "0xd88cb55efd3b2587b55ce16d9dbcd4db22250b3a726ee90fdcae94b125d24e50", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH9]", + "fixture_hash": "0xd2c634679dd903bfac585c58476bbf9e872db8f9d57136ce0aaf647bfa0b4039", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH10]", + "fixture_hash": "0xf5e0514eb9c71b50905198a76cf91022e977fa9551b13b36a9579fec0b7d4517", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH11]", + "fixture_hash": "0x35946524741ebd7bde83a7c81cb4cd670530f446072a79176d5eb29bd7c824c2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH12]", + "fixture_hash": "0x53c26ac7c0b068eafbcdb6d88bcb19f68bfbee205a0a99552ea722f93d3c5215", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH13]", + "fixture_hash": "0xf1ebb3e829f4b403a233d6460a39344d318b2c1294f860aa0ae733cd0eab9c9a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH14]", + "fixture_hash": "0xab182f74b848dc6d8a6ef3debf87b775ed149d3721f74958a70b139f6f350b9c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH15]", + "fixture_hash": "0x6ff800c4e0038ca44ee4129b164a5edb17e5cf1afad7490b643cca32e6c66e1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH16]", + "fixture_hash": "0x69891852213326e5c2aacb8c12d0769498023aaba74e9f2d19a99ba84113f80a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH17]", + "fixture_hash": "0x586f5d67ec798c527a801647246840c9836d10700d306f4df3d759ae9a8f1e00", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH18]", + "fixture_hash": "0x36c6e2c3df85efb809f19b82fe6be5744b5e69b43449f1962e9781a7577ce68e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH19]", + "fixture_hash": "0x7abef2f8f810987bcd55925b358b4a7ace3828598a18c6b9e5ee03023e0c18d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH20]", + "fixture_hash": "0x9c18a3bd8c0b17ae315ab4c75496f6fe2c2357be9f7d5298cff2ebff7dea5db0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH21]", + "fixture_hash": "0xeff39d0a680d6f3ceee96e5d7affd77d07eaa2d6437fc7cbc2265bce9070949e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH22]", + "fixture_hash": "0xd9a456fa974f7e7d6b331ec30e51cadc1312a57371b2424266b6a732cf0b9e9b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH23]", + "fixture_hash": "0xdf0b88c71d22f0d31e2b16a0323a9093390d5a930ff412b7c9818a381c699f63", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH24]", + "fixture_hash": "0xf5559d4c2ce24e17725d3c753f0091ecb486adff7467aa7218b50cad96873077", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH25]", + "fixture_hash": "0xb90388b656c76c5b492d5cd472e8c8be7fcc1c0292ee71215f30188fbf332981", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH26]", + "fixture_hash": "0xfb4571612f0e32527122bdd3b35f12894f0ec2c9860a74630aaf7f31615b0fcd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH27]", + "fixture_hash": "0xa56326b9079401ce4d56ed28c7eb1e740eb020a8a0eeaaa9fee82aaeb8aea8d5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH28]", + "fixture_hash": "0x6f6b0ecda2618074d78322d2bdaf25f1148e607dd6496ab4cca3073d0b75b53a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH29]", + "fixture_hash": "0x942e47397040508de34dd6584c68b6f640d1dd153ceb255d6f444eccbc5ccb8a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH30]", + "fixture_hash": "0x64c34542b44313e58ea2891aa02604154195c897d4d445ffc717d48c99fad7f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH31]", + "fixture_hash": "0x3c3c9cb590d5b4242485ea5d66b077de5018ba739d38e238a79b7a8b3307ef28", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t1i0-opcode_PUSH32]", + "fixture_hash": "0x50d1716ff47f5d37df2afe86fdc35b6e3e8129e63d62e0cc1cdcf718538e637c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH2]", + "fixture_hash": "0x62e58dc311d738e095dea4fee92364d792abdd6cd902fa0f4948ec8895f0102e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH3]", + "fixture_hash": "0x875eba08010a1f17ad65af1b3ffc8329237afa38be68ee956bded28bfbe7de97", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH4]", + "fixture_hash": "0x3404acba0370622d932f1fa5e2276abd0f1044159ffe0b1f0b171bde836faf07", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH5]", + "fixture_hash": "0x38d17c0eaa58fc968e8e6303a262158ee38d5dc6eebf5982ddde25c1e9d2e03", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH6]", + "fixture_hash": "0x8abbbe09e146d8a3d4676683d278be52e00abe32c40a2e2b431edc3689e06e5b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH7]", + "fixture_hash": "0x9a3efb9c0fdea5ceaae76de8f028d5558926c0aeb3380e079f062c6e74d63263", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH8]", + "fixture_hash": "0x1186dcdf038af94f504ff8a506704859a09d15be2ba0127ed06a4e4f52dd0448", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH9]", + "fixture_hash": "0xdcfc2162dfb75150c67ba9addb83a952c12f7e5738414b96101a167590355735", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH10]", + "fixture_hash": "0x23fefc034a750ea4593de84654ff7bfae23391fe3a192e2ea26bdbdbabfb5487", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH11]", + "fixture_hash": "0xa30549730e07a79f425d6e7c7500cbf830635a22c0a211bad76e72f8f4c3f05e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH12]", + "fixture_hash": "0x4f3fca0f0e49a923cf5aab42c908701621af2be527f57081f54f493ef3269d18", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH13]", + "fixture_hash": "0xd3fa5ae93b00dccf1007396cdffb435096cbb13cd22d7709d722c74a4fedd47a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH14]", + "fixture_hash": "0x3c00f89b6815ad38aaa5b1ae745383051844d26da53e98c43f4c61272cfadae5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH15]", + "fixture_hash": "0x3bab8ae20d549ad084dc542a4eb77ee2191b723e7bea44ad4694b6ff55c1c79e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH16]", + "fixture_hash": "0xcf4a52f64bbeb2fb2bb86e76ff3addc5dca869c88a4f88026ca23f3e34d7357f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH17]", + "fixture_hash": "0xac6c0f68faa42aaded0c39cb4264c4d9a6c105409f1b33c7c4018fc0eb0b1173", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH18]", + "fixture_hash": "0x1bd8400bd4ebba313818dee7459319f87a5dda677cf4a95124e077d2138d8b27", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH19]", + "fixture_hash": "0x81c7004415d9defcf8b86c27131f4ee8610e165c17f755a2e6703bbf172824f2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH20]", + "fixture_hash": "0x20c952085f32528068b5abcaf8e61cfda9d27ff706f454b8f67bda0360d7494d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH21]", + "fixture_hash": "0x32faacaf21d3e5a9e0c6ba0cb08abafe05945e7e251be96df10984f792a3372f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH22]", + "fixture_hash": "0xeb351673c873cfd370c8e91d0fc653c90d409b59e216a778047b28d559fe5aeb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH23]", + "fixture_hash": "0x2406d895273cbbce0d3873706c9f8e78c8fb6e08598e484f4e855342f029872f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH24]", + "fixture_hash": "0xaa148e6e4172bbb18179d59f0b4fa4715dfb9cbe73209f3cb7ca8fdf91dac2c2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH25]", + "fixture_hash": "0xe7369c8962f3d68d9385ef67505c714318657ed625f9485b758393396c8aec94", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH26]", + "fixture_hash": "0x95e077e822692152aae41b587c72cc6c0895dcdd6845fceca34896d7b198896d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH27]", + "fixture_hash": "0x855faccbce773249870ad6c5ccde3efa5b3cb4ce7c9e5c92813d3dcf712683b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH28]", + "fixture_hash": "0x5f82ccb12877c80c1b811d8f4523bf5ce6aedd94bf529f538f7cd43cbbaef6b1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH29]", + "fixture_hash": "0xa60b1098aaafa5d44a02a8b7f2de4d699f3af318380ae55c5d97e907fbf06153", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH30]", + "fixture_hash": "0x9e9458b88b5cc7528586910ef857f92c6287cbaa48b524cb28e03edd2b9b10f3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH31]", + "fixture_hash": "0x69b023f31ac669b678139bdc05f7eb71b3a82298a21252b421952022c2906367", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i0-opcode_PUSH32]", + "fixture_hash": "0xc904ad05e5e2d6464ec31810716b3d9a4d642abfa37fc5e9cf3635cac8b45e7e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH2]", + "fixture_hash": "0xa7eb05491b1f47e5978bdb8892f6c3966e3a06b6f9c50378845af164273ed216", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH3]", + "fixture_hash": "0xa943a9b57f381d127a7e40e47e6db516853f13428846877c2d9c1e7df3569070", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH4]", + "fixture_hash": "0x930d678b5211e44667ee4287e00cac03c5da4f5b79bb4e8ebb7f44fd7e71545", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH5]", + "fixture_hash": "0x1ed42a5087c46d60d61eba4cf96d659059e40d01d480a7faabea4b513a1815e9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH6]", + "fixture_hash": "0xa3c45564a73b1a95a0d37dd3841a0864b37b443c5bd04de5398109358900af1a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH7]", + "fixture_hash": "0xe6c406c17bec7a9d7695167725e0b51609b23cba566c10ddd2803d0bac4e9be2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH8]", + "fixture_hash": "0xe946b4b5507a0afcbbe10678d76b2eb2ab07519b3bdd61352b847e8496a2d163", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH9]", + "fixture_hash": "0x9f9425e730200d753671dbba0693c1dd1d7cedf23073925ea050e81fab1ff44f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH10]", + "fixture_hash": "0x9ec104470bc8ca7768e10174998a784db1d643a52e8704a97f877dbe9faf2969", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH11]", + "fixture_hash": "0x7e7efa7f112856236ad83749b4463b4e72464b20fc35f90d41107ceb92dcb1f5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH12]", + "fixture_hash": "0x133b4c70baa10470cd7e6300b33a7cd101aec2dd7d04d46d4f15665a0d3bcdee", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH13]", + "fixture_hash": "0x607223855f6d73d2982cb8a0eba1cb59b5cda18ca7c2568b5634ae50980298f6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH14]", + "fixture_hash": "0xb6943e1b5890260eaf7da51103564be57d9d7febe3d9b2f0e72d970eea31b8a7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH15]", + "fixture_hash": "0xb6ccba71d69904d132c7c9f54c4ca033ffa435e47bf8c37f1b62be3cb1b42926", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH16]", + "fixture_hash": "0x7e6b2139da908a06279a902bd2fbdca5e42cd0fe985e2b08e5cc081b42f3b04d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH17]", + "fixture_hash": "0x1e2e58fca7bd004c363c9070c8da8b948ad0a086d24ef33addb8314f8df0ed2c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH18]", + "fixture_hash": "0x9d2140adb2851f3480eb8846d7fa20196694b48ea05b4d39ab105bf50dd0fcf7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH19]", + "fixture_hash": "0x1de9075b5526c95abca86ee08420ad80c30d40e7c53a95f4550dd91f81f5990", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH20]", + "fixture_hash": "0xf2682cdcabdccf74c07b2009cfa16f194193accd49f764f9d3a6a49615fb7b3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH21]", + "fixture_hash": "0x860e7c50bed1b759518bb06c40c90707072dcb1b0454358987c82b082bc809bd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH22]", + "fixture_hash": "0xf7778524cef97a0fb5597b6db4e57cc4466bd225365e5c642e8a592bb18dc492", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH23]", + "fixture_hash": "0x8ba71f4dc65c5f84fe4183c810f06ae774186ee0baec6a8e8f8a9c9eaec6188", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH24]", + "fixture_hash": "0xafbfec0a0cf62aaa01c91a1c344a04c09faccd2c204d314b450a5c153e30cd46", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH25]", + "fixture_hash": "0x3ab1f2c49b03b4d13941abd318919b67087330f629eec48e72e110915894ce6d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH26]", + "fixture_hash": "0xa5c68a6b8e8b1cf3db0fe9d8d64d41c32415a6f8787fb8c11480e0beb6eee6be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH27]", + "fixture_hash": "0x55aa31e630b3499519fe89299d010b6bcc45c91e36ce854933c46b97c3bb9600", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH28]", + "fixture_hash": "0xdca5a28bc283be597b9bb4f38e4cc9094be132c36d47b777a46cd19383376ca4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH29]", + "fixture_hash": "0x4d36e7dd4a3a39b3d830d06d2edf684c0405a95f39ea2e418387d4104cd2de9a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH30]", + "fixture_hash": "0xe8471e178cfe7c446c4ba0dfa6b835717650f6753788ce9a060f78cf5b0570b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH31]", + "fixture_hash": "0xc50f3ead5eca1b25b8cce24035e54a8f14ef15ecb80826d44d0bb128fd4e7d8b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_end-t256i255-opcode_PUSH32]", + "fixture_hash": "0x79a1b8efa91fff2067cc29670dfd77c3b2e077f56546e5568447baae54fe8b87", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH2]", + "fixture_hash": "0x64b03211632f29ac698d7d7fe61c321ab6751b69c8e341448e5e5adba787cb5e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH3]", + "fixture_hash": "0x7d651d87c3943c27effbd216f4eadfb5484edb02e10002ccd0678eb1d119628b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH4]", + "fixture_hash": "0x560a1d58a90c0722aef1f441f1fbc9815f2c1b5c70f583f29fe3c74803e212f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH5]", + "fixture_hash": "0xe20b2c2df0c82e9ccfa88d51f5faafecff77e2cd98cd908d8d570312080b9142", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH6]", + "fixture_hash": "0xab10a24cedc271a46f8c19276be13587b23be5ce85c6cca48adf438e6b52abfb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH7]", + "fixture_hash": "0x3c792f1c7916b16c2012739d23f907703854cab6acdcf67070c1a0afb4b714c8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH8]", + "fixture_hash": "0x1b0378ecc548bdc00650abb0653fc7339420734e9ebeb87791335a4f9814d4a6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH9]", + "fixture_hash": "0xb5c462820f4d71db1825c0ddfeb37e5d8824e791b5fcb1ee716587733d48f428", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH10]", + "fixture_hash": "0x43b8cb0954836c89d1e808385752e7e3571a72f7a518147381992a1613001463", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH11]", + "fixture_hash": "0x318a08e1b5ec4a22c97bc21cb32cf335e735870eb4e7f2b56f132e0476d73ed1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH12]", + "fixture_hash": "0xc45790f2e680a27d0c8d463832e797a9a26b271f60e2bf13dedacdac689c34b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH13]", + "fixture_hash": "0x4652af8a7b8e69c2716bf908a22033a2569bb4da2f6a56e9d486dd4882912b77", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH14]", + "fixture_hash": "0xe041c1d6dad69ff887d79e05e26f5625d2d5248a4446cc430f18f09470c90a43", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH15]", + "fixture_hash": "0xf359b4d6d967f02c81b15e76a71ebe21af43d7bd910f64e670412837395cd5f0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH16]", + "fixture_hash": "0x91eecc47051bdad32929e1ac797fa0fe48bc336d439e0a4642e6fdbb59cc8ac7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH17]", + "fixture_hash": "0x42e786f6bb29dbe672ec98e589155e30b953ea76eb6821797b50bc62d623e207", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH18]", + "fixture_hash": "0x1356ee9bc66d83c7f0253f4589ec24d4f193c35a9f5dcd2595877ffbaaec8738", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH19]", + "fixture_hash": "0xee785e18eea898b96801cfa74180f4a5244aa91507815d24d11130847749eec2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH20]", + "fixture_hash": "0x6ea1815579d4de1dfd9edafd370288475accc9449f86471693b147de245c360d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH21]", + "fixture_hash": "0xd1522bb150fcbf6ff12bc8d0fb503319ab6c3188298b195f796c91e1b5049b8b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH22]", + "fixture_hash": "0x5318568452a8814a1b1c426eabbd0d1e903ed665d265594d19aa176af08e8c9e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH23]", + "fixture_hash": "0x7677cac788f26cf907aa794e7d98b7008bbc1ebff3b333ea485a60ba3a0432b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH24]", + "fixture_hash": "0x592f335505507839bff8fd6a85a1212fc105ad7f1e4033c682f8d90c6b64caeb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH25]", + "fixture_hash": "0xf24395ba2ab796db60f57c4e9f08414aad2a2a42bc0c4039fadde9d17ab1687e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH26]", + "fixture_hash": "0xb36e50446987c8c3060ec2c3f129a040d19fd060470ea1d590c0c975156a792a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH27]", + "fixture_hash": "0x1053107a9c6b43dbb6a84d4c48d99d0ef6bac482468869ebbab80df8bef93bf2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH28]", + "fixture_hash": "0x8e7aea154256984264e41215cbbdae8a40d2b2480d1a39533d2988e911750f7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH29]", + "fixture_hash": "0x458cdc8fe00fb32b1e654185c1a48b1a817d00b074cf314a8d1171caad65b0b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH30]", + "fixture_hash": "0x99da194ec5368f2423121f67e2b1b7a9b7f94c8efc7f81e4290d99fd861842ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH31]", + "fixture_hash": "0x41b79cfb3eef1c7ec45a5ef23da94b84a4af5eb90770c8a670c61b7aa2fe0b2d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t1i0-opcode_PUSH32]", + "fixture_hash": "0x2c3e94e8e6f3d208837240b5e8443937ad6893fc5a1e37acec2f2d68c649aace", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH2]", + "fixture_hash": "0xf7613b43f90dcb11d8db9403d7c31c8937564006426db2d7e0fe26fe55b5db2f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH3]", + "fixture_hash": "0x8ce623e35a1e019352d69feb68d81ff725918b4c8d024dcaf14f083b4afd0639", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH4]", + "fixture_hash": "0xc5832e10a44881a4348316d7653cc24ef89b146dd29e85d5f4ba719fb6439566", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH5]", + "fixture_hash": "0x7690d7c2abba16b250839fc7febcd9952c04a1024e892c5569c7f86ebfa3107e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH6]", + "fixture_hash": "0xf7cc8f640f5f6bec9561420fdddfd4283b6eac4406f9dd539de130b6fd02a2fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH7]", + "fixture_hash": "0xb545fcfceb15aee7b3d22e916b6a3628b2b1e430c38b8466ccb3354f1e613cde", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH8]", + "fixture_hash": "0xe8ba26179a3127793be028e10401c785f0e34472549c49bcabbbc076ee61a14e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH9]", + "fixture_hash": "0x747fde824bb08cb42608b92096c644eb0f4ab2e49459545dd4eaee7689ab5efa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH10]", + "fixture_hash": "0xfb89899e8e962983fd6a579d3a9c7c03047ad2c825a72a94cddc8d7860e25bbe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH11]", + "fixture_hash": "0x3490ebe7d5729a8be48c12cd71be22ecbbcf008cf7ccfa3312da2a77bc403b56", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH12]", + "fixture_hash": "0x8bac37cbb73bb813bd68c25d928b711ac0156f6aca0a71acc58539d2792f8169", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH13]", + "fixture_hash": "0xa017b3dcc647049d8f4b239941bfef66f496071b17ef60f76b31eabb139ae4bb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH14]", + "fixture_hash": "0xedf8a68bfd4a8e8521242e1ed634b2aa61672bca4768795da09ab30f103e4c39", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH15]", + "fixture_hash": "0x16f1c944e36f4ddd3be3bc3b7494be192218cfd92744c80f65dbee4b1156e358", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH16]", + "fixture_hash": "0x75c0c7ff6318eb137897d172e57c318689c1e6e0fe28ff5fc67a68450a618438", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH17]", + "fixture_hash": "0x3e537ef4ac3fe43bfd51bcdfeaae7188ef1ebe64244c585480ee67e7de800ec1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH18]", + "fixture_hash": "0x9951e19eaeb29387fe32b96032835e863084aee6603a6a3a165704821b6a6920", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH19]", + "fixture_hash": "0xd87e2861344de2a62e7f999dccb9324ec4b95ad83c45259ab914fede4192edb7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH20]", + "fixture_hash": "0xc47b58c3e2f444b2cd0cc6aa093fae0a84bb8d083097d7ce549423fdba024486", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH21]", + "fixture_hash": "0x5586feca9cde68e80bca569346c8ef5cb5e4638fdf7c347006a066c596c29c36", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH22]", + "fixture_hash": "0x8b6624905479e19f8b53cfba8d0a2503cd157e57c54238c69f2537205cd903f2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH23]", + "fixture_hash": "0x451b2c1c1fefb1d0e88de3e39d3bd34d6c8bb653b740ab37f4590721dee2c30a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH24]", + "fixture_hash": "0xcc97cf6269c5442afa0ba064fd96d49df5eeceb0e652c4e9d6685d649e89ba69", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH25]", + "fixture_hash": "0xdd3f59ecbdf6434e0931af34a26d11aeb955ae6258708bef8a2efcf7ac1db3d5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH26]", + "fixture_hash": "0xa387ddf770704cb0b9e9a7ad0200f2aedd336156eac2589b7802bbbb9ba64c2f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH27]", + "fixture_hash": "0x91c848627af81f5dac6c344bd9d68808a75b20575a1a0ce4363b0c9d73971fe9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH28]", + "fixture_hash": "0xe47332a7739a44bbdbd6dd18658a941b312786d94a292a830df80d88cfd0fbd7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH29]", + "fixture_hash": "0x158c8df2c1cd83fe8fb18451085c2c5baae96a3b9eba4d64bcd7a6be6e61857e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH30]", + "fixture_hash": "0x8283e8e77e120223b22a34f3e59bead07d3102db48232980ad7c87a167c60558", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH31]", + "fixture_hash": "0xdbf33d6bbdde47e22a0d24926ec76d8eeaccf4ba6bb691f1786af6bc9f4b18c9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i0-opcode_PUSH32]", + "fixture_hash": "0x2455ff1b60ebe67a6be45826d94f6528c9ed40b52534ea29a36c77adb731de8c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH2]", + "fixture_hash": "0x36bc5044d0c1914560b51ce48b2c46de9c850096f200aaeec9b9ee20f9cf9181", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH3]", + "fixture_hash": "0xe1e91226533e13f6a98635b8f1253c94a0c39cc99011a382d017dad9fac5a51f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH4]", + "fixture_hash": "0x7b1624c2f15167d9745b0a8fba4d603212833d4a7f51d714a5be1c1d3c1f88ea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH5]", + "fixture_hash": "0xec741919b58785a098176437801578d891f77af7139a98f2a01321e4d8bf3149", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH6]", + "fixture_hash": "0x25e5181a479a4461e38245ed8130dadb55d03dac43a77b01b4ff4ca19a908da8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH7]", + "fixture_hash": "0x35dc119e31cebc7e57e0b1dc4ddbfb359f88154477ab82665d147f37be669103", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH8]", + "fixture_hash": "0x6eacc97c5a9d0d75abf37ed4fc264b955e4897a0cce71fcb8f1cafa64445b4ba", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH9]", + "fixture_hash": "0x59bf7a383b57147ce58c8eb2f0377f9cc6dabfbf9342bd8a5691bdcdd8719099", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH10]", + "fixture_hash": "0x98031812011d6e5c1683aaf453a49103f30e0a548f8e85a4ad815e81c638cbe3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH11]", + "fixture_hash": "0x2e0ee7c468da3381f53ab2be1a0c403b72c7cbf9b9cb21b2beea5d20c826db37", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH12]", + "fixture_hash": "0x665fe37c83404768e65d144ab362c9073bfec712871ea723d28c483a667b9351", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH13]", + "fixture_hash": "0xe29d441b885201eed48653dfc942f73aa4407a106a41b2db8e30657f95ddee04", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH14]", + "fixture_hash": "0xc68834d92c2ae5cf37db5f5edc0469e375802130340379809de7d769aa4eaad4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH15]", + "fixture_hash": "0x89148bb4d4dd65b0c7c8a2e5c373961bb18319b239ab91fc36740068b887d99e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH16]", + "fixture_hash": "0x1529a1e40a75a54cbd5c6c901c998eb1eff668206d2e11ed329b8c6130799bfc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH17]", + "fixture_hash": "0x73e13c7a9d207a84cbc16b81022ad7e2f2c812daf76a921176ba4efaedbc8aa4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH18]", + "fixture_hash": "0x4ae3ab5d9475d5e0d4d4671b2aef006565d0c65276b31a16949bed7204ada4c5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH19]", + "fixture_hash": "0xa165a5c4337cd8e75d700f77efa08cab888f4aa41dee099fd7faba8441064e55", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH20]", + "fixture_hash": "0x4a3092f3b4427382e1e51bdd2ebdd00f874d52d7b0045e62ff6af0300353f0c8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH21]", + "fixture_hash": "0x12e088f60b6f42b95bf1de1113f3fda005a2cce67c45dde03e0ff1c5111196fe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH22]", + "fixture_hash": "0x8485c0f2e1d1a26e462b3e287680d1e9948d0abc9f8c300008e6f2d6ea4c179f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH23]", + "fixture_hash": "0x802f78f07265da55be3ff7bd8adec6eaadb9058f7ed55c615165941e44a15280", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH24]", + "fixture_hash": "0x87e9990b1d450f8d404a33b6b8f34b0237485424f67c05ae9148d90c302e9900", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH25]", + "fixture_hash": "0x6d3e5f0f526c3959b11f7e53ba7be76abb720e13f7d44116a80899439ddb868a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH26]", + "fixture_hash": "0xcd78c1915780c0fd7c7903b57fa81f3ef8c05d3ea595f7d3072ec3a41fd92ef8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH27]", + "fixture_hash": "0x5b46b4c427718d835b8e7578371a75e9bcc9cd7aea80513c8460a3414aac6765", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH28]", + "fixture_hash": "0xea56698e03b5631eb378b7bf1578bf73779f8c3abae6f5ee05d6e2746c79a1e2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH29]", + "fixture_hash": "0x9df34e30c226a22ec3debfbc1813835377c19e9e9b3bbf73f7c9e574a883e02a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH30]", + "fixture_hash": "0x6bf056209bce0ba8f46eca08af8c1cedc2eb9a67d7e38a15d6cf881b6dc92ce8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH31]", + "fixture_hash": "0x4b8c47377ce828de26c81d2953360d07ee4fdc67945e67af35bd5e42591fef3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_n[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-data_portion_start-t256i255-opcode_PUSH32]", + "fixture_hash": "0xd510a8e6e4bd5111cd732b4afd9af5f5dc87bc00c21b9800b80577593815e918", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_n.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_truncated_empty[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xeb2fa8d9503ba9c39fac27cf5087dfcc274818fb14d000acfd2da5c226adc9cf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_truncated_empty.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0xbbe3b46523034da3acb272710f35c92eadcd2d3d655bd1f0c0ff376639a8cd63", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x3a5fe2131fb266c6742b1a157e22faa9e041ebf37c212bc10f0f8409c26b8e71", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0xf1f3d848f3701aa2ac934525157af4aa9bd0fd43e8e56f28d0cd3615888d4db6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_at_end[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0xf2dbef2f3be79612225e2a43627b1f70e928e68ba3261c2fb925a3e2e95e18a6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_at_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_at_end[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0xd6949dbb73ea49ec8de566a7efa908ddf58fa16ff3ee673af96fe58dc7a7fef3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_at_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_at_end[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0x853b6f9c188d1247aa475f247e7a0dda8eefebfaa9bf7891bbdf280ac5e4cf51", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_at_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_returncontract[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0xb1f3c5ad4c7fa2569e08037f4a7bc076e8306f756a2d745b3dbdbdf66244c2e5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_returncontract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_returncontract[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x370a2fcf58b02b24d9179a15cab864f98d5f6f742afe81f7c2400e2ede205f42", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_returncontract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_returncontract[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0xb4049c69181fa189bd8537ff49d8b417c45d2e139c82f48ff8e8531dad863855", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_returncontract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpi[fork_CancunEIP7692-eof_test-data_portion_end-t1i0]", + "fixture_hash": "0x7a11b68b8cb8091f94b3c6f36dc1857c2685d151432272c8786574bf2e700e23", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpi[fork_CancunEIP7692-eof_test-data_portion_end-t256i0]", + "fixture_hash": "0x805dfb9813c483ebe5f8f34507119d07172a1ca1c76c928024adb615e4f8283c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpi[fork_CancunEIP7692-eof_test-data_portion_end-t256i255]", + "fixture_hash": "0xb71ed69eab3f36772cfece50dbde5fcde7c18e06b43c1b3df1cae1f6bdbad10a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpi[fork_CancunEIP7692-eof_test-data_portion_start-t1i0]", + "fixture_hash": "0x9a00302b499e25ea014c89b2ed4c7aec649bfef94a3849fd2be3faca09c14b1c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpi[fork_CancunEIP7692-eof_test-data_portion_start-t256i0]", + "fixture_hash": "0x184bf54c58a03aa1304fbe01bee9b08d9b6602759ab64ad6b0aa619918f32b9e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpi[fork_CancunEIP7692-eof_test-data_portion_start-t256i255]", + "fixture_hash": "0xb1424d14aa3cd37887057fecb744f7c74f0a70812ea59bbbab32e69b431061cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpi.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_last[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5580f448c5ef53f557195c464a7a6dc40248fcd8ba44240ed733fbfcc49de904", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_last.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_mid[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x441397d85b780113e55e57e8347edb83757630676f705162f07106566c2aa0df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_mid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_end[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xee558fc0557a87f1775e6f34b93ff74b493eda4f9af41981a28c457f5d9e3001", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_max_forwards[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5da6f0a8b15ab97516f15d68aae989bd68b0c10e907426639223bf70c50e3846", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_max_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_stack_height_diff[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0x8bae2549dce367bcf4e8e4b230f910138da60e90fbb08b95ffc0424bd681a047", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_stack_height_diff.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_stack_height_diff[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x7af8d00755ba1fe2d16902f5baab4b63a582ac6c3ee93603a45f5e86e8060cdd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_stack_height_diff.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_stack_height_diff[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0xf87b7e882198e2768dcfaf069abfe334d224049bd0d6a6bbad1b34fca84058d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_stack_height_diff.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_zero[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x8abd6fda8ca3f6d7b6a2da015b155b0188eee06c66b07340a9e0dfdf655762be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_backwards_reference_only[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xcf4d1ea98a6585d6bbf6d6d116177481f8af9031176982e9d69399afa3d6c39d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_backwards_reference_only.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-t1-s1i0]", + "fixture_hash": "0x1e72960890a78bdc97f9bda17955ad9f132dcd228038a3ce4fd73c5326a24b69", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-t1-s256i0]", + "fixture_hash": "0x47090d6e1b6ec49c2a60fa6db2990e4c487252b0a913f71a0919a5fc92342c1d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-t1-s256i255]", + "fixture_hash": "0x2befd0ce890919aae6ae8c6a6bffb6e4e42df2b423e8774770526d1ffcccbb7a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-t256-s1i0]", + "fixture_hash": "0xa129958a93112bbfe4a646e8206256735b2cf0ee5e3cad90b0ccb2bb662ce9a4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-t256-s256i0]", + "fixture_hash": "0x6833729797b1aac9a242154e08001a624b194cadbb6ff9b0df22b382197dc68", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_end-t256-s256i255]", + "fixture_hash": "0xc34d2e3ff85be9bdc53fc229559ef7776ecf031a41eb112b8757fc503078eb5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-t1-s1i0]", + "fixture_hash": "0x7db327324045ea9e111e92eae7db4402d98f6d6c35b99f241e556ff56230761c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-t1-s256i0]", + "fixture_hash": "0xf271edc9f1e082e0ca7f8de5485c853ac5a66650cf333e79cb640342b447ca0c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-t1-s256i255]", + "fixture_hash": "0xa84bdda5d1bcc891637609f5a993557cee13a113605be6ebb0e3359c8ff8f873", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-t256-s1i0]", + "fixture_hash": "0x86fd9b05d8c083a9d4b80682ec98f185e4dad8cfe88e6bf68bb667cfbd1ab17a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-t256-s256i0]", + "fixture_hash": "0x6b84483013895a57fbb6bc935b5de186dcfe5835c8e839eeda60753b569e7778", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjumpv[fork_CancunEIP7692-eof_test-data_portion_start-t256-s256i255]", + "fixture_hash": "0xee20271409e6537006a22d734da12e77e19f2bfeb18d62978134767c773775d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjumpv.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-t1i0]", + "fixture_hash": "0x7dedbbe154a4d242861a52f690755efd027782ded88e9fa99b211f5f0a94c449", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-t256i0]", + "fixture_hash": "0x78d9a87491d5dc79d01362b56dc747df9d8e967ad2bd756933a83147b1223fb8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.FORWARD-t256i255]", + "fixture_hash": "0x380e21a578e6c7a56c36c2b54d5b1fb7936f35ae782aca861c3006c3b6b7bb86", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-t1i0]", + "fixture_hash": "0xe0e0c3b8828ed3621c30f75105f73af97fe6dc9792b45693fc3f3c55c618e47e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-t256i0]", + "fixture_hash": "0xbeb6b55d2e349306bce396be08eb19ba092e15645ff2be96b1b2e82051f6d881", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_push_1[fork_CancunEIP7692-eof_test-jump_JumpDirection.BACKWARD-t256i255]", + "fixture_hash": "0x4cfd78177873583a0a14466d889b60d6df42a51acbbf41323020f4a13f4e309a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_push_1.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_at_the_end[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xe5e0e3c354340fa48eca592f96b461326567e029e99bd37b6077077ea73af317", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_at_the_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_stack_underflow[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0x5fb17bad7a2f2bc361cc036ead1e7c91fc2a04eeb8575772ae01a3d1c2998f31", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_stack_underflow[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x2ce359823e6b039395b2a84078ee114df5de5f7ca70b34b3630e20644c851956", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_stack_underflow[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0x14d2a641ac65442ff1ff74616940d54127148a6522489e200a32d181f637462e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_header[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0x20be47f3aeff6a8bd861b7de706f1f49efbe5ed60bfe9a0a6f02bbe41e3989f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_header.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_header[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x7bd2b572c8a9692810558655c63ebe502426381e40b40e9c1743bc8a713d66de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_header.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_header[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0xbe362b2006c5db65ccc126c86652e46a0169fa726cfaeb5bfa22591be454dfa9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_header.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self_data_portion[fork_CancunEIP7692-eof_test-data_portion_end-t1i0]", + "fixture_hash": "0x503332117bc62b7fb7d866fc219d69d795b49ae1ff15a92e704e12063ab6f60d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self_data_portion[fork_CancunEIP7692-eof_test-data_portion_end-t256i0]", + "fixture_hash": "0x5ff18c68de9910c0d7184f9ee64cb1f3d200d7d64628915e46610e70eee5c0c1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self_data_portion[fork_CancunEIP7692-eof_test-data_portion_end-t256i255]", + "fixture_hash": "0x505082de8f7dc6cc8c2bb9f80ed197b0e6f60e1231061440b06ca6b55a7fe98f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self_data_portion[fork_CancunEIP7692-eof_test-data_portion_start-t1i0]", + "fixture_hash": "0xdefd179a0a787a4f151bb2b09632d7f92ebeb33c49bd800c3e40605666f66f5f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self_data_portion[fork_CancunEIP7692-eof_test-data_portion_start-t256i0]", + "fixture_hash": "0x15464e03d44188fb1ab35c0a55100276645e66f0cb9003f40f58ec7144534644", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_self_data_portion[fork_CancunEIP7692-eof_test-data_portion_start-t256i255]", + "fixture_hash": "0x4e015570d71bae60b889abe84ef48fc1b1796f8d06c19c8a527931490cd1258a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_self_data_portion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_truncated[fork_CancunEIP7692-eof_test-byte_count_last_branch_0-branches_1]", + "fixture_hash": "0x73d632e3ebb1a1b3bf44a774f6c1527d2964d353aa1c62ccc54f8061bd73b304", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_truncated.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_truncated[fork_CancunEIP7692-eof_test-byte_count_last_branch_0-branches_2]", + "fixture_hash": "0xf66ed185238703025bd69547b3e892dcb5f08ffc99bd36750085f885612d2d28", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_truncated.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_truncated[fork_CancunEIP7692-eof_test-byte_count_last_branch_0-branches_256]", + "fixture_hash": "0x89c78dacf2d870b7f6c82d1858dd323995bf05e9c0c8f646cf5cd97a4e3159c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_truncated.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_truncated[fork_CancunEIP7692-eof_test-byte_count_last_branch_1-branches_1]", + "fixture_hash": "0xd36aa046b69800911ff43d4be21660ae3ae5047547d60e22cd1d5d1b3ec3418", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_truncated.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_truncated[fork_CancunEIP7692-eof_test-byte_count_last_branch_1-branches_2]", + "fixture_hash": "0x92c906fe5e7fdc899c8d89b72a294b7509b7c54f64b6b8537a6b215fd5f170e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_truncated.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_truncated[fork_CancunEIP7692-eof_test-byte_count_last_branch_1-branches_256]", + "fixture_hash": "0xae8317ec4adb528814f94406a4d4b351100ad02a81eec93e0796dd38d84e436f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_truncated.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjump[fork_CancunEIP7692-eof_test-data_portion_end-t1i0]", + "fixture_hash": "0xa7ea07e9a9112774af99417ead7cd4e392ba6e271d6d405187b298934561bc85", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjump[fork_CancunEIP7692-eof_test-data_portion_end-t256i0]", + "fixture_hash": "0x4ecc4fb97a7ff05b88e39d38f652cf43641fd1a0ea7d6f3bb034b53f11802716", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjump[fork_CancunEIP7692-eof_test-data_portion_end-t256i255]", + "fixture_hash": "0xbfbf2a80a2c944819bace2acb2dc94ad0b0274b4b003def6377de5a71473cfa7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjump[fork_CancunEIP7692-eof_test-data_portion_start-t1i0]", + "fixture_hash": "0xd11c305947e88c2db228512aec2c09e2d1e4ead9e6babc4543981177db97efe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjump[fork_CancunEIP7692-eof_test-data_portion_start-t256i0]", + "fixture_hash": "0x21e879e56e88c73b2675ba9867f03bea2734da8a65f4fefcfdb9a2f70f27a8b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_rjump[fork_CancunEIP7692-eof_test-data_portion_start-t256i255]", + "fixture_hash": "0x3375df9f945aa408613205f4a9a9b65ee0096909652f1b5d250490cd3bbf7d68", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_rjump.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_before_container[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0xc1a9d4c6b36cc45a2738412d69ffa90197ab942c0854dfe05c53c5d586578f18", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_before_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_before_container[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0xb73e906e0372cef3b040e6bb7b2c875b9ca4aaa87810ee19c635c4b6f26b2179", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_before_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_before_container[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0x3482644974752202d22dfe7f587ebca2537743d823f0fac7c94dd9c3d507b340", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_before_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_swapn[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0xd3d9ac0c09040f698113c22624994c58e0d8b1b045c41eb62c91ee68cb347e8b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_swapn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_swapn[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0xb35e0d24979faed9e65a9f6ba59962d25fcd52ce0937c0da031fb67b0954471a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_swapn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_swapn[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0xe298ed25da3d83a1f4ca25b98b01ae59c821152c16a8404ff8dd898f7158c9f0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_swapn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t1-c0]", + "fixture_hash": "0xcb003c6496d72b13f9cc62f0c76fc9a40a68cc5a1a25037b27e7600c380881de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t1-c1]", + "fixture_hash": "0xcb003c6496d72b13f9cc62f0c76fc9a40a68cc5a1a25037b27e7600c380881de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t1-c3]", + "fixture_hash": "0xcb003c6496d72b13f9cc62f0c76fc9a40a68cc5a1a25037b27e7600c380881de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t1-c255]", + "fixture_hash": "0xcb003c6496d72b13f9cc62f0c76fc9a40a68cc5a1a25037b27e7600c380881de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t1-c256]", + "fixture_hash": "0xcb003c6496d72b13f9cc62f0c76fc9a40a68cc5a1a25037b27e7600c380881de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t1-c2^256-1]", + "fixture_hash": "0xcb003c6496d72b13f9cc62f0c76fc9a40a68cc5a1a25037b27e7600c380881de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t3-c0]", + "fixture_hash": "0xca96fe107fee184ab9e5f90edd370bd9f6b4f70ad43f40c659fcc950a1b7f45e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t3-c1]", + "fixture_hash": "0xca96fe107fee184ab9e5f90edd370bd9f6b4f70ad43f40c659fcc950a1b7f45e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t3-c3]", + "fixture_hash": "0xca96fe107fee184ab9e5f90edd370bd9f6b4f70ad43f40c659fcc950a1b7f45e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t3-c255]", + "fixture_hash": "0xca96fe107fee184ab9e5f90edd370bd9f6b4f70ad43f40c659fcc950a1b7f45e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t3-c256]", + "fixture_hash": "0xca96fe107fee184ab9e5f90edd370bd9f6b4f70ad43f40c659fcc950a1b7f45e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t3-c2^256-1]", + "fixture_hash": "0xca96fe107fee184ab9e5f90edd370bd9f6b4f70ad43f40c659fcc950a1b7f45e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t256-c0]", + "fixture_hash": "0xda88cf539472952c95a2800dbab121f1839ab8693698f6d1e28ef155cf5a80d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t256-c1]", + "fixture_hash": "0xda88cf539472952c95a2800dbab121f1839ab8693698f6d1e28ef155cf5a80d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t256-c3]", + "fixture_hash": "0xda88cf539472952c95a2800dbab121f1839ab8693698f6d1e28ef155cf5a80d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t256-c255]", + "fixture_hash": "0xda88cf539472952c95a2800dbab121f1839ab8693698f6d1e28ef155cf5a80d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t256-c256]", + "fixture_hash": "0xda88cf539472952c95a2800dbab121f1839ab8693698f6d1e28ef155cf5a80d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-eof_test-t256-c2^256-1]", + "fixture_hash": "0xda88cf539472952c95a2800dbab121f1839ab8693698f6d1e28ef155cf5a80d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_after_container[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0xfb21bb5105a114f257ec9488422c27e3a51c1743c2f4041361d8918eeaab58a0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_after_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_after_container[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x5dac5e7a4152c133321ea096a6eaf30ded71bb90f3e1733785e84099cb77e7ab", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_after_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_after_container[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0xede6f0ff8d2ea7245a3c992fbac1b7f039d71c19984991afff8889756a8bbc7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_after_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_dupn[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0x538ac62f27dc54dd774e890d46eef610fb91d326a5355cbf792a20d946f6ac7f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_dupn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_dupn[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0x97ec7ef120e20df666b00068fe05c42198cedabbe69371954f66489b1a6174ba", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_dupn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_dupn[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0x9df11efa5cb57caaebe1ad35ec53b6cc285eae327095ed2b1e787b19779449b9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_dupn.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_eofcreate[fork_CancunEIP7692-eof_test-t1i0]", + "fixture_hash": "0x2e317fbf55b7ca4666c2fe9c0cdc141356d2abc135992151f13efb7183ee05c5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_eofcreate[fork_CancunEIP7692-eof_test-t256i0]", + "fixture_hash": "0xdaadd5fd3957ff780e902f3e1c7ab02091c3b6e91ae8a64ce6406dcb2975a47", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_into_eofcreate[fork_CancunEIP7692-eof_test-t256i255]", + "fixture_hash": "0x5ee921e42218ef2fd486bbc507cdd4055e0479a3e83b067f107e794e363045df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_into_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x8839f7d4f5d592fb66d5b99fbb2710f2b2c6372030f07ec3711c0b4107b656db", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_overflow[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xb2d05733d2c995ce9fad069e74f56488d5065ea177a2e2255888e05e33632a29", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_overflow[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xed798b940d9e08fd5ccb25e5a67bcc5207543af658250c0755e674024c341e2c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_push[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x4ecf10838f5554da7d87fff5a03e9d43b65144c7da6b52d4beeeeb98e15d5378", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_callf[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x59fcd8c0b4671665773bbab08ad68c3eae24de792d8a73a16a14da5963a87e2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xd886689150afcf6dae0f72d24020aadd46c5aefb6c9975a2176b07a45f2c5aac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x6f082700d3dc1fc566d1653aadb47f6af87129a3fcb98a91f62b2b9f0d4af32b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_header_body_mismatch.py::test_code_section_header_body_mismatch[fork_CancunEIP7692-eof_test-drop_code_section_and_header]", + "fixture_hash": "0xfaa4939b081c1e789dfc25ced9c46036d0b592e466cd47f2f6b71510e83390ea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_header_body_mismatch/code_section_header_body_mismatch.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_header_body_mismatch.py::test_code_section_header_body_mismatch[fork_CancunEIP7692-eof_test-drop_code_header]", + "fixture_hash": "0xd92162c6769ff40bae3fc4f7861a01c7b5830270682c134d5be00d10a58c51ae", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_header_body_mismatch/code_section_header_body_mismatch.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_header_body_mismatch.py::test_code_section_header_body_mismatch[fork_CancunEIP7692-eof_test-drop_code_section]", + "fixture_hash": "0x42b661b0d4b8854ca392b4bfa1df99a537a9d530277f11a7b1e537591b8df1d5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_header_body_mismatch/code_section_header_body_mismatch.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_header_body_mismatch.py::test_code_section_header_body_mismatch[fork_CancunEIP7692-eof_test-layout_ok_code_bad]", + "fixture_hash": "0x9d186b352b8be02b8b4a527ab2c02e1f90f3f2ae101db58c0c38918751dc2ac4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_header_body_mismatch/code_section_header_body_mismatch.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_header_body_mismatch.py::test_code_section_header_body_mismatch[fork_CancunEIP7692-eof_test-drop_types_header]", + "fixture_hash": "0xbae4199ed0071809ae9f705ab54a8d965e678f79b65456fc0e2154234554f108", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_header_body_mismatch/code_section_header_body_mismatch.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_header_body_mismatch.py::test_code_section_header_body_mismatch[fork_CancunEIP7692-eof_test-drop_everything]", + "fixture_hash": "0xc5abcd166b1fea55d6f9d8e261bdad609b20fb8602fe811ac327fe4778e540ab", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_header_body_mismatch/code_section_header_body_mismatch.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_truncated_container_with_data[fork_CancunEIP7692-eof_test-truncation_len_0-exception_None]", + "fixture_hash": "0xf5a163b97364a8544c287bb8dcfa3674bb1561e8e8fd129cdfe06edca126864b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/truncated_container_with_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_truncated_container_with_data[fork_CancunEIP7692-eof_test-EOF1_truncated_section_4]", + "fixture_hash": "0x5243fc6bca435a7953193c96a2c2b9bdb360b835b55414bcc6e5611591b2dde1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/truncated_container_with_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_truncated_container_with_data[fork_CancunEIP7692-eof_test-EOF1_truncated_section_3]", + "fixture_hash": "0xb276687c50d3eea1ba24ca4e30263a3fd4d3514cd6fe29b4f18371d9c0311f80", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/truncated_container_with_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_DATA-section_size_NORMAL-exception_None]", + "fixture_hash": "0x35a339078e9cee540492224ae9e3437594dad4c37a9a7139b1898975b38891de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_DATA-section_size_ZERO-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0x3ad5eb94db503ea2e1f624491df27cf25255a46c8fcf184dfdc1a4dabe0d6025", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_DATA-section_size_UNDERSIZE-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0x4758eac0d5f58c8a7b4f66064e1178fec48deb846f29bd3740380902755d3357", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_DATA-section_size_OVERSIZE-exception_EOFException.TOPLEVEL_CONTAINER_TRUNCATED]", + "fixture_hash": "0x63e015a40baf37f0c1a02ddf4486c7a1fc831d6617ec403ff746ce9cf58f9901", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_DATA-section_size_HUGE-exception_EOFException.TOPLEVEL_CONTAINER_TRUNCATED]", + "fixture_hash": "0x69ca03b584c3fc3517ebf555eeb8462325ceaa4bd5805f0fb4a3821343aa9737", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_DATA-section_size_MAX-exception_EOFException.TOPLEVEL_CONTAINER_TRUNCATED]", + "fixture_hash": "0x9949348650839b09f9f6177d62b850389daf34a2e7d359f1990c07eb741fe1a6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_CODE-section_size_NORMAL-exception_None]", + "fixture_hash": "0x35a339078e9cee540492224ae9e3437594dad4c37a9a7139b1898975b38891de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_CODE-section_size_ZERO-exception_EOFException.ZERO_SECTION_SIZE]", + "fixture_hash": "0x975d9b5d2bb9b552010cd7b0661bcf0b155b91a9ba76308e195ceb1d84d69748", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_CODE-section_size_UNDERSIZE-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0x98b148f814353d745a82cfd33ca11bb1b692e51a21bbf0c1cf82511aeaf09058", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_CODE-section_size_OVERSIZE-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0xea5335ce4f71cceb70dab53c445bde495699a8bf7d87ca8368eb5537174917d3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_CODE-section_size_HUGE-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0xb167ea4675a98815da15dcaa93f81b38d7100f6554249948a594f5b67d1321b4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_CODE-section_size_MAX-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0xcded93fc635736911207c08beeb62e3c7fc2978970b0680dc05fc7a774ffc91d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_TYPE-section_size_NORMAL-exception_None]", + "fixture_hash": "0x35a339078e9cee540492224ae9e3437594dad4c37a9a7139b1898975b38891de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-type_size_zero]", + "fixture_hash": "0xe0b3130524ca0329536980ae0477a65f6450ed001dda2c3af98ce4968d1c40fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_TYPE-section_size_UNDERSIZE-exception_EOFException.INVALID_TYPE_SECTION_SIZE]", + "fixture_hash": "0xb9dec30e9d4af5f90f145b399c62657e83b8ea92c4dbe80604c3d0987f6101f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_TYPE-section_size_OVERSIZE-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0x2d5d0d64ce2f8e2b307645e4c9d20d5d1ba0aaef994b7403232734871c9d558", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-section_kind_TYPE-section_size_HUGE-exception_EOFException.INVALID_SECTION_BODIES_SIZE]", + "fixture_hash": "0xdbbde3d0bbe3188156259fdb5ac8176a4911359623f787d0466268369eddb524", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_section_size[fork_CancunEIP7692-eof_test-type_size_max]", + "fixture_hash": "0xa094872a6740a63214962cd479ea7ecca34b8f45efb8bc14c2111cc657832941", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/section_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_truncated_container_without_data[fork_CancunEIP7692-eof_test-truncation_len_0-exception_EOFException.UNREACHABLE_INSTRUCTIONS]", + "fixture_hash": "0x47c3a427d0629cba1fe88bdc772a29a365e312c1304450f2bf8d855b336e004d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/truncated_container_without_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_truncated_container_without_data[fork_CancunEIP7692-eof_test-EOF1_truncated_section_2]", + "fixture_hash": "0x3a2e1959289322c9d0c6bf8b4472ce0a87b9279e56e4e4b3a708df914e8174c5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/truncated_container_without_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_truncated_container_without_data[fork_CancunEIP7692-eof_test-EOF1_truncated_section_1]", + "fixture_hash": "0xd3a6d9d08d86c4b444f70f5850d8d675662cb803d3a70120dd25666de3865c7d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/truncated_container_without_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_size.py::test_truncated_container_without_data[fork_CancunEIP7692-eof_test-EOF1_truncated_section_0]", + "fixture_hash": "0x56cbe62902130e512ef6b5cd24fa870ce1173054a072d921bf8c94baaed8f30c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_size/truncated_container_without_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_max_stack_size]", + "fixture_hash": "0x3f775b84a1802dc908c6bce5034419f12caec31ded61868f7f48e0de8213c4c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_input_maximum]", + "fixture_hash": "0xa5e7371b5d140b647e00f050418e5b6900d40d912cad07f9b8e0e57ee1fcb31c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_output_maximum]", + "fixture_hash": "0x157ca0e41a527909d7ca18e9f3b94b42306df8845ea5c2d1fa405ad6d77f0b0d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_valid_eof_v1_contract[fork_CancunEIP7692-eof_test-multiple_code_section_max_inputs_max_outputs]", + "fixture_hash": "0xfd4bf2dbb7d0ce06f957fd315341cca4876fd3a44f2925f861bdb93f8a759a5d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_valid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_no_data_section]", + "fixture_hash": "0x34db35312df7b91c704641a853a577283ee0082d8856fb434269f38e621a1881", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-incomplete_magic]", + "fixture_hash": "0xc424a49ee0b2ba5f8eb91c213c9fd15972ae849750aa611a9c08499c6ca7deb7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_version]", + "fixture_hash": "0xcbeba266e3aca14e3346c32e923545e77bcb96d35afaf6aa5d6b02bbdc5aaea1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_type_header]", + "fixture_hash": "0xb7dee4d2489867b457e40ef5e1ebb38953647e885973452e194b8200b082e5d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_type_section_size]", + "fixture_hash": "0x97b34f3b496f6f5a215c1541ec80996e3501cdb24a250a784c88e27dd5ae0311", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_code_header]", + "fixture_hash": "0xceb1fdd0b085077fcbcc3bfcb5cd2a11bc99ef5486eff5d0077ecfad0e88a5d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_size_incomplete_1]", + "fixture_hash": "0xb3daa6d9ecfa1be5fb7f93a8d7811fc8be11ab7923b165dfe60ba2d8c100f868", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_size_incomplete_2]", + "fixture_hash": "0x8a7bae54a6299499e938df8d54db7adbbd83224fa2f1e331da8a591ba3391c8b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_size_incomplete_3]", + "fixture_hash": "0x68a0b57ca6c7fcafe5f57b6034a9016d995867268129b53993bf4c2e2b558107", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_size_incomplete_4]", + "fixture_hash": "0x6b0b03db9fddaeb7bec23b3772d0492b8dbdf49882b01d12c2d1856cfa367f0b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_count_0x8000_truncated]", + "fixture_hash": "0xb6b1164864c0d7dd4e861197f0a889c1ff1cb0330b933fcef66b57a96016ef15", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_count_0xFFFF_truncated]", + "fixture_hash": "0xe07eb61d1aff6af523cd01242390e10ce29914167b9403ee9e88a7256c20313b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_count_0x8000]", + "fixture_hash": "0xaab72600d9dae8f39f67c415fbdc8a4159c2b66f3598a14f4eafe6c651acc654", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_count_0xFFFF]", + "fixture_hash": "0x6683ea5a9c41307c884b1206d60d4a3ac9f4acbe933b72ecc61b7557784eea3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_size_0x8000_truncated]", + "fixture_hash": "0xb3e51285a33fce22a1a91dfa4daf891c82e44f5aca8b33b66464c952ac322648", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-code_section_size_0xFFFF_truncated]", + "fixture_hash": "0x993d766d3c6851369122f35d0df629ecfb094aec1e988a4e2d0eb736cdbb884a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-terminator_incomplete]", + "fixture_hash": "0x27662edb205ee5f7e1970ef15ecd2ba77112cb0b7e6ced88256cc74a56ffac89", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_data_section_size]", + "fixture_hash": "0xf3d997d2b5815892b53b417f42c52be40d0fe02ae1e1a0317cba4e47af5f656c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-data_section_size_incomplete]", + "fixture_hash": "0xf6c1b7b17cf21787b9c7917fb4f330a83b22c487cf0c5d8d96566b080aea3876", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_sections]", + "fixture_hash": "0x584b3f04143447511268f6860287290d4a5fddf4fd9f28f5e327eb6e3bf29341", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_code_section]", + "fixture_hash": "0x9f8f86a444d97c4c050bcd761ce07fef43f2589c404bc993445c577e844f1737", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-too_many_code_sections]", + "fixture_hash": "0x1ed611efa3d2e7e897a14b0ffd408dabe8baab03641366430df6185623be37c5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-zero_code_sections_header]", + "fixture_hash": "0xd53b5254924807e745f812eadf9713ad3bfb1a8eae1a3f0be9176c3d1b84b58", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator]", + "fixture_hash": "0x93ea41523158c8be99b6cf0bc7bda0ef1a83dd2df9e0e241c144deec972ca8b2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_1]", + "fixture_hash": "0xd1aa9a57426c680170319dc8df389a29ba87c5b5f7b3518115ce3dc3b0df393", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_2]", + "fixture_hash": "0xdbb394151c984290a177996e3935b05a54ae35c8dedfea6136d72cb7cec45a5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_3]", + "fixture_hash": "0xa554c60a1349cd6d8a5678d68c17b90b94d03d6d659bc725b4aab8659f7ef5a1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_section_bodies_ok_1]", + "fixture_hash": "0xeba21ef9f2f1f178294a4bdadb06132737fcf32573bebadf549802a2f922ba75", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_section_bodies_ok_2]", + "fixture_hash": "0x53c2dbf1fc5a6dc3f46ac409a9c74d6aba5da0f636e3933939e64e09075e1d44", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_nonzero]", + "fixture_hash": "0x8712f8bebca2725ade1626ea40298705a4782877d0f823d32b5bb0e6422d618a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_nonzero_1]", + "fixture_hash": "0x80db4198d68385ee232a0ee1c02a36bf6647f3e4443336a2070b497261543992", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_nonzero_2]", + "fixture_hash": "0x14f88d786ebf6523c851c9ac3f79e6817f083bda70a28d7159c2f7cdedf125ef", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_nonzero_3]", + "fixture_hash": "0x77f520eb2767bf9f72fc9806e9d6f6777c59a6a7700a77bfca48edb3de60c87b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_nonzero_4]", + "fixture_hash": "0x70ded21c69d06fe2c9ea75801cff4d6d839f9fa582e0926235e4ac52d39e397d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_code_section_contents]", + "fixture_hash": "0x798b43954e4dd4c040bc442ec5170958145f08bff53f621e2b0308f1d330874d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-incomplete_code_section_contents]", + "fixture_hash": "0xd01195b3d6ea1064de225a65bb7f3bc71af6a2c1e10b37d7985ea51455c762f1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-trailing_bytes_after_code_section]", + "fixture_hash": "0xaf25da75a0c7e8b4b56c2e53cd429d6a04a102af669994dd5a2f200cb0b0abb4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-empty_code_section]", + "fixture_hash": "0x123cee4fae393f84c913e3a2fbc9a100a5d6ecf423f9d7de3f6b28b197d48fb6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-empty_code_section_with_non_empty_data]", + "fixture_hash": "0x704ee4ef029be9e1ab7ea468ad34fce8e329e12afda2412d2dbd54b72e88b4e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_data_section_contents]", + "fixture_hash": "0x8884e3db8162ada2d26947c9325fab18dc15b7fb9c41d0d540f9a78b651df179", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-data_section_contents_incomplete]", + "fixture_hash": "0x6aa98a16c2ded053d5c133f8e6de756775fdbdc07424de1afbd046582f0d2981", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-data_section_preceding_code_section]", + "fixture_hash": "0x6fe263447f3eb051d64e8a680878d9321fc41ba92787d488684c99f60c8968a6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-data_section_without_code_section]", + "fixture_hash": "0x63f86d64491225938db647e2613df7ed82988e58afd839221d2f6a39d6c3c360", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_3a]", + "fixture_hash": "0x9c039d488c2ac156f82067472edd2f533605741ac95f4743ebb478da9be3289d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_section_terminator_4a]", + "fixture_hash": "0xa1a05de2de5582f2b5ca7a8ae5ab2bde675130a7d57513669d9743fc12767d23", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-trailing_bytes_after_data_section]", + "fixture_hash": "0x6af0a42c0956fa8324f1dc7b5864d43b49abc38291c39abc831745d97d2cb9c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-multiple_data_sections]", + "fixture_hash": "0x63704c41187850bce371d0fa85a0dc10b771ea087dc40b15192e43655e730169", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-multiple_code_and_data_sections]", + "fixture_hash": "0x94d7b78285183def422992316ad2d0b06da245f8b95de030652c9b4e7a282c5c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-unknown_section_1]", + "fixture_hash": "0x9a9bd67573aac783db1598989c76966c8e8b6a9adb7592cbad621dd89620ae26", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-unknown_section_2]", + "fixture_hash": "0x2e3483552b2d4a1dfbb3bec355db744a7a57c90dd1e47d1d49a23277d9a6e2d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-unknown_section_empty]", + "fixture_hash": "0xec0b06d4365443db7fd82766b296b2d55f227bc22bc5c3248489f2e7aa5449d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-no_type_section]", + "fixture_hash": "0x1dab24863aa02f4ba4676e962c88da46ec4c70a50a8bf9edf77b2b52348316a3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-too_many_type_sections]", + "fixture_hash": "0xb5fb462ef30abfa615d1e8eb76c832590f7a14ac925fa8981b03dc1777521f5f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-empty_type_section]", + "fixture_hash": "0xa61480f596e7542a4048f047933dc094338e9ca8e5b4b4139564c8818e77165c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-type_section_too_small_1]", + "fixture_hash": "0xc4c0c696859ce87f7eef33a88147ba098941bd64d49ae64abd4b70e923b8c540", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-type_section_too_small_2]", + "fixture_hash": "0xcb7a1b05a9cf003170cd89180f270aa63f7a2c9d66bcda69e069f359de8d82e5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-type_section_too_big]", + "fixture_hash": "0xabaca3f1bb427a8e8843e2274ca9a00f8c4d096cc00b67fef4914714019a0d35", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_non_zero_inputs]", + "fixture_hash": "0x6e28ce389b0de09441e3f9c4ff4a5d702d2027a1fe987fb96b91991baeec083c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_non_zero_outputs]", + "fixture_hash": "0x474996fe40a6e627c1e8e352e14820e779bccffa4bb21944af14428bec78334b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-multiple_code_section_non_zero_inputs]", + "fixture_hash": "0x6c1e2dd8bbcad553bfcb2f142628ed6cbfdf52003196bb536a2eb1db777eaf55", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-multiple_code_section_non_zero_outputs]", + "fixture_hash": "0xe5c36499f043c54474f8d202e2f887279c5bc05117cdd10404a858a6dfd4aeca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-data_section_before_code_with_type]", + "fixture_hash": "0xbf23778e6d796c078508b05b4c1cc713c5b70dfd96461ca970259364dfa25a45", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-data_section_listed_in_type]", + "fixture_hash": "0x74ff7817a2f29fe38b17d19318ed729423106e62e231e46dc7ac7ef43ac9b777", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_incomplete_type]", + "fixture_hash": "0xde2de37dbe0cbaeb519613b8912081a6f39d47b0e08c5e2c3f0510f67445443a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_input_too_large]", + "fixture_hash": "0xf5f30fbdca3ce117c91d1e45dd8fa512899275d79b29aa2a570ef8f4f6cf443f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-invalid_inputs_to_non_returning_code_section_2]", + "fixture_hash": "0x5f05123d3f0e5294c208ae12b8bd339633b359850c8229ef5fc2aae97d85bd4f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_output_too_large]", + "fixture_hash": "0x5fda5f68a48cac6c23c865b0c1c5a2659f43f0b2f529128c7fc654f55e9fd28e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_code_validation.py::test_legacy_initcode_invalid_eof_v1_contract[fork_CancunEIP7692-eof_test-single_code_section_max_stack_size_too_large]", + "fixture_hash": "0x2982d1206037c6df75eecd72936297a2e5b6902d3af9867e13750de66c4b48a1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/code_validation/legacy_initcode_invalid_eof_v1_contract.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-container_position_0]", + "fixture_hash": "0x4786b18bf9fa5a05b552e726bb1127397c6cab07264b4841ddb7db4f1c62f964", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-container_position_1]", + "fixture_hash": "0x929743ec67fa264232183deeff32bb44b504bbb0c8bcc08269d3321ab449f860", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-container_position_2]", + "fixture_hash": "0xa5668ac94a0ffa3c46c55a49bb27a50dc1a1c7e69e00c44be764b5c3deb68fe8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-container_position_3]", + "fixture_hash": "0xfd175b2e9a0b12cfd863efc970c006016e741de8b9586e8b6d083ff15dc66cb4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-container_position_0]", + "fixture_hash": "0x756222afb484559f2ae32012609332f4d5d01997c1fb76720117fb31a67dd349", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-container_position_1]", + "fixture_hash": "0x79eee5bcbf88bedc40c6150c81c5fb3e5555a51a65ed1da4a1b22e34c7d43229", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-container_position_2]", + "fixture_hash": "0xa5668ac94a0ffa3c46c55a49bb27a50dc1a1c7e69e00c44be764b5c3deb68fe8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-container_position_3]", + "fixture_hash": "0xb1d285f12012fff69a2ae797ac45153311565777e1bb4ddc08f0e76be258feaa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-container_position_0]", + "fixture_hash": "0x252b28f8ee5c9d0d174551044ea1d2da11b64ba50ee99f710f1d36ec022bf638", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-container_position_1]", + "fixture_hash": "0x2d29edee97e724bb3bdc67c9b2fba9f77c314a85e59da0bd4568c3cc5d8c7f9e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-container_position_2]", + "fixture_hash": "0xa5668ac94a0ffa3c46c55a49bb27a50dc1a1c7e69e00c44be764b5c3deb68fe8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_container_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-container_position_3]", + "fixture_hash": "0xdbba73ba3cfb877d9871d4b9267c4bd4d1f50e20fc7c184d4fe962d7f7e6fcea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/container_section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-section_test_SectionTest.MISSING-section_kind_TYPE]", + "fixture_hash": "0x9e8e1ed5dff322c0eb9b7f228facce9334fd88c530ba2ece264b07707d6eb01b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-section_test_SectionTest.MISSING-section_kind_CODE]", + "fixture_hash": "0x9060b40d78ff5ac2abc6c06249ee81b7136b0e24299c5fe70a3560318b213a28", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-section_test_SectionTest.MISSING-section_kind_DATA]", + "fixture_hash": "0x5d07f5741b4d5b90d3278c88c03273f0fbf1a0ed49a1b40ff4b859dc04287df6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-section_test_SectionTest.WRONG_ORDER-section_kind_TYPE]", + "fixture_hash": "0x22c515f3d8f3a763813279d64c881b28582d86aa582352d296f2fd1ad5c87c57", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-section_test_SectionTest.WRONG_ORDER-section_kind_CODE]", + "fixture_hash": "0xca77704f237cd8c85e340d729d3a7688b2995a2fcd35cf27d5cdc028c4439d3d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY-section_test_SectionTest.WRONG_ORDER-section_kind_DATA]", + "fixture_hash": "0xa60a15a7919d41e6e06a602abf3a57168bb894c181c1ce78660e57931d1743cc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-section_test_SectionTest.MISSING-section_kind_TYPE]", + "fixture_hash": "0xfb036d9d861bdadc28cdd21a83148de1fec2c53e0b73e53ad4e839a800216fc6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-section_test_SectionTest.MISSING-section_kind_CODE]", + "fixture_hash": "0x54abf42d0daa62cb0a0a53bb10544ad62cca257a5c587ef066e0736b6edc2210", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-section_test_SectionTest.MISSING-section_kind_DATA]", + "fixture_hash": "0xbee01e6b1f27263a93a7372b69c80f7c2aa032ebeb75bdd4e4dea887e5f1122c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-section_test_SectionTest.WRONG_ORDER-section_kind_TYPE]", + "fixture_hash": "0x11d1562250eb9853fa9c6aaf9f6ee615bccd63f6d7072e8658f6b4753c7c5f0c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-section_test_SectionTest.WRONG_ORDER-section_kind_CODE]", + "fixture_hash": "0x38ed88bf0409b547fb6cc08e1b77df49bb81571ce4661b624cd6134543e966af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.HEADER-section_test_SectionTest.WRONG_ORDER-section_kind_DATA]", + "fixture_hash": "0x3f4874b29a197d273a13e7e9cb1bb698c756b339f07fb79728d6006383503a3a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-section_test_SectionTest.MISSING-section_kind_TYPE]", + "fixture_hash": "0x52dd395be44336be35ef8f397da2fc92963ae6d5cbd355d4c143fb26a5a6b3c7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-section_test_SectionTest.MISSING-section_kind_CODE]", + "fixture_hash": "0xa831d72db88602f82da4182b8c04be2a26658d227c98bdb68809e3effa7904de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-section_test_SectionTest.MISSING-section_kind_DATA]", + "fixture_hash": "0xe9a05ae7678958694ed4dfa1249e99f4e19aee556efdd7566bba4aebb71b6209", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-section_test_SectionTest.WRONG_ORDER-section_kind_TYPE]", + "fixture_hash": "0xccc41f55e5ee6fcec6075b63896eca51602be4177033324131bc9ea470f302e1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-section_test_SectionTest.WRONG_ORDER-section_kind_CODE]", + "fixture_hash": "0x7931cda5937042ba527261065a9dbb8668db7874ceeebda711d63ac570ba9cc9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_section_order.py::test_section_order[fork_CancunEIP7692-eof_test-test_position_CasePosition.BODY_AND_HEADER-section_test_SectionTest.WRONG_ORDER-section_kind_DATA]", + "fixture_hash": "0x805d0692e3f7330386f0a9dfaec33e9a3662c20a49769a52a6392ef9ee14c34d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/section_order/section_order.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_section_after_end_of_container[fork_CancunEIP7692-eof_test-1st_code_section]", + "fixture_hash": "0x2b27e90b3fc5098139c2cecebab37582b8192bd5f33e1367605942a99c5faad8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/section_after_end_of_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_section_after_end_of_container[fork_CancunEIP7692-eof_test-2nd_code_section]", + "fixture_hash": "0x6ad7b77e867bab51f5729d32cda17c229fddb7a6c0f163e9bb105530df86ed81", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/section_after_end_of_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_section_after_end_of_container[fork_CancunEIP7692-eof_test-1st_container_section]", + "fixture_hash": "0xaf694ecf71994ee30a3d24cb0e634f9457fb43ef6be9f17da44167209355fea0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/section_after_end_of_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_section_after_end_of_container[fork_CancunEIP7692-eof_test-2nd_container_section]", + "fixture_hash": "0x25111fa2d62a083ccfa5c10e4e347f71ff32b32cd801012cb87a9259aa238a92", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/section_after_end_of_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_max_size[fork_CancunEIP7692-eof_test-over_limit_0]", + "fixture_hash": "0x8ef82b713552832ad3e2ea7c83223b5c264abe2cb3ca6a918adc8e52b27280da", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/max_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_max_size[fork_CancunEIP7692-eof_test-over_limit_1]", + "fixture_hash": "0xfcda73a2ea749fdd885fad1660d2a06124a56201a598cb0e26e8ed353143ea8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/max_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_max_size[fork_CancunEIP7692-eof_test-over_limit_2]", + "fixture_hash": "0x799b983969491c9cdb443418fab3da0ade1ffe57b87a6a0071fd65de9bc9d9cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/max_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_max_size[fork_CancunEIP7692-eof_test-over_limit_16384]", + "fixture_hash": "0x530e5c91fdbc9fbad64246100fc4a5151f97f31f04cd5fe422a732d707ba95a8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/max_size.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_above_max_size_raw[fork_CancunEIP7692-eof_test-size_49153]", + "fixture_hash": "0xc3c46f2c2399f706a5b1fed62d4d0ddf3e53fea00b8984eac3e9c345ffd87dfb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/above_max_size_raw.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_size.py::test_above_max_size_raw[fork_CancunEIP7692-eof_test-size_98304]", + "fixture_hash": "0x6f3f5ce22d276b101793cadc1f0299aca01fb026a9c4311c20855861627c9dba", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_size/above_max_size_raw.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_eof_example.py::test_eof_example_parameters[fork_CancunEIP7692-eof_test-code_section_code_-exception_None-data_section_bytes_b'\\x01']", + "fixture_hash": "0x98bf2e7f4a27c0af8612ec8609beeb897def44d489e4119346686fa80ae3ae61", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/eof_example/eof_example_parameters.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_eof_example.py::test_eof_example_parameters[fork_CancunEIP7692-eof_test-code_section_code_-exception_None-data_section_bytes_b'\\xef']", + "fixture_hash": "0x45c640d20b9938644deb69f0657808813ddaf56774aeeeb57a66bf984f804e07", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/eof_example/eof_example_parameters.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_eof_example.py::test_eof_example_parameters[fork_CancunEIP7692-eof_test-code_section_code_-exception_EOFException.MISSING_STOP_OPCODE-data_section_bytes_b'\\x01']", + "fixture_hash": "0xa18294ca43118f7e64bd3f7dc2c9b0042d63151c8a3918f949a806d9cf0ce8c8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/eof_example/eof_example_parameters.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_eof_example.py::test_eof_example_parameters[fork_CancunEIP7692-eof_test-code_section_code_-exception_EOFException.MISSING_STOP_OPCODE-data_section_bytes_b'\\xef']", + "fixture_hash": "0x6095b99c072661c797e3f016a70380ba190747fad3c37211d8e091913e0f07b3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/eof_example/eof_example_parameters.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_eof_example.py::test_eof_example_custom_fields[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3734b13e6b99f5db04eae9b5419b6b9937149e2e5ae9f1efc01a89a3112c6404", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/eof_example/eof_example_custom_fields.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_eof_example.py::test_eof_example[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xf91c0d32c0e59772417a3e223b57590c91593cb17369253549b946f971c5fcbf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/eof_example/eof_example.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_after_stop[fork_CancunEIP7692-eof_test-opcode_STOP]", + "fixture_hash": "0x7284e88f23af7a61074adee2222ef6311f561f7eafe44860563db731dc35e0a5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_after_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_after_stop[fork_CancunEIP7692-eof_test-opcode_RETF]", + "fixture_hash": "0x6736229144308422e7aa85469040c9b6b78ffaca843ce0721789ccc52de2e6d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_after_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_after_stop[fork_CancunEIP7692-eof_test-opcode_JUMPF]", + "fixture_hash": "0x54f3c2cbf090715dd30127b18c3e9911c4105519261c9c6936f9b5bc77442691", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_after_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_after_stop[fork_CancunEIP7692-eof_test-opcode_RETURNCONTRACT]", + "fixture_hash": "0xf3dd369889f97f4d976a7a3541464e3c22c3a358dec947a1bcecdadbd891e251", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_after_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_after_stop[fork_CancunEIP7692-eof_test-opcode_RETURN]", + "fixture_hash": "0x69d135a2ff893888a7b37bd28b23b00634cbb90be9270be6fae8a9518ae4f7bf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_after_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_after_stop[fork_CancunEIP7692-eof_test-opcode_REVERT]", + "fixture_hash": "0x5eff13700d911e115a178506f452d276c78d295474dbb3bc0c24e2e04e97c438", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_after_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_after_stop[fork_CancunEIP7692-eof_test-opcode_INVALID]", + "fixture_hash": "0xca2216e26eeeef02c17dfffe10bada6bc108e56629567b52f9ec69ce6c5bc315", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_after_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_ADD]", + "fixture_hash": "0x8213240eb97fbb0d666afa226ca64447e87b6b7cb12a2f053a36197eb75bb1be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_MUL]", + "fixture_hash": "0xd456eb3b02d946599a69c500f94f4536ff45fa042cda744bda3ea54c6ea2260f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SUB]", + "fixture_hash": "0xe024548c044246d29cadcb6ef57ee6caebf3c060e4e560f304d958dc29c4bee0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DIV]", + "fixture_hash": "0x3a328c2627e741e8d8cbfbd0c93ed5ab9b91a405adb4f9b8cc56044006a91e90", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SDIV]", + "fixture_hash": "0xaad948f1131d870640a5703e12abb258dcba6796a19a49cf7bcf4ca675cdf2dd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_MOD]", + "fixture_hash": "0xdf2f8f1134cdb136859d91d7b41a7a8376374b294805daaebd9a66c8885643ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SMOD]", + "fixture_hash": "0x5d6a52f0375f9a892af81e4de7919bf94a7855a1dfa0e61eff4e22e038d9dd4a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_ADDMOD]", + "fixture_hash": "0x7e346c52eaf5e518878223f8c51147798d64ef4b670e3962a3d1335db76c9ace", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_MULMOD]", + "fixture_hash": "0x2be6de285cbc7e933683999881d65ec324a85c4f4e3ad83bfa61581805ae8dc3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EXP]", + "fixture_hash": "0x590254945e5c0be509186f42a2bf1e0b22a9dfb17699d6eaa750dd8c9f14e7dc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SIGNEXTEND]", + "fixture_hash": "0xc321d143b4c343a2ad90193205547d8a2553669fcaf94f395728e10af94a5979", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_LT]", + "fixture_hash": "0x6b5ee99931fe89e15a22a4314e14a2cdba055e3ada80834f0e5255b6c8b06a50", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_GT]", + "fixture_hash": "0xbf793efef2b452f71129fd140dc02e13c8ee7988afda02b13c57c4212664ae7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SLT]", + "fixture_hash": "0xed767312a7cb507b39a456c3d32921e5fa269e6feee40293f7f262a85d6d55fd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SGT]", + "fixture_hash": "0x5c9a119f1200867ef86412986f759c625f032168349faffc856d53941e8ab7ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EQ]", + "fixture_hash": "0x842a867357f6cb7e67f4c2cba2b2b50f2d70725717cfbbb8c2f34026350fa898", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_ISZERO]", + "fixture_hash": "0xb408c4f37a8057e5096ab8187e5d311326d0f4b18cd3ae5e71e9aa44629bbbc9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_AND]", + "fixture_hash": "0x4bab15ccc3c33e9bd96f1809ae1c82f483d1025d0b8a1857ceaf6802b1a9a6b2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_OR]", + "fixture_hash": "0x47346a6bd8f2cf1ad2be0c08ef4bb1abd9b6e5580593bd9a468d4068981756f5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_XOR]", + "fixture_hash": "0xaf705dc92c1088146a0ff0ca79d29b8fa32ddd0751caead61eb8485a45eda6a5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_NOT]", + "fixture_hash": "0x87db1525a8b5149ad8212a95d428c34412f0ee305d24ccdfb6235b878bdba374", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_BYTE]", + "fixture_hash": "0x3bbfa4e16b927d567cc8e76b1df5f6b6a5cb75809e893c75d9a7fa59651cd8b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SHL]", + "fixture_hash": "0x4ce4fd9894406d1c0e968d3d7dea02ca2727ba5fc1cd6adfcd142f14aa43a4a5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SHR]", + "fixture_hash": "0x8239ab3d4efbc8b4e1cb79374495dae6cde912924cb16ddcc9af592f901fd398", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SAR]", + "fixture_hash": "0x4240497cb0a60b59b7f27d2be123478a6bb9cd5bac6b85d69fdd3d578ecefe34", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SHA3]", + "fixture_hash": "0xb29972884a0c4ab7246bad37e8b5fc4fbaa8566530712ea6367d225370dea67a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_BALANCE]", + "fixture_hash": "0x69e54f8856d3be6e953c214389a26c479d2f62ed660ef8f598bae009d363ff5f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_CALLDATALOAD]", + "fixture_hash": "0xdfa34371919b40a4c69ff1b87c5801951d9a3a7c62869d3dc870021a1e3b841b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_CALLDATACOPY]", + "fixture_hash": "0xc3a41f787f53c107f95e3d6b6cc95e4c9fc6f2a7f9ba3c39b1ee3e9db6ea4d74", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_RETURNDATACOPY]", + "fixture_hash": "0xa9a7d898493eabed333da5249c8b9077daa3b5a855d2ad86f93479d5975ce72d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_BLOCKHASH]", + "fixture_hash": "0x679e22cc28a19a2476c2ae4ca7fd74645cc5cffb3fd71a5c216f22bec28a7eed", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_BLOBHASH]", + "fixture_hash": "0x4cb342df53f49f3fba77ee9870f361c4de369c6e2ea30033e36de4c4de4f3a49", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_POP]", + "fixture_hash": "0xd1a416e261f1c5ba97ad5717d454ca60e0ddad79c60ff92c8252d261f8d4c5f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_MLOAD]", + "fixture_hash": "0xa322286d5c17041e48260e599635510a6b3058b131e7c995afe774f1138ee316", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_MSTORE]", + "fixture_hash": "0xbb3120766e43b5ae08bede97a7466e99ee8f498ff156198677ac29aa26ff2511", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_MSTORE8]", + "fixture_hash": "0x954bd6fa295b0fbb6d07903e91119a4d32e26ebcd8071f6e3c67e90609833846", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SLOAD]", + "fixture_hash": "0x4d4a4213971bf61fe5f0b441c15ed262474a6a80ad172417cc7193126d337ede", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SSTORE]", + "fixture_hash": "0x695db2380eef8561bf335577ce8ec14bcde2fbf3a3722f7b87b8630959e37e10", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_TLOAD]", + "fixture_hash": "0x56d50df800822cd086c00807ec1941c72a4ed1096bdbbb803ce43eef39de97", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_TSTORE]", + "fixture_hash": "0x95c7221bc02ada6920792f3f258759b9ae36f1887cfe26d59a148be024f08c54", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_MCOPY]", + "fixture_hash": "0xaa10bb2fbcd1255e4a51f91401a4a08bc09a13e824d310e58c5d33b2ec09e6a1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP1]", + "fixture_hash": "0x99dfd8aeebaa7a026c8c33b08a06cddc4005d5cd5766def53a3450f24cb73d91", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP2]", + "fixture_hash": "0x8b51a4c46135c991bf228ae3c10dbb2334545f4ad4ab0d9a9b7bbc6c0b93c13d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP3]", + "fixture_hash": "0xa10ee29692c0392607768c6b6aa8dcc6e34cc6dfcc98c497a001b9dfed04c7af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP4]", + "fixture_hash": "0xb8b1d2fc2cadbf5527108335e4b49d4f860327fe345eb55d49c112713988a110", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP5]", + "fixture_hash": "0x54257bc1c9f2f3361017479463626f649ce5c0c9c1aaf5ad10ad2ee3df2f76c7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP6]", + "fixture_hash": "0x780f647a2d1cbfa9ce215b9c7c2071915f2afb29a6a111fac0d1991b3f8bf909", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP7]", + "fixture_hash": "0x819a69cb73974540b9b5c7240063c7081c5d838db82dcbb8596b32f4826b2985", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP8]", + "fixture_hash": "0x3c33a875ff750d8b91a0790f2b58811cd152a6d2863651719dc068b6e1796635", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP9]", + "fixture_hash": "0xba11dbf305fed6e166c635a4d7ee2cb45039ccf12a152717b3a50b5c4909d9af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP10]", + "fixture_hash": "0xe0cd3dad6640e5b07bc482d47b99bc0f0bc945c3aa0ffc6b5723ffa78905e6b5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP11]", + "fixture_hash": "0xce63957d6a906a1e9d2f2d7feb11474644f300f5cbf479e15d858896f079ff4e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP12]", + "fixture_hash": "0xd1972e3c7879b8eda8301bd3f0ab6eb0a076d9f77ad39b64ed7cb6be3f17e772", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP13]", + "fixture_hash": "0x2cb0581be201d058d9c6210ee776714d8a6ede511f2d210262b3fe0cf1db4e6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP14]", + "fixture_hash": "0x82d58e2e33ed30ee54adcdf08b776d0734687bccab4097efbda22d3edd7590c5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP15]", + "fixture_hash": "0x9ee6cf535e2c1ee5d86bb14749eab61800a9fb766803dbf34c6384680fd07ea6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUP16]", + "fixture_hash": "0x74599c206d7639989871649199a124ec3d83741252e64c1b2aad74aa1ab46c83", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP1]", + "fixture_hash": "0xbbba182272f9738770fcf2562a905e61a14187726cd8df0b6b604387fba0a747", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP2]", + "fixture_hash": "0x8b4438979156145e8b1d77da698c51540934668b30b209c2cc22d5251073d2d3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP3]", + "fixture_hash": "0x90695bcf2387d8d84a6f3fabc9b7e9f77aed76db07484374786ec3b46734c85e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP4]", + "fixture_hash": "0xd0273999362a21914dfb79cc9ffc7103d169d3ef0e477fb705fde5a20ac1b0a0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP5]", + "fixture_hash": "0xa5e73875fc111053757e373c5b2a5074ceb01c9697f72fe9ba5eca1747f5b81e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP6]", + "fixture_hash": "0x88c3ac7e36975247e5adb94f9635f983c9bf3be8208faf9db391bf1801712594", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP7]", + "fixture_hash": "0xe5be3e032d667dc73f5bdd891a6e5402ab4cfd8ee28defc5a036835c78441ff", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP8]", + "fixture_hash": "0x50dfb6be1f5991315d858f7d35e0a953929c05b5dc5cee7d399d6428e14d37e3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP9]", + "fixture_hash": "0xaa3184c165b760e7f0bb01614a51a1a7e3d79a5a1b9ff2eb16ceba61fe0c7229", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP10]", + "fixture_hash": "0xa9351411a00664bd5e03ec9f02941bc7656637d5fa0002023f3d2886f39aae16", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP11]", + "fixture_hash": "0x290fd260e3cc0e2e1dce56e0c60cf40cd5fd0974451799a988b4eb9f9041c16f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP12]", + "fixture_hash": "0xf309412e9ae439f79799df8486692b6ab0f0b6921b1ccc57b03d46e1b1c848d8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP13]", + "fixture_hash": "0xbdab759a334c8aafeb23de43c78ac3816572bbfe7a17cd8f4fb5f0909b93f62c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP14]", + "fixture_hash": "0x578e3f9d1ef468f2f9378d2a2a94a0146910c828910649b26c1b764e3f0f834", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP15]", + "fixture_hash": "0x75a6633b57c52c83c7de186d437ac60954ccba61c9fdc0c1328bf65a091e22a8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAP16]", + "fixture_hash": "0x367e37b02bc9dfafce4fe8b6e0d9ff8d2f3a1cdd9b4a4b79cfa4009ab2b96486", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_LOG0]", + "fixture_hash": "0x59a2e907e597d81ecd34931b657eb74437eccba0131151a09b6443ad17cfe0f2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_LOG1]", + "fixture_hash": "0xdca568ec1b1b4ee514b7eb2342443a3ac403a9f91c350118fe4776f1eb652f0f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_LOG2]", + "fixture_hash": "0x6b194baca10360b98e4af2f406fdee2a14ad77d202f86fe3424563cd6314bc36", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_LOG3]", + "fixture_hash": "0xb63258f2cf7cb7025d3ed0c1e2e0a3ec5c2ac7850749b5e85852e6855b097311", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_LOG4]", + "fixture_hash": "0xefde0b2b2c5dbde4daa3589491683507ba414f0d4c277832218464261a4af11a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DATALOAD]", + "fixture_hash": "0xe0dd751eadcb40117a4fbb7b2fd2c1bc8cec63ad98f76d5c3909166b56fb1fda", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DATACOPY]", + "fixture_hash": "0x588bf16f34958b24fc51039337ad9c065e9ca0508b05102fe1b53e1fdf054882", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_RJUMPI]", + "fixture_hash": "0xd682cb089e05a5434b0df79e12b4a05c54b6e26977eb0d991aa4a21ca73a758b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_RJUMPV]", + "fixture_hash": "0xf279c91128a3d1460be3ff105ee9221caed7edf1d8e7ffa44e926947cd228e20", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EOFCREATE]", + "fixture_hash": "0x6be107504789415c724215c433e914ebad3e1ca102f7c7235bef4ce9b55b5d3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_RETURNCONTRACT]", + "fixture_hash": "0x802befd9933ae24dd34a808f6d9cefeccffd6a11c997a30337ead3d1095758dd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_RETURN]", + "fixture_hash": "0x2f92fe7f23e8ee56633ee15c447396c02608c3472353cd8cac0ec8f027c109f8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_RETURNDATALOAD]", + "fixture_hash": "0x91274724789f237aa3bad7778474c18701f0fab0cb51cc8c1f8e246c5672fc2a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EXTCALL]", + "fixture_hash": "0xce18fdc7b10c4f638cc5740629af40dabd53b130b01cd9e44e4cd39a6eb2737a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8a996117527e8ad6fc3351df9cbc69ac49f3e9a46e77e7e7cda4f89e6d7588df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd9358353b0a128c822040ecbe33336f5bac4073732205c3d33fe9defbb954d43", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_REVERT]", + "fixture_hash": "0x94cf6ef0d3196e7021a9348ba2ef450e5667e18f6d68d1e99f5850749e5a4452", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAPN_0x00]", + "fixture_hash": "0x23dcafa3a3e280e9d434220c1b75396fbf431cd4e8e40282cd5bdfcea41671a8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_SWAPN_0xff]", + "fixture_hash": "0x5c78067f1585431a9a3c53f1fff3b4cc58dae56a37b1512381f9f63d744f6188", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUPN_0x00]", + "fixture_hash": "0xe9690202970b4b3ea64736ef062a7e63e19c8ee92c99b1e62864cf0e4b2693e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_DUPN_0xff]", + "fixture_hash": "0x14b9a455ac59e110bf581887549e791848a7523ac1aa449aabca1e0b500a6331", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EXCHANGE_0x00]", + "fixture_hash": "0x2790bd768be1f5453912373289c5a80c3ee7693490ed8e480f413f8450dc80d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_underflow[fork_CancunEIP7692-eof_test-opcode_EXCHANGE_0xff]", + "fixture_hash": "0x2b2cdcbd928492fd62ba565835243d2ebb3856e182ee2672296d5c6dba80d241", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_before_stop[fork_CancunEIP7692-eof_test-opcode_RETF]", + "fixture_hash": "0x11633deda9ebd7963ee29227ac31571eef567e99ff2a1cf2a760bc3b2643c51a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_before_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_before_stop[fork_CancunEIP7692-eof_test-opcode_JUMPF]", + "fixture_hash": "0x1254fe195b39f13e7a1bc4eaef69cb2daf2ff75c26257e559cfad89ea56085be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_before_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_before_stop[fork_CancunEIP7692-eof_test-opcode_RETURNCONTRACT]", + "fixture_hash": "0x8eb4f11c5360d348c6bafdd5463e45fd3a3d499891b0ccc9b807fac404dd7cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_before_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_before_stop[fork_CancunEIP7692-eof_test-opcode_RETURN]", + "fixture_hash": "0x821f2ca5c472e4f4758880af63a1204ddfd8f08daa7d5bd28b6191f68694f0b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_before_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_before_stop[fork_CancunEIP7692-eof_test-opcode_REVERT]", + "fixture_hash": "0xbe59aacbe46d7e3e019ae37158e54e52521d1759bbeae3be840fb54b405abf14", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_before_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_unreachable_terminating_opcodes_before_stop[fork_CancunEIP7692-eof_test-opcode_INVALID]", + "fixture_hash": "0x1d5af4b3c58a965b037865ef6c17d5d123d6fb46c854eee9cf07415b08aeb63", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_unreachable_terminating_opcodes_before_stop.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_ADDRESS]", + "fixture_hash": "0xce23e9d22ad1cf9df03ecc4981f297f834cc8a5092fca7b6cb664445df0d1a81", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_ORIGIN]", + "fixture_hash": "0xd8431892800b5c149d3da356f5c04da983b54c7259c44ea9645ecc42c9d6c614", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_CALLER]", + "fixture_hash": "0x2c10557e3aadefcb1df2a8f7cfe438ca14a534aaa531bf57954d9c6093cbb483", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_CALLVALUE]", + "fixture_hash": "0x32aa320530fdea6137a90c0e284bcb1514f384a990f4812c661187e8211a96ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_CALLDATASIZE]", + "fixture_hash": "0xb2c76c7e34360f2d7121fc45662e14afcd6b6a8ce6e547fde17d96d7b85d14bb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_GASPRICE]", + "fixture_hash": "0x402dbf27f8b1f2bb185fdd6c40c451f53388e469ee2e29c221e93e219559272", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_RETURNDATASIZE]", + "fixture_hash": "0x9ab1d7aa8c04bf3284cc0c869ce84211f3553f3d01ebeef50f2fe50c2494acea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_COINBASE]", + "fixture_hash": "0xd9d93daa773765dcf101467103af05c50713e4f33639b0af02f089576015bc93", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_TIMESTAMP]", + "fixture_hash": "0x1bbaaff3b3f764c8578df273dc3ec9e06573d762f0f7976f2b46f652145afd8a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_NUMBER]", + "fixture_hash": "0x8c91170974b5bc32ced63d827154787d320bdd3a42eaaa3ed8424b4c86f78360", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PREVRANDAO]", + "fixture_hash": "0x481d9d83acdeb1ec4eaba2505d14a91cd7181484c01930c6757cf5c4f1776b5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_GASLIMIT]", + "fixture_hash": "0xf73b08e3a6a57a62aec258b03319399ed7f04f8345b8ffdf8d84c5db8a45e5ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_CHAINID]", + "fixture_hash": "0xd213447fc6df951c2a674f97831f2a9c3c3fb6da05a0b4b935138746b763178a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_SELFBALANCE]", + "fixture_hash": "0x8b1402b831ae7bf7c778c2c13ca17eadf505fc6c127eb0949c20dd68c0c0f359", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_BASEFEE]", + "fixture_hash": "0xc363f061c40109f81923fe8ae0e914488f35d43e46f3529d6ae3a2373bc7db2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_BLOBBASEFEE]", + "fixture_hash": "0xe814ddfd76aa1eb7b740f41cd6226b0e99a464d9bfeaa9f12bc5ab0ed7eeee95", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_MSIZE]", + "fixture_hash": "0x4f3c28980b29e08db6fcb5f6c9a381e2dea4e4af52c79bdf5bea0e0ba5c4d767", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH0]", + "fixture_hash": "0xb658a485003dd05cc2b5e52038367b005fee15887449ed198e1346a20e807cac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH1]", + "fixture_hash": "0x922502f2da673190b132ca1546f13eef1518edc44cd745e98cfe5744fee65b65", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH2]", + "fixture_hash": "0x75693e45d14ae5be4689e851e6a7a312529ebb8b0399b4ce50587a4deac2dd24", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH3]", + "fixture_hash": "0x6d44d2adc5c992ba58f3d2b3b5049798c60ed52a7289edbcc76a2d02f1803373", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH4]", + "fixture_hash": "0xb9e661d2c011ae245e8495f0a705dc61aaaf63b4bd0eb2f094cbd6b8c0f051d7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH5]", + "fixture_hash": "0xce745858a15e51a5c17521007edba36f46bc96d16046f6a552e30f8249a30997", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH6]", + "fixture_hash": "0xc0a743f2fe8eb6667773003b4f241083e15b29f0be4107b9bbca962fe8d78618", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH7]", + "fixture_hash": "0x49314c0973e7cf25c7641b9ac3dbddf37626359a337deae2110e482371b43e36", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH8]", + "fixture_hash": "0x494b3655adfc28af90351836d01f9bf4fe4921d93af812f11671b9bdee2da539", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH9]", + "fixture_hash": "0x27c31e8a004d0f8c16d283b26d90ea5fc36307c47bd3a01a50c8f06c72c524b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH10]", + "fixture_hash": "0x941739e6b139eaf321ee5de0cbb2eecb28ca6ce601442eae5650f69f479fcd48", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH11]", + "fixture_hash": "0xaaace01b6e82742625fe6d3304febece9c2bb3d0ffa7924349645b417049e287", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH12]", + "fixture_hash": "0xece55589d965269e697f779a3426c392d85e02d71774e7385e91b94590d10a4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH13]", + "fixture_hash": "0x754ab55da880b2f4008279b8ae05861ad4a7dc528cb014ec2d5f8bf542bfc78b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH14]", + "fixture_hash": "0xb81ea149bfd41d260a2e4abd9d7f05c4fa130a164b474c655d02e13ec64a02ee", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH15]", + "fixture_hash": "0x13e8517d0e05c6cdc17f7bc0da23d2960d032af8ebe439840b4657a4e021f78b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH16]", + "fixture_hash": "0x59428ea97c1674782456be156f5e291ebd2802bed15a798b98aca476621b483a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH17]", + "fixture_hash": "0x65ba9e6035e453d295095bf1a44794f7f4db36c82c517273d73faf1ab7ceedc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH18]", + "fixture_hash": "0xb29a8da20a28c7f4aef3bf83fe184a40dc33ecdda9d15c35106cc6153e52d782", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH19]", + "fixture_hash": "0xa3fa6ac6be82b3da53142aaa409345e385db9e48e10ba8d8516f7c92a6d4deb8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH20]", + "fixture_hash": "0x5c087f5ea93a57109ceb641cb15c2baf000debd6699350f24d7a33cc341692f1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH21]", + "fixture_hash": "0x2fe6d61f3ede5b1ee0d78a8f56cb79a63677a5e3bc8618e76db99e80482293d4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH22]", + "fixture_hash": "0x9fc47ea733aa5eae0df906674abae072d39666693572f18e7ce35e0e71658332", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH23]", + "fixture_hash": "0x83761bdefccfe8c086d02db0be6ab88cf1d1658b073d028b41d57f0fcaf00965", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH24]", + "fixture_hash": "0xa504e4fb3c65bbeabcedf5f24cb8385baf9d1624261a6c4ecc64decaae006c8e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH25]", + "fixture_hash": "0x2981f49169751b2612253b343e7a30ab3d8b6193db7a544956f0b5f516e080c3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH26]", + "fixture_hash": "0xec03fb6905763330b2963d67b14dbe5457f49ed2167988d3797c48026040d912", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH27]", + "fixture_hash": "0xab3cbb24d4a48143443f35ba989cfb1ddea7cd554fb935483f4c324f0b5020fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH28]", + "fixture_hash": "0xf944497eecd00dc780df21863b462d2880c33e10f3476eefa05a232571568e05", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH29]", + "fixture_hash": "0x41ef263db80b47af95f2767cdf9d78c6165a61d9f9fe23fd324804035794c611", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH30]", + "fixture_hash": "0xf723fb281931068c4a3fd42d913370d52eb002eca91a6b48f2416890961cf067", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH31]", + "fixture_hash": "0x4d1ca36b9031ce02e02d5cfc768067c82778bbd76c652ee34692ec273fc8742e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_PUSH32]", + "fixture_hash": "0x3407137fa02051fa15bb41da3c0c64436126a6d5e6228ffc21ae33b29c09960e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP1]", + "fixture_hash": "0xfad6a63048e17c388a1355b7b79cb6f0bf816e420602b4d7453eb9365bb7842", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP2]", + "fixture_hash": "0xecdcad612d47abcf990e7157eab363f1e0a96fe38cf01b3cae9fc8187dc2ebe8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP3]", + "fixture_hash": "0xca92e99b2fc0b6eae4a852f14efb5c6f5598053c14cb5085abd9db46d93b5a7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP4]", + "fixture_hash": "0xec9ca33a4251c753e7a0cfce7b1b757430ed371149774caf9b74d28a18c1684e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP5]", + "fixture_hash": "0xc6622366990e5a4b409e26fd428c467976339390bb580cb6c9f0993c607db1ab", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP6]", + "fixture_hash": "0x92e65f19cd2bdbf4f218affbf586c193d450471e710dd5badd69e367e8fcfc92", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP7]", + "fixture_hash": "0x55aac1772c49a956956e356eee617557fab196b88bafd071112a0c830cfcb533", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP8]", + "fixture_hash": "0x8239f698221436d5f9f868d47b394bfb2c1793c0396b63314495e9bb10b49af4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP9]", + "fixture_hash": "0x17c383f98012b8a3b0f628af59a0ade84d53780a3e8e459666cad81dd3dc064c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP10]", + "fixture_hash": "0x8e186432e8721b30e5ac2d181c139f6f5ad83339b46bc9ce0b6d225aa02dfcc8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP11]", + "fixture_hash": "0xd1bc0f1a48b5283e686e77a570c9ac79420eb238901e26753ade94a997df8b7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP12]", + "fixture_hash": "0x66704f0e03336df13e8b1ff9f6ec0e16bdebc65a2032cf59829abb4c10243bb7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP13]", + "fixture_hash": "0x7950c725430efb4d5936ebf2873fdd2fecd49945c606b70bcf5b5cd82d4733ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP14]", + "fixture_hash": "0xd86eb0565c962f77e875a9fb20f545e6a271cfca0c4ba120f8bd99e075e4a55f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP15]", + "fixture_hash": "0x88b2ccdef7c22f5e423c7cf1adf11902361ccafe58ebff588f15f0155fb89a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUP16]", + "fixture_hash": "0xf658c50889901bf7d22d047ba164ee2c5e58aadd510dbdaedda0fdf86af73fff", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DATALOADN]", + "fixture_hash": "0x5c79b3c408bd600660eb7c47393c6b9ae2f8e5d0ffe38b9763e2a1c03c03971a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DATASIZE]", + "fixture_hash": "0x7f17a3e2831a6977908447cbacbfee5e7e62ab5b71791bffbb3d294f5e881efa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUPN]", + "fixture_hash": "0xcc199f72b742ecb459c6ad508e0602b397308b40949de56c560b44b250d23aac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.INVALID_MAX_STACK_HEIGHT-opcode_DUPN_0xff]", + "fixture_hash": "0x9a12dc38670ad8d712da6ec4b739b4956da1af675e0d262fe6d0e91f8298508c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_ADDRESS]", + "fixture_hash": "0xcc72a98aee1504bbc090846ab9aeb1ce05f158eda36e84e438aa95376c9aabcb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_ORIGIN]", + "fixture_hash": "0xb49989aaddb58601efbff5122811b4c54933208df72f02086995b464ec3764a6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_CALLER]", + "fixture_hash": "0x844ad1fa28961a2f4a887ea66cd5393efca1d73f990fef3463f62033b56b0b28", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_CALLVALUE]", + "fixture_hash": "0x828aea1f52539474c7f296841e5630eb6decec3cca4f6f7daa9f79654392eadf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_CALLDATASIZE]", + "fixture_hash": "0x9b485bb5fcdceef497241bb189e6882e4f613e1881c0556aa716891ca217a6f9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_GASPRICE]", + "fixture_hash": "0x8407c82f20bcac3e57f99ac3d3d7819cbb39ba7474d94930b9cc6835a4a860d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_RETURNDATASIZE]", + "fixture_hash": "0xf1f82a2948cadceae104171fd26a94a02950ebedda65b47b9d8d15f2723af3d8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_COINBASE]", + "fixture_hash": "0x3737384cae2c563f9c811aff08b542ad3e209fd383e5e468dcc1ae6a7b35721c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_TIMESTAMP]", + "fixture_hash": "0xd309d8eb41b187ade05014c81fe311153cc8ac21f844cfbde2b9c7fcdd9aadeb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_NUMBER]", + "fixture_hash": "0x36d52f7a13b5522c111e6f525109e81d56d2ebee3f9e9f577ccf278a9780fe87", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PREVRANDAO]", + "fixture_hash": "0x5a04e70856a569532e0e0aab4e5df01b48b80a9a551a8a8518bcfa254422af97", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_GASLIMIT]", + "fixture_hash": "0x823c1225a4c437c23d59faf1e5c9da673bff40bab1c3497d9870abbe6a65166b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_CHAINID]", + "fixture_hash": "0xcf4bb91c51511ca0e7c701179ee7ef7231166b300c7da03099735b21186c1f47", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_SELFBALANCE]", + "fixture_hash": "0x618d1714006ed010e473f7855f4840baaf232f50c757dc1bc994ff3db9676881", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_BASEFEE]", + "fixture_hash": "0x443da2fab9fdd2f2e25f78fea3f4ed371c6104bbd350cd9c04ef523089c309fe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_BLOBBASEFEE]", + "fixture_hash": "0xec338f53b66a39e37cc989eca8689d403243807b86d434d3b3dbaab188f50e4e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_MSIZE]", + "fixture_hash": "0x38f6cc94fa2bdb09185ce4ce5c3dcdfbf249057254d7448ef70b1ab7cd1fadaf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH0]", + "fixture_hash": "0x33ee2fdfa8a9c31852f7532440c453e0e8a18cca5ea3602b840eceaeea1e635d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH1]", + "fixture_hash": "0xd25a6abaad4318ab84abc3fe393a10579a557e108dc1a61b8c0532dfb95bbb1a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH2]", + "fixture_hash": "0x461824dae342e1ea8d3050da9ede083f1137fe914f6f4f3d2a8c4ae58ffadf7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH3]", + "fixture_hash": "0xf11f4cec9f9e469695b46dac65494449351fe911f3fe12407246131ed1bac519", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH4]", + "fixture_hash": "0x3a02dc7fb1a9aaefeb93629b919d7ade8ef48a69b52db0d95af836d7e5b0017f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH5]", + "fixture_hash": "0xe5b24c8b2b0d6bff1f71a3827c025680c478d2f0c851ae0360a84aee72ce8a34", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH6]", + "fixture_hash": "0xd4c18fc4515197b9ce0120d0c161be7ddc19b35ac096a1037acab620414f0f62", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH7]", + "fixture_hash": "0x16db0574a18e3156db69c076f449e457944c4ac5a9b7b52ba1da02520df80d9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH8]", + "fixture_hash": "0xaf477cd2476cafbc44e7449a91c85d051ad071b6536cf039ce88e36d4f6d7624", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH9]", + "fixture_hash": "0x79d4845d3554d81c19df60d5a9d868bc5bb1801b9fe746cfe5c6fd2ff3211677", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH10]", + "fixture_hash": "0x5dd0f49ca0e16cf4166756a80e3d082df4612c984d70b496b5d7ccd659cee7ee", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH11]", + "fixture_hash": "0x66e6a010a1db8604c2cf4d6126252d49e8c1a3aea4649b9b66b2ea1c2ff10147", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH12]", + "fixture_hash": "0x1047b518ca921cc5dc727ee0f05d746a3bbc733d670a1b249058f7588d13239e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH13]", + "fixture_hash": "0xaef6a04e4863f958b960ad9d6f9f07cca05e8e3c22a873abea7627296588cc77", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH14]", + "fixture_hash": "0xfdde0701de51e47b14f75b3351d9260b4a6391d40e76a3cb41eaa68313b3af62", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH15]", + "fixture_hash": "0x3ba7e88fcab62630fffae8baf47c3362dfef845104c55bb281460717405d82e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH16]", + "fixture_hash": "0xd1da98236dbeaa81499354c24208cbc4990465b0066b4fc37a83c505bfc2315d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH17]", + "fixture_hash": "0x9a08ae7dc6afd2283523c858dd9740e094d43b7965cf55b36e8da83ccdb014c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH18]", + "fixture_hash": "0x3321354545f9ba1c08dcd94c75d2684e8878b8a4049aec2c924caa6678cd7666", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH19]", + "fixture_hash": "0x1b7e9cceda502d9b1b9c962b819fe917dabb56f77feaa83ab638c736fd26b3a9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH20]", + "fixture_hash": "0xc3c23b28d238a0c2622bdcdd4359f0b59b606acc88320af334afabe828bef96e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH21]", + "fixture_hash": "0x4299e99c1d6c762a0513b571d5b62d29f6974d1bb6535c1ad1e1e3585cd64150", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH22]", + "fixture_hash": "0x3d6a3b116d68993765ab98e4d31acacc75bbe2f212b165168e5035d684d9ccf1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH23]", + "fixture_hash": "0x2ad66732ea4439468b38d927618c38734533212c4ec0006ed349e86417cca316", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH24]", + "fixture_hash": "0xca84e6b494474b8613a62ac36b4233a4012584746cab1a8094b52d75d3cb29ed", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH25]", + "fixture_hash": "0x73023c2003a94c1a51b94f0b6909b9911c8f50d00bbb2ad485a9303498e59fd3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH26]", + "fixture_hash": "0x8af4e33a017492df372c11615513635743ade8b532705da0d369e2c3c5fe8df2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH27]", + "fixture_hash": "0xb0d03bc48ab0524f7bf949439a26cc6ff756fb705290c91d08d5f7d07ea2259b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH28]", + "fixture_hash": "0x3c90a95b284ed7926660d41311c21e8bf0789a3b7f892bec8bfa4a4aea65e153", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH29]", + "fixture_hash": "0x79f07628df6edac93a5a625a09660f00d75a6d5f956030c74b1eb818801a694a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH30]", + "fixture_hash": "0x89ca74a6bac9ca862f8af755aada8f0040e98b0fa08980a3974c1beb960cf542", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH31]", + "fixture_hash": "0xe6fc5547986b0aca7ef6081f919024860ef7bf00846f25b6c02fa1395e8d2d93", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_PUSH32]", + "fixture_hash": "0xe4857d498ebcd879b2f94f58427579be552c9835212d4455201aae642d0c8c6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP1]", + "fixture_hash": "0xddd368b4fc37f41740f7fb250b914507a42675e32e350fdd34ad6ba3e1c0bc06", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP2]", + "fixture_hash": "0xb41362552a47603c494e42be0319467cbb39c90b2f7f2cc4a4a8e58f69bfba37", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP3]", + "fixture_hash": "0xbcec9315198996abf6dce21215e25abceb3315d8454ba4f8a599602f4363ebd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP4]", + "fixture_hash": "0xb1c0270e12c24299c94f327b936d9bd7d9abfca484a71650f37baa56e04967cd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP5]", + "fixture_hash": "0x643c16281012bf5bc5693a4477191d4b35da4daf0b5f597f3e4eb7b059cb5aad", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP6]", + "fixture_hash": "0x1a1efc8749f1ad2458b253eec3c44265d2fc42d6e82274367252eb7f79f3b137", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP7]", + "fixture_hash": "0x18fe7a9bd99fb5d44f49cf1a1f150f9cb762f37aa0ba183d00e581eb874506cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP8]", + "fixture_hash": "0xd725f03187b81d1ab511b4df19a402e040de3a506ef0463ecda1c26e23301588", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP9]", + "fixture_hash": "0xac26caff2ce01a9504d13f5740f059d4f2b074065904375f076933fe5d9ceb2a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP10]", + "fixture_hash": "0x777cab69f514ca9dd734c187750102b6d2e8244b27a618f5d4a47025549302a2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP11]", + "fixture_hash": "0x321b267241eb1cbcf62dbdcf3b3d33e284b046a99472b1fc7b4fb61fb95b5d6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP12]", + "fixture_hash": "0x4db56e2285b355ba6ba57008a87a0f8a1b5ab5f1b60c4838c3b849ba35534eb6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP13]", + "fixture_hash": "0xef85c5c6b10f7eb9fdb1f2224167b9e4034baadd17ea6de9da2045a119110232", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP14]", + "fixture_hash": "0x8394a29ad31c2eae2157980a09720fbfe883320fa98bb09bbf9c562feadf28ce", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP15]", + "fixture_hash": "0xec922088781e2bd304786dee5d270c10b4b91672ddae37d887bbbf74809ef027", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUP16]", + "fixture_hash": "0x4ab7234e13a4545c4922aac80e750d5f0d552313f23c35d7f85ac4ac573baac1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DATALOADN]", + "fixture_hash": "0xa79559572f718f9b83e127276f814584ac99684a27a00ca3658fbb80883b2ff1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DATASIZE]", + "fixture_hash": "0x574fe97e88ca4db3e99e224e92676e0356fdc4fd03800d207b38b4bdc1d01fec", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUPN]", + "fixture_hash": "0x9ae5825162b77fc094b37e7d1463f6686ef39c04f9d63a71abcfb9ae8f4378b5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_stack_overflow[fork_CancunEIP7692-eof_test-exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT-opcode_DUPN_0xff]", + "fixture_hash": "0x18b0ca3f9d341aa83a49e4f9fefebcb003b775997692803f4fc8d764460de2f5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_ADD]", + "fixture_hash": "0x21a3e70c45f6eee25243ce815d64225d0f3ab57c1f006c349e74119ce64e91cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MUL]", + "fixture_hash": "0x8b62d509d498ad569ff0338fead8ed6734961c0260de3ad33a351b64e8795241", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SUB]", + "fixture_hash": "0x8c914706a8e06aab8203e8c15fcdc485e2f5379604ec30da185f7207652869af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DIV]", + "fixture_hash": "0xf78048e6925cc8b627e8a351569bfb3f3afc3114063487b360ccc31db49545d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SDIV]", + "fixture_hash": "0x2a845941d95e4ca121f95bb48be88c3a480c39f323ce7c5f00cf2b744d5cbd44", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MOD]", + "fixture_hash": "0x7a72f155faaf258f66626cd4959304d9c3ef020eabdd050f2080dd93d7a2a4cc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SMOD]", + "fixture_hash": "0xe9b7fe8a05e03d38fe0e6035f0f003477f288b156d344d502f8a97b1d021c28", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_ADDMOD]", + "fixture_hash": "0xf50612096228506914f3a62ae0c50418fceea7817218514bce53199f8d42e5e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MULMOD]", + "fixture_hash": "0xa71c394e5490dbf6d97f3a9be94a25b40bc58fce87b34262eda34e9eedf1f1cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_EXP]", + "fixture_hash": "0x74cb86e0563a88d78529e529b67ddf46f183ee285d23a18ee5c1019601e181d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SIGNEXTEND]", + "fixture_hash": "0xa59aee5c45c29f7c19388c9ccd92fa90bd00b19f54488445b212838b6144b365", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_LT]", + "fixture_hash": "0xecaa309aad36f36fa7dcf08fb9fc86b330d97cec6f00a0da9f865a7e531c930c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_GT]", + "fixture_hash": "0xaf578102163e29ddb5b2bfd4ec0bb345435059a6e2d242d7ccced25c6337ec63", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SLT]", + "fixture_hash": "0x4da803ee87ce2789d107017147f5cd8ea6df554e6825f093d645ccff1c01e750", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SGT]", + "fixture_hash": "0x5801dd392a389b552a91bdd81a1a17254f8e84088c737a02ef9ffd13197a460c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_EQ]", + "fixture_hash": "0xc6460a4a3e86e8db3a41eed087ebb31cf1929febe7e5a2b6cc08076168901bd3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_ISZERO]", + "fixture_hash": "0x1d3b5f789cafbec50ae92c5180adf21cda1cbf67327cc0f32a065f9819f039e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_AND]", + "fixture_hash": "0xe597f9122f7536e70e2c2fa97e019a3fd897c15e8cf2869e984e0dd81280ef71", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_OR]", + "fixture_hash": "0x9c92045f0023f30aa170bb094cc802d9a6bfea6d83c3bd9877b588d56209c5c3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_XOR]", + "fixture_hash": "0x6a1e3355c5f145b5b1e7b84c1b002e1b77e654807b37e6e61d8b20b6ea42e8c6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_NOT]", + "fixture_hash": "0xf0d4d6c8e60eecbb815d93d650c7b2fc2a27ada109c7ec8235c31f75192a1eb7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_BYTE]", + "fixture_hash": "0xea323e8c912ae3c240d747091742370471302875d62aa17b4dd2e4be175edf9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SHL]", + "fixture_hash": "0xf6a4e1beea6f76dfba26722159ba7494dd2408df759c8f6b7c7e6403d507188e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SHR]", + "fixture_hash": "0x1fb1b1886001679c4bd79539853efb34fe5ce7683d88f5453a01434fd8311cb9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SAR]", + "fixture_hash": "0x47b2fe654f9c843346fcf0493eda40bf9ca5caba66754e9f10409b7bc60003a4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SHA3]", + "fixture_hash": "0x7e7e7683538907018587dc31b2b5022dd115b6bd08f2b70847ca93b8afd6116a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_ADDRESS]", + "fixture_hash": "0xff699dd95aaefe3b9110d6dae918db3359072c96de3256f5a058a007add459aa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_BALANCE]", + "fixture_hash": "0x5a5f31dcf25f199d8b9f1d18046900e74232f949052741685833ded17c36cc2a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_ORIGIN]", + "fixture_hash": "0x33e54ba83271cef37e08fe33c9206787b51036642cfbf9b08b8162b0cc8e71d7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_CALLER]", + "fixture_hash": "0x3af2f5e41b1fd1b682d9b437723265b73990ae00a4cee710d60166ef2b7517db", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_CALLVALUE]", + "fixture_hash": "0x3b054e48511a6d332b6f9098a9f66e9ed92b86265457d885d14fb1fe6c4439d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_CALLDATALOAD]", + "fixture_hash": "0x986bd8d80e921ec437f9246abdf17183805842cc125533262005d2af80b50c95", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_CALLDATASIZE]", + "fixture_hash": "0x9c28cfb5b0c87a58987e83630a4f1562a126cf9187fa06e9582a3932fa538f8d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_CALLDATACOPY]", + "fixture_hash": "0xd320e8cb020d181195b0289e2555d6dcf95ae5a34d9cb89634c2edadf5cf8636", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_GASPRICE]", + "fixture_hash": "0x475fbce6ce3814c3125ab175a4ecf345e9cfd87fb4cbbba59f77722e42336505", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_RETURNDATASIZE]", + "fixture_hash": "0xb098f3f0ce552de97d9622a2e7019026b096934a1b3c91b901aacb05baf5e671", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_RETURNDATACOPY]", + "fixture_hash": "0x950e4c0ed611c05f38d49effe24c2e08140a9a6a42ec0b91fd13ea2e018a4b66", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_BLOCKHASH]", + "fixture_hash": "0xe282d636313b497c0defdfb301facec2735c4cc17490b2a3b638f256ac7442f7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_COINBASE]", + "fixture_hash": "0xabb0e5af30175af2a3781f5fe9ee50dbb5d832062a866d47c5813a824fcd22e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_TIMESTAMP]", + "fixture_hash": "0xf822edabf8e1d16f0dbbcbbb4356fad24629acf30b20fc2cd352cae974d0db53", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_NUMBER]", + "fixture_hash": "0x343b165399782b9cdfd3b59609eb3c564e0663073341425926aa9ea54d467328", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PREVRANDAO]", + "fixture_hash": "0x886e0c922aaa33ec046f3b4912da07d92cfac168c8f39e4a9b0f9381accd5238", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_GASLIMIT]", + "fixture_hash": "0xaee797e5c14652493f51a9d0ff3ec55299096243ec4a8106dfa4cc9ca6dea997", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_CHAINID]", + "fixture_hash": "0x5e8bc9ec5dffe55487b92ca596125298a7a573cc1f75430d4894c2a9d66f9b19", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SELFBALANCE]", + "fixture_hash": "0xaee3661d08be7898e17732dd14a938ce1e1f7d06ca2716c36553204663293136", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_BASEFEE]", + "fixture_hash": "0x252bd61e01e202f739208534090386046bf1ad055eb3f10fb219301604dfcccd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_BLOBHASH]", + "fixture_hash": "0x12e4d171480d82aec9dcd25a55004fb5466049e4735b0043b0356890a2dd8067", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_BLOBBASEFEE]", + "fixture_hash": "0x680e3aabcfd439b936bb94241451eced551e3545f6689cad0129ddd8a2afba88", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_POP]", + "fixture_hash": "0xc392029b659b6b9866c863d8335655e4f6d33c54f8042ecc0bd1297f3978cc9a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MLOAD]", + "fixture_hash": "0x19228521120815eecf8e63b1309b420ac0bbb53f71a1e126ab0e1c81c6f7f3ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MSTORE]", + "fixture_hash": "0x910b8837207fd6f0564cb1e62ae451df68e4ca54d0e0e67d3292e825ba11837e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MSTORE8]", + "fixture_hash": "0x91850b8173160cca9adeabdf47a748a6655fbf45c676aa1d17be49d29e0c341e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SLOAD]", + "fixture_hash": "0x8eb454b0657cd28c4d98d7495c2cde3886080248b457c3eeba4ecd8e2b32aa14", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SSTORE]", + "fixture_hash": "0x43ab13d611092daaa9e9f6f809b64bc47b79e16a0023f8d7855672ccf1c03c0e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MSIZE]", + "fixture_hash": "0xb19abef2f0a713aa244b300c686292c2dcb9ec78c3f10cabe333cb86b20c5a1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_JUMPDEST]", + "fixture_hash": "0x423a9c75c3f31e4c27d4bad5823c5f8c66eb8918b1c63bed897d9e969621d589", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_TLOAD]", + "fixture_hash": "0xdb9a17c88a973f92553ab59e1f8afe06960f335719ede1259763c641676c8a8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_TSTORE]", + "fixture_hash": "0xe633a716d1572bfbe4054cba9b35e4b82ebac1c55d05d8dda2167d8f73e7e84", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_MCOPY]", + "fixture_hash": "0x28208e9453b5e1ac24ef898ddeeaf7ecc131d45aec886bf58ce94be4b979b2f2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH0]", + "fixture_hash": "0xf254be44859fb931b87f032add60f0488f82754a23206234e453d7ced75e4ef4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH1]", + "fixture_hash": "0x8429b446d5d5c90396daea1a985072194046281f0bf101b72e56a8e7d3fe7d39", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH2]", + "fixture_hash": "0x9817cc4cff9ddabb53aaf7b8a26c0b0e05bb9026a7f684b67af101ed276f06da", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH3]", + "fixture_hash": "0x58de65afcb220d73be89266abf497e4da62497728a24ff5ba0b2551aa3ecbdd9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH4]", + "fixture_hash": "0x5a176effef1f2178373b3bca567949039e7b2620f6af75977ebc32011e5fb209", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH5]", + "fixture_hash": "0x6696e286fc1951f2d2143a68e2c080df337ca047563eb77b51337915ead2871", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH6]", + "fixture_hash": "0xc64b0c6859c4ff2e90af69b256883c283d48fd78f072a763fbb93b3d05797bde", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH7]", + "fixture_hash": "0x7f7f9efe253b95e3d3e86cc658a9797abd78eec639fb3b47db5b1a49cc5685a9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH8]", + "fixture_hash": "0x40baabc69d60d3fb5e63affa0e46ba80dabf45d96bb5f5c35585893ad6bcaf38", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH9]", + "fixture_hash": "0xbda3cb00ca3ee5d8ee70483ebccdbac448bbb618d320aedb374bd6d19578ec97", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH10]", + "fixture_hash": "0x4beec2074f09003cb34f406990f4a4a993b7cfd4ebe3023880c6331ece0ab6bf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH11]", + "fixture_hash": "0xdc258e4cf122baf7dd57920ceb7961dd05d5a849d44d782a5ea25ab74e1bbfbb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH12]", + "fixture_hash": "0xb5ddd5ade8ece7130c8f34b888b558b0e1ef35df5bae1d5f0779cfa07fd9e7b2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH13]", + "fixture_hash": "0x4c47eab05679ef195570f9aa47e452537ef20112a18e350c184549734ccb2721", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH14]", + "fixture_hash": "0x8f0173adefddf363cfc715f170d0bd6c44a4ba734c30d03d3dff86660bab1229", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH15]", + "fixture_hash": "0x5505aec9e3c0ad71a820bae0eb231b994189cc950f1cfdcf1aeebaf24d3d043d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH16]", + "fixture_hash": "0x3be4f92bf366438f1ad2bb20d14a06deaa152fdc0650efdbc982582210a4caef", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH17]", + "fixture_hash": "0x6a9129a3eb9a49dee525acba20e8fc1f91e7297d37e9921df41a8045a147f2ea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH18]", + "fixture_hash": "0x4a7e072ac7848a5d2ffa6eeb7193912f15c246e6e49140de876990e70b8d5562", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH19]", + "fixture_hash": "0x45bc1227181679106839376b10b84d0435d6a71e81d87e6ad4255bcb137a677f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH20]", + "fixture_hash": "0x90791abfbe8a1eeca57ba912ef82ad8515c2ed554b373216d1da5466ad92bf2f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH21]", + "fixture_hash": "0x3221b035ea9ecbd3cdc9d53ea71be1f98d7ad4b3fa3224792f5528cbc7a13e07", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH22]", + "fixture_hash": "0x8099e9db053e0320149bd77dc2af08e95123262d87c2e4ab9f637e0e3ee4e62c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH23]", + "fixture_hash": "0xbe62e6cde0f1c471692426de589105aaa5416641ec532e16af50ec21e329635f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH24]", + "fixture_hash": "0xe829207a0f526bc6495ca95b26cdfac2095a4fe6ffefdabc735f827a61d876cd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH25]", + "fixture_hash": "0x34cc79bc75ff5d59f90bcad170bf246a74a834c2bdfbec7d792c514829f69163", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH26]", + "fixture_hash": "0x4acc71d3c1010a17f2a0e67b2c78a4cb00c5fc70d7287f5df674b1aaefc9ed40", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH27]", + "fixture_hash": "0xadf1e8215b999632f1ff9bd300d95cf611445f629610db9747b16126e5678819", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH28]", + "fixture_hash": "0x6f6b3917ce2c168071092c5d156310b579d6d6c6cea0c6758f6444c410d1a2aa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH29]", + "fixture_hash": "0x4eb16adefe55bd2ee26a1ed4a0e8be13cc48caa937c54e78176209731e4c7df1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH30]", + "fixture_hash": "0x128d670fef2dcc2371e68034a6c3a8deda9050242842cdfd59ed4e313b40224c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH31]", + "fixture_hash": "0x963d28384bde4ed1b4fd37111e41b7448112372d444f23379055818044851da1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_PUSH32]", + "fixture_hash": "0x281d7322dff38857fd203394ca6ebeaa10d95a02676a319cb069b46dc1531d5f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP1]", + "fixture_hash": "0x361b48aa9e5e72be89eba60f585230e549e122c6faac1186bb51b6eb85f28c8a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP2]", + "fixture_hash": "0x4280adbf98156169a8cd439ffd5ba0609787c7a12f9a0c01a5bebdeb8c42ad41", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP3]", + "fixture_hash": "0x6811cc225fa7f895bd999852847839955ce13cb24b0db1ad9d0a4f065273a86", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP4]", + "fixture_hash": "0x27f2004aaf977bae54c14a45155128d73c4a90992599d0ea3b242e56bb595246", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP5]", + "fixture_hash": "0x9460dde387ef495cf2561d101a730767fa5264f2d691ee265fa299041ae6661d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP6]", + "fixture_hash": "0xc8cf328078af134288f5780df73a0b6fe7a3374bbccdd468fa5d9b3e4e915405", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP7]", + "fixture_hash": "0x791b732b1829c692052d5ffe0c98de8a66d6c4b6b0d588ba38e9ddff3a35aa85", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP8]", + "fixture_hash": "0xe5c3648b9a591f45a478dc421303115f843bd947b510353d21d4324bb8273724", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP9]", + "fixture_hash": "0xde0ee3386e38ada6072fab420d971a163d709fca2d3328f964937ffc33dd8aeb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP10]", + "fixture_hash": "0x8590fffcd20a16f40616df46c5bd0e23732420835e9ad626d82da6a0504d2da7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP11]", + "fixture_hash": "0x77534a1a6ddf5f5439bb538331e149f453427f819efd9c5fbc09620d9e02afeb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP12]", + "fixture_hash": "0x67d22b120b2e50f998322ba4d9dfb3be95c34cdf8b441cb307d61c685b146a89", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP13]", + "fixture_hash": "0x90d50a4c4501611a84511db7f4e90c2f2f01cca921261faae9d26dcbf536dbd4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP14]", + "fixture_hash": "0xc3fcc9cf9f858795115b9bd82d3ce0bc0f64e609a0e4be678e4e0486d6f02eec", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP15]", + "fixture_hash": "0xa39fd459d74f4c309617366877565175a83b31483dc84fff7c1681727a9a8399", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUP16]", + "fixture_hash": "0x599395e1d95bd636b4f8b02ee04d5482d8b85bee1759a2a028e8eee640e3a62d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP1]", + "fixture_hash": "0x419ee42082328478afe8cfb9b29d9dfb709285684973fefee14b452f52204567", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP2]", + "fixture_hash": "0xfdda874b1e48399f38906785c44379662997ba96db89761870b74e8e41c33d5f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP3]", + "fixture_hash": "0xa869ef193face8e9027abded83b8d86640c6c6c4141943f37e11dfb7919f8d35", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP4]", + "fixture_hash": "0x67ff7ea8acdc053680daacfb0a6ba1e4d040d3ca14bae5848da87363c6e9656f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP5]", + "fixture_hash": "0x697cceaa980a0e81185dcc03ae38bc49dcf9b0916f4bf4b0814a2a6e7a2278e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP6]", + "fixture_hash": "0xde62deb903019d36e89bc8b270d3a459f5b90c1f19cb032c8fe029d80684d7fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP7]", + "fixture_hash": "0x153a6cc40b3910602f285145b2246f0fb8f8514dc8042dc3445cfe9c637a9dbd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP8]", + "fixture_hash": "0x4193f770ece523ff0ce3c205518308184f9f08b4489375b39a7478a36319e836", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP9]", + "fixture_hash": "0xce0d409117dac396ef39ac9a4e25d5823213ecfb06c3a674b640faf90962b067", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP10]", + "fixture_hash": "0x9337300e84fa750a795019bb35242e6a1715e304340381e778c87592cf618962", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP11]", + "fixture_hash": "0xd8fec34f6422b05ddff44bb00a7008a6f8ebc54f3c9e0b1e1a36f561fda2bce8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP12]", + "fixture_hash": "0x9ec3f07079a91554443281c6c916b9097c9134e8eaae63797d6b805a9e58e7b3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP13]", + "fixture_hash": "0xcbb04dd53cee63426034841d25113a80257e58d68b783f2c807411fa6b4a6d80", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP14]", + "fixture_hash": "0xdb9632df073a2741e914710ee87420e36d63a2e155660c32c3b7bf1c567184b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP15]", + "fixture_hash": "0x75d3dd645b0f6ad817d16bcacd2ee2965112772d9b09c4f186862e61040a2414", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAP16]", + "fixture_hash": "0x222d0dd3ed3b122efc6c6772d690096eaff2bcd5763af2d67e743b614ce00d69", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_LOG0]", + "fixture_hash": "0x8a68baa2f7590d06699211ec4c2f00b136aff6a42128af17a2f7dcfb8359de57", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_LOG1]", + "fixture_hash": "0x6007ba267ea1a4221304741cdd8321af26c7751c851eea2c57dc591e160d163", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_LOG2]", + "fixture_hash": "0x48cf1ff24b318e9b70ee4047bdaae1c66c844987cb723a64a45ceb414760f7c8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_LOG3]", + "fixture_hash": "0x7d3bc43d3216082c1c42e297aae748340e60a708e665400f5fda9eaae42eed9b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_LOG4]", + "fixture_hash": "0x9e5a201b4e00efacf900411e4daf972323f7dfc208788cf66485b302ffb791e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DATALOAD]", + "fixture_hash": "0x7ba2be1e780df7e71409c76e74eaff0ee2ac47c91dd61c1a19e33b961e248e74", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DATALOADN]", + "fixture_hash": "0xa0e28b1e16cfd4cf4e045555fa13414956fff01b28c0a3d207804de3fd1b8ee6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DATASIZE]", + "fixture_hash": "0xac6c4b1ef3bcfb4af75777e45cb87977c2e20ee113eb6af028a35784eee9534e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DATACOPY]", + "fixture_hash": "0xbbdf804df44151c03c840ed1d9776a316cf124f6ed59d9a1d20d41951fc025be", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_CALLF]", + "fixture_hash": "0x2b2d8b795657153b1fe0c612cbebe703b2cf54cd50bacb53017b4cb4f1b4e4c6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_DUPN]", + "fixture_hash": "0x860e42dba3485230889410a891869e0c2a402a787046cbdc45472add0b2e1fda", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_SWAPN]", + "fixture_hash": "0xa69193ec6c135a8cc991fd3006939a372202a5dba571051f8b39e83444856777", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_EXCHANGE]", + "fixture_hash": "0xb53e599eea107d2afbd97fa7b7c7c6d9bae00f19bdbe040a47a02537dba488d5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_EOFCREATE]", + "fixture_hash": "0x57a6a1c46ccea5362a1e2b5853420e18d2a6b2d5c4bfc5487b295750b5c32a52", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_RETURNDATALOAD]", + "fixture_hash": "0xfcb59d302a76397ef0644e6e0f0a2b343d410399a5ba92ec95f170784871e59b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_EXTCALL]", + "fixture_hash": "0x5dad59a03c6a1369c18c8c602aefb0bf10a153fd751653506f1e25e8805ceb6e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x63cd00efeef55268117269f1e354acdbe88c157dbb1e770d101d7a69bff32444", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_invalid_terminating_opcodes[fork_CancunEIP7692-eof_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb6369a3274682313896283e305949bfdf5d3270731b0247a85ef70276baf24ce", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_invalid_terminating_opcodes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_STOP]", + "fixture_hash": "0xb72690e31824a05627aed0f60648b7ed026d591b04ddd480472518a17d0cb978", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_ADD]", + "fixture_hash": "0x4d6a7ef10f8c45969e16742865e059562c0a224e9ea164a491c7e51599592a90", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MUL]", + "fixture_hash": "0x8f72f53764acf9eb4f4bbc0dbd2c660db4f1ba1e8f2eb81dad999ed70102596b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SUB]", + "fixture_hash": "0x9bb9defc303e3422ca0bd284e765bb27d1843698cb463c5be778b6c78e2b6c35", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DIV]", + "fixture_hash": "0xf45a1a947fcc72ad6fd18f02a7db11c57e7ec78466dda73f0ca758d8ae49d7a6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SDIV]", + "fixture_hash": "0x96224a9568bbfd9e16044c82de464030cbd4ad66125c7015b8514247ffa01874", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MOD]", + "fixture_hash": "0xe8ed02ca7a09a57d6c9e35c4dbc8e886a04982e104dcb1713ad111705df4df0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SMOD]", + "fixture_hash": "0xf713ee7c6be7736cfe14be6ed3750a5e66f3ccc2faf21e36d514689cb039825c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_ADDMOD]", + "fixture_hash": "0x8639c46582356a15555e1539225952aba2874dc94065313a48486ceb975a3002", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MULMOD]", + "fixture_hash": "0x6f67e3a41d744c713eb26564f350d9a84067cf29f213ef8f79207f3eb86e5a92", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXP]", + "fixture_hash": "0x7e4174ed68fd5b9972bdbf9740540f71e3e1ba7e25b5e37659ac19aed64687f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SIGNEXTEND]", + "fixture_hash": "0x76fd195c74f02543ccadfd089245877b603435c043ec90cf8edbf08272a4faa6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_0C]", + "fixture_hash": "0xdd4009b5f4d5e55dadfbc77a769e5faa5372000a0e3837e4c31728fb15156e16", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_0D]", + "fixture_hash": "0xd6b74ad6924fb078adcef1513d74eaa16a1071435f1b90a95b19b5283c72d671", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_0E]", + "fixture_hash": "0x46ab49bbddde1e1bea745be614c1eeae246a3c8bc2a4201f07351319149323b9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_0F]", + "fixture_hash": "0x7bac86c0efdc8264eb690ae75c620e5647ddd317dc4f0c2f9c7dd6e707355298", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_LT]", + "fixture_hash": "0x80d4fcbc127647f81d128927a90568e53aeae66c3492d2d027676c26974aa773", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_GT]", + "fixture_hash": "0x1d2e5470217fcda5b0175ccf1e52046b0bccfca135895ea603bc65bf66ed869d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SLT]", + "fixture_hash": "0x566b63a0150707583df36151966d0ab1ecce8908789fe1155b8f390301546bdf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SGT]", + "fixture_hash": "0xdd6e71c3c34ba251d4475c81b9331de4d2c4718e9bac926094b0a7ae4d5a2623", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EQ]", + "fixture_hash": "0x6c51115599a95349753ce06731852e71d20921933eed80d94b350c8caadb56fa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_ISZERO]", + "fixture_hash": "0x425a1e5df210779ca066e6d89080307cad700c78ca8636f7aff6f6536b00cbde", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_AND]", + "fixture_hash": "0x8748e5ea2b880cc95d779b50944605ea4039fe4971a2c6943acac636ae1a51c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OR]", + "fixture_hash": "0x8f38447449731bce638fdec2ef4ba9b0b42a836d79b3a22bb4af5774b1c36cbf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_XOR]", + "fixture_hash": "0x67b142e51910c18e8f4ad23f770649413fddcded03239faf10e1c231580e22e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_NOT]", + "fixture_hash": "0xa8db283d488fe061ef0651e75cefb7893c2903d4bac9a85841410b998f8b81e1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_BYTE]", + "fixture_hash": "0xad65f8c2333defe88feeba497216c02bbf35518caf346bcfdd6c42f38bd5c21e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SHL]", + "fixture_hash": "0xec484c126d2de5abaf53c25c2e5fd238a4c6adb7617351f212f55ecf188b8b99", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SHR]", + "fixture_hash": "0xa9786d24b1103feed8d21aae8c54e22b64aeaf5199d7bda1ff4e37d16cec4350", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SAR]", + "fixture_hash": "0x35feddd0af814daa1504a4af048495926ce04da621881ef3b4352727289b58b9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_1E]", + "fixture_hash": "0x5ae59b7755e684ff80a87d0ff3fa4be3286268b63281f7e3b2c947195744cd6e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_1F]", + "fixture_hash": "0x7cbd83ba53a3de24e13cbc050a4de70d1e10ff46a7a2d883cae23d334e3939e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SHA3]", + "fixture_hash": "0xc3ca2743b6505a41668277e4269827e09484693d74c83183c942f7fbdcf1fbab", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_21]", + "fixture_hash": "0x13e1ac3d39bee899ea24403a480ddb31f978d933a97395fa85e2328c8861cf49", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_22]", + "fixture_hash": "0xdb2cf5c67f04d4bce8c2d531b3f2ba0f6785655a6463b3493038b5192104b5cd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_23]", + "fixture_hash": "0xa7e7c08a306af38d5581eff8a08f71266b384cf1032b100236cbd2343811e5d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_24]", + "fixture_hash": "0xd624401d9ba50252131ffa2894fd2b548a68960c4acce3b64b5daebadda7e4a0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_25]", + "fixture_hash": "0xa7d1c8832aa9a8ce94e12c889be4529ab1bd6fbce92740917718d06c2478cde0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_26]", + "fixture_hash": "0x69868cee5c0a7a06dae52b01676caece031a37383b5dde807f4e9b27a70a073", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_27]", + "fixture_hash": "0xae37fcecb69b19c13d5ed58ff41490f9caaeb6889b7c78a41cd5036dfc367971", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_28]", + "fixture_hash": "0x4cc2f012adac4b0131e03db523001ad2988653f954297b1fb1d5ad4914da4f9f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_29]", + "fixture_hash": "0x74d8e2dd47c4e7f3b49631e46493c8196ea8a46a4eaa01baba2ebfec2338a4a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_2A]", + "fixture_hash": "0x1ee8431491cbd4ee731c3422b205ef30d8b502546712a2ea0391c7253043f4c4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_2B]", + "fixture_hash": "0xb29d9ba6793b30f8bcdf0eb12f437470fb05349373951bc3b063766696957454", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_2C]", + "fixture_hash": "0x67ecff9e8da3eb3000660a56f8022b8f2edb21b4e066f839ba8a9242c8d3074f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_2D]", + "fixture_hash": "0xac9c75d3b68e5c8cbacfabe7b777a04afe2e2ea1829accb4bf635669d88c1df4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_2E]", + "fixture_hash": "0xb1414ec02c8732c4d365bec83d4a298979552054b9661d5ff3189aefdc247ffd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_2F]", + "fixture_hash": "0x53f6778b1872fe92bb48ccbe67f6dddfa0e14630c8016cacf55e597c02b4fcb0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_ADDRESS]", + "fixture_hash": "0xcda6636034a19cb3b50dc616cd8298b9f3549b59340f5278d96e2e8587c9e303", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_BALANCE]", + "fixture_hash": "0xa84bdf8c8e7e785fbc074ca4e05336c9d46309d9a3fb5e420aeb6481b8f2757d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_ORIGIN]", + "fixture_hash": "0x4866e5720e5a497c4561846b6fba27c0971c3aeabdb038e20a51e7b2f1453071", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALLER]", + "fixture_hash": "0x5ef1c9239d3fe07caf20693c3e6e93f4ad67f30aebfcaf1829a70ecc5dbb41cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALLVALUE]", + "fixture_hash": "0xb2ac6d6d67dc9ef9a2560da50525d73a699bf0624cff9a1e506c0f30978cedc1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALLDATALOAD]", + "fixture_hash": "0x9947821388254668cc32566d5b6d8fa1d672a743e028f60240f5a9c9f55a0779", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALLDATASIZE]", + "fixture_hash": "0x6ebf24d1e650a9b82a75fa9baa686849838e354a0819175022196d2f4013251b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALLDATACOPY]", + "fixture_hash": "0x3b27483895d0e6dab78dca2f3043d635c3f7a5e3f6bccd0a4496a5b4e4adc890", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CODESIZE]", + "fixture_hash": "0x31ea4bb1acfe61921af3a591665b06f92b70f2efbdf2dfd7b3c11c6727b1e437", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CODECOPY]", + "fixture_hash": "0xea7d62165b1d2c6c07bdc392eba7cf146ee0b515e7e82e429868910da12dbd99", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_GASPRICE]", + "fixture_hash": "0x71e7d7480b778aac63d3f0a6d69fa58b683dbacbfdf4d5a4e79a8d51b1627dd7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXTCODESIZE]", + "fixture_hash": "0x2afaeff8fa159bd299e0f44290223e5a03e89d074e97049ce4921ae9a215f999", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXTCODECOPY]", + "fixture_hash": "0x75ee7db386dc9832c1775374b4936f13a1e1813e2d6ddb558667caec62a3753d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RETURNDATASIZE]", + "fixture_hash": "0xa880a75cab89866338b95fd486a7cc9efb9754340be6f03fbb25c606edb8c4b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RETURNDATACOPY]", + "fixture_hash": "0x56d0237d2badf16c0d527258fe5ccd9c2df63354829b5c9b45a89131d585a3c3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXTCODEHASH]", + "fixture_hash": "0xb7ea0b928773cce7b839990892bab69927c2c93a1528ce77e9c86757e0c8ac85", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_BLOCKHASH]", + "fixture_hash": "0x300b11d81aa29b7801f989f8a780d2030bad37aa7674b2ca7e6c3e1d99c1eef8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_COINBASE]", + "fixture_hash": "0xfaf5db6339e8e84481c7448ac7cbaef9895c9c20e41c56826fa0d31133e5edc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_TIMESTAMP]", + "fixture_hash": "0xbad8f2d4c9caa8282fe7deb02128c65c87050459ae22a2bfda726152ab810822", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_NUMBER]", + "fixture_hash": "0xa302a0189c00ef6cf97eda90abb4024bb8dc988a92a90558b06de9914d0ce50b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PREVRANDAO]", + "fixture_hash": "0xf328a4702dfbc5df6942cdac25fe7f7b219cb2eb61429a65437e6e29a98e627c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_GASLIMIT]", + "fixture_hash": "0x97015762a82e22df0cf276274082976b33a0ac4bee0c7af3a376bc11eee8f742", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CHAINID]", + "fixture_hash": "0x75baae82b1f198813c27972de200c8e8af74e8faf26a662317040e4ea30570", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SELFBALANCE]", + "fixture_hash": "0xd04d2d267f0413debc2b425e511d7e16351e708d25a042ccd404ee60abea826", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_BASEFEE]", + "fixture_hash": "0xb7014f4cedbe91e5bf804afa2f475305122f6cc03b526f1ccfd7db9d9241b1a7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_BLOBHASH]", + "fixture_hash": "0xb625187847e7ffb8901d5d435d73e6ccdb186044973842b9235f096b3eb9a5e4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_BLOBBASEFEE]", + "fixture_hash": "0xa09f39189a2460fc612c63a6457669922cf54483544683924dac9a0502005aea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_4B]", + "fixture_hash": "0x61c2b919ca48997074cdaa3e5ba65a89f8f296970e46d6cd7bccb94a5af9ee3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_4C]", + "fixture_hash": "0x7b2e98521983ed9cedaf50657f6180e92ddbd5d724cd001d312b7c870414607d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_4D]", + "fixture_hash": "0x7e12c5e5851170063c3fc101f045881c1c8bf9e5d78a03a957fc290a78d1dd24", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_4E]", + "fixture_hash": "0x4d7201953c827389624aeeb4f6b896399caf61771c424e872183649902032010", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_4F]", + "fixture_hash": "0x2955ebe20415e9660d0d8ec8938052c9387ce89bca03a17e53ab7cc1c6362583", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_POP]", + "fixture_hash": "0x5edd8504b6bb81054a90476554a70dd264f3db8cc028e429e19977701ab982cd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MLOAD]", + "fixture_hash": "0x4ca592a15881f6e56cf490633812835eb743989d15ef4c4e7c8902c77c0a66e6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MSTORE]", + "fixture_hash": "0xa4e5c8e73f54ac47db44279111693c2880875a2b4a014d565b4d98e0e7b5f6c5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MSTORE8]", + "fixture_hash": "0x71e99aeb87151a555d0e6e0d57e1167c2f0263d4e314d34046007fc8c49992f3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SLOAD]", + "fixture_hash": "0x1cae049e2fe0974882f0ffcde119e988526cbbe42264bf540e172c5ea6c01f40", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SSTORE]", + "fixture_hash": "0xbba7f28cc05170e6a3be8f0c1ddb8b72606cb8d6e1e36961b119266a02d3a18e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_JUMP]", + "fixture_hash": "0xadf67e7335f463cafc0872f2dada71d105f589bfb26d30cdcd618499241ae0cc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_JUMPI]", + "fixture_hash": "0x39b73274d1974a4fdfa754fb98d2653727c1243599f7c1ebefdf34ba579d3a69", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PC]", + "fixture_hash": "0x61da35533da1c8d2c52dc17d047bb84beddfd71e3fc37c75120885bda726e047", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MSIZE]", + "fixture_hash": "0x83ca5b421646b88806bd4ecc57b62035b0ad7530a92c82f5d56e95ac693fb753", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_GAS]", + "fixture_hash": "0x9720fd9f7b817f83a5dc88b84bf25a1d210bf0e6270fc9cced77ab75d43069d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_JUMPDEST]", + "fixture_hash": "0x6469706e0c9891f70676dcf14983cb542f0e1c5871db78fe15a3913c830221e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_TLOAD]", + "fixture_hash": "0x5745be66e5c9cf84814c09ff7685779dee0cfb9ec5982aa8e079fc375f5d8454", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_TSTORE]", + "fixture_hash": "0x7af8c88b169a004d09c5029b8810405d3adf49f6637d58ac619265f169253b7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_MCOPY]", + "fixture_hash": "0xe184f0e548282cdcd41476a2eedafc8c3a3ae930a28b459902fdc1a67643d70c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH0]", + "fixture_hash": "0x5b2e24b6f3c48b784f343a2df1a12dd9acaa6f93c6b2c73ee4972b3b53b37856", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH1]", + "fixture_hash": "0x316e9805334073d7775732c4f3ce1a2022024c3cf9beab267075638ce865cb27", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH2]", + "fixture_hash": "0xd6f5f82202e9acdb6a1cfc416c44b1a119a094b61727147e7f7764f91a663978", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH3]", + "fixture_hash": "0x20d0c62c81624c018ef6e9a67c3c60fe48b82a25c440ce9dfe54c7c8ab9d18dd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH4]", + "fixture_hash": "0x7e1945a8c706ac42a9619effb5c3458172f1295963a6c097a865eba25a798652", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH5]", + "fixture_hash": "0xc8cb3df847649ca75a1a6c52a669f48ec794a5bc1c6869179cbe80ee6cb379d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH6]", + "fixture_hash": "0x522af5a8bf0031e75049fc4ae03527b17d32af9b749dedd417e11d8225bcfea5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH7]", + "fixture_hash": "0x9eb7802e40fb3ffecf39e6f3e41e790221611a067a7c4309ba43a3114f4ee9e3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH8]", + "fixture_hash": "0x95ae1b3dbc4eb37ace32444fa1b8bab5bcc6308cb914eab4dc143973449a030c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH9]", + "fixture_hash": "0x3c0da9d4d46fa25e1153910e61e676d1a1fe424e30a0d231279fdc2eb810876a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH10]", + "fixture_hash": "0x515ffd89ca31bcf89c9e8e5f6faf38c73c6e05c1c1016f0c21a019458989c010", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH11]", + "fixture_hash": "0xbbe8fc77aff0e6aff83ba359617a4d2be2fe21f3da5eaabf0ead07694ba25481", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH12]", + "fixture_hash": "0x930bb04d51ee3901dd256b41652790639f404ab341a9d8fec2f52ac6a3283100", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH13]", + "fixture_hash": "0x7e3c8cfb0a74f9d4b4044975a0cf2b8945686dfaa8bda4c8298a6859bb6ad042", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH14]", + "fixture_hash": "0xef7c127251af4c51c17b93b158b0752f554eb7d947899a4d431bafc600f470c9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH15]", + "fixture_hash": "0x807ceda46dc06af3cb6bc823aebf136a30c786060d0e86796151363497cc73bc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH16]", + "fixture_hash": "0x94295edcf88cc4e11b350bda4ebfa2e464f46fa8b4b6db16dd0661987e544663", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH17]", + "fixture_hash": "0x199531f043eedb02aee92d9924cc28fc5c91c62021caa47b3b4a341037ceafc5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH18]", + "fixture_hash": "0x8e7566da5d23f99c1229b7f4fd0739bb1545fc716d213046ad65e098564e6977", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH19]", + "fixture_hash": "0x8310852c13bdea4d9b6a879f8416f2f094b31d7294122445ada4d4ba8a978f4d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH20]", + "fixture_hash": "0x8bd8bb370b15f0130065deea5fbd38f10115ffae7e1260f02cccb32877a59380", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH21]", + "fixture_hash": "0x8bcee1ecc6e99b372334fe595c3d65e36d0c98809b09cc1ed83dac3b84e26917", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH22]", + "fixture_hash": "0x2b57071a83a8eb6046f0e5a82cfca9682993efc0bc170e361d410bcea3b7b9b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH23]", + "fixture_hash": "0xe4f736701759c2d9560190dfed8e9bfd04f3b1cae87c9402bf4dc083e31e9d75", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH24]", + "fixture_hash": "0x354803e09db88d763d701ae3a34d4120e054b208372a497f439ada9b16b2b959", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH25]", + "fixture_hash": "0xe9d7814a0958e2fe098d7db8084881762f5e4b7cace090451936b2d8b8753f5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH26]", + "fixture_hash": "0x899f7fde8c6ba0837a177c0c54e31930b35901bb9057b408740136fc37fd4c2e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH27]", + "fixture_hash": "0xad1672434e084c5001514110d2841eb4c48fb3398353c93553df37dd49dc9563", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH28]", + "fixture_hash": "0x301716b24f58a94c5b9187ebdf512a100684b843d28d52de9d730626e7cf7e47", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH29]", + "fixture_hash": "0x6c5b65f1c1889089cbc5ab63d4123f58aec6f5c973b39548c2dce1d9c9e7d4ed", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH30]", + "fixture_hash": "0x76eeed197d3885a8cfd94fc51825f0134917dc147f8f08127781f157930b3e3b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH31]", + "fixture_hash": "0xb95d55f9a213ca24fb44d4e34240aa60bfbeb7791a001dd920936388b49b3999", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_PUSH32]", + "fixture_hash": "0x63a887f1de0b19552a872f70c372b849556bdd1ae2dae8e55476fe5e45a1c6ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP1]", + "fixture_hash": "0x498dbfaaba968f3e64a6d4a9f5d8bd8c98cf2a21f4837834c989f47a0a532571", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP2]", + "fixture_hash": "0xfc3b449dae3ca111f95419b80b3bfc1985972355027eabae38c0c49de55c5026", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP3]", + "fixture_hash": "0xe30225c97d4f0d42e0b352ddca038f15eceace30b4785fd752671ac3d2e78ec0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP4]", + "fixture_hash": "0x41a3eb1094b03838bccc5571038c7b3aee6184c7ab402074154d6f2ec00d04df", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP5]", + "fixture_hash": "0x3c7f027ea1bf0486d1a4b55b94572e99a6c6ce3c58fb06d283931af0bd15f41c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP6]", + "fixture_hash": "0x8c8cbf75a29370260e8b7d0c5c416a2fe12557c22fcb409983ecbe75da613915", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP7]", + "fixture_hash": "0x1d9f218a2517dbb35b3d3236fb8166ad47fc85a9d1035f4883cd57f9b608a27d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP8]", + "fixture_hash": "0xa8f6cb45b317aaac851ad7edf38c9507ee39bf4e3b917e9fefafdd1fd92fb8a8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP9]", + "fixture_hash": "0xfc3b2d79bc4d44fb632a29c680570b76e2b9fefa4b994f449bb60f8c2a8e66af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP10]", + "fixture_hash": "0xe259d80be9340ec053921bf180ef0ad413f46677dc24a9ce3291c19fd76f7000", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP11]", + "fixture_hash": "0x5eea1e7f199a9f008d500d33d817f76ef81e4be5328a8350b86559545c968e77", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP12]", + "fixture_hash": "0x615eaa74d823f7ef07409d4c57523b612c5a1d6f0661bc4f5504c6ff50528cc6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP13]", + "fixture_hash": "0x25155f852afee558569505bc0e1c3f930c2ce48a01f25c8c03ff723b0df8b037", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP14]", + "fixture_hash": "0xc451c5b178f5a63d0979f642d2efd30bcbdf1f7e00c84b38e637171f4e7f268d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP15]", + "fixture_hash": "0x6ce2424ade13cf7d88781df2057b53cb639c825cc38150353498c349d5922c6e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUP16]", + "fixture_hash": "0xd97ca16ae751f25d32dfe7b0bc0ef24a08086afbaa25c15ba665ba1a841f5a0f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP1]", + "fixture_hash": "0x3b681f4bf826de73b89c59aca324226feee27b1a41b8faec94be8e82c00fd596", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP2]", + "fixture_hash": "0x7664f0fef5573987f8d2cc90b8102e9bf3a967c1ec65fef8595ee8cc4f046f64", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP3]", + "fixture_hash": "0xf0c60de29894e11d0bb961ae19732fd5f25d5e4c78d43a47c7e04bccd17c5e7a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP4]", + "fixture_hash": "0x72473a7a8eec2f8f03865a827fa4f279e32a3db1a5e2e7e7669d2b5e1521745a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP5]", + "fixture_hash": "0x361c945f2df194be179796e1020c9f86d160e0eecc95a508ef43ce82a145acfa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP6]", + "fixture_hash": "0x52bf6c6d55ec078604429573f00578ef87b93549104a011b6a56e3f03dd48729", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP7]", + "fixture_hash": "0xdf59db006aecbc9f49f7aec97a5b0cbb57bb4baf37bd7a6ac93e479c2058e16d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP8]", + "fixture_hash": "0xef74b437bfe97766e8edadf7229f7c1b211eea6e3ad56c46145d9d706dd71be6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP9]", + "fixture_hash": "0x6586b0da2fb03120422a9fbdd2a2047755fb2701df63670dfefc27a0e16c4af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP10]", + "fixture_hash": "0x348ad6dfbe96c829c66b0caa4afa1847cefb0b6c6995ee3ddd2517ed2f18e3e4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP11]", + "fixture_hash": "0xfb6c43715b34d788e6da91557c7e98329ce3e29ee6a493a6a621d270fca0269f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP12]", + "fixture_hash": "0x3a62a377e0bdfab889f7ad4b240b2777ee79b21a3325bb15f9f94f0c27b892c3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP13]", + "fixture_hash": "0xe2b13612f2af25b18efe9244eb2d74093d890883ac007712652679ce87cae10e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP14]", + "fixture_hash": "0x3edc6bbbb6563819b41b822a44116aee3b94ebe2c1ac91fa851ccd22271e88eb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP15]", + "fixture_hash": "0x88fc09957582622780df904ff0e7c5459c418671e30bce2054d400ea42a344a5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAP16]", + "fixture_hash": "0x64cbe681a1aba06d1673de8f2ea4619440dfadb63fc231195b003629f7a6a080", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_LOG0]", + "fixture_hash": "0x55616d8bc18ff88e7263bcdeda2dff2afbef2c8a01008be933339a62c722a58", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_LOG1]", + "fixture_hash": "0xbf38c912a0f239abf5b2c80f192ab1a7a71eb9cf800dd2300f0590d7a77f6112", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_LOG2]", + "fixture_hash": "0x61e8ba9199940d4c3313dec827ed8159c48ba69c66eba3232e03d916ce627027", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_LOG3]", + "fixture_hash": "0xb80af58f2b7a15cf5a4ae4cfbe4ad989c956ecaeb70f954b49fea78c0b98df8f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_LOG4]", + "fixture_hash": "0x407385d6135e14bf7fe4e64eacf2b9fc530175b672f8aa96a5d09b00e11e8039", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_A5]", + "fixture_hash": "0xb1fab0fa2ea84d829a4dcbbec23977f6563ed3b07fbbc06722aa1e8fed4a62d4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_A6]", + "fixture_hash": "0x2b735f408fe3104534977132b3038ca2579d1f5be543e113d8eb704776aab3e0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_A7]", + "fixture_hash": "0xf1bad7e0fe4e8472a435c8831b1c26e7f763866c39a0974846973089891013aa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_A8]", + "fixture_hash": "0x67d5af955ff27479a739897370c841a6e294496a356083d52bc8777f8e75eda8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_A9]", + "fixture_hash": "0x8589d6542015add1b0941b0ff10f97d1141bde8a492185d3aff87b24a8b77e47", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_AA]", + "fixture_hash": "0x96d4869fb0132268dda7d17dd2d7db035adcd518d8a4771a6fcb42399be0d0b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_AB]", + "fixture_hash": "0xbdaa02a821f10c17c380cc29153e94fd9ef8972077b7ad5f844a1a99bf028920", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_AC]", + "fixture_hash": "0x9dc60c05d8634b91d724a2c2a72c0d728a40ee907b71a3197e56767c0992c529", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_AD]", + "fixture_hash": "0x9bab6c672355733b46ab64e897967ffff93dbe261a2afcc7e6139dafb957f502", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_AE]", + "fixture_hash": "0x3c0bcd57bd8363684940a7d5d09618735391ec52ff33f959fa3a7ee34cbfb591", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_AF]", + "fixture_hash": "0x928a2958771566edfc5b8f4c5527115f6155faf7e6df8bb7c199526bb63ba757", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B0]", + "fixture_hash": "0x3e7771469b64f62ce2f9baf88fa4c78605d7745605e0c2cc56386ce56b1ce79b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B1]", + "fixture_hash": "0x4869d2acf61edd8a35c254678aaa7a1f3e74aeb5503a47beb70062fece73bb0b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B2]", + "fixture_hash": "0x8927e62ba97ea4905dd72ebd1805116b47b891651a3359ea79afefe85dec5ecd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B3]", + "fixture_hash": "0xbfde4c846b9d45f68c8fc963420a919e6c02f685322df396e29da6dfebf7bbdb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B4]", + "fixture_hash": "0x6351b8d18edbdfcf6e00fbf5dae07344c6e034eb8cabdef91138e201d83c4160", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B5]", + "fixture_hash": "0xf8a4d09224522cf78fc7cc4179654d7542a440fc80c0cc8a20472ce1a78a40d3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B6]", + "fixture_hash": "0x3bd0eb6c0903929359eb42fcd1f45e551be9b668eeca2cf414abb8bedff769fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B7]", + "fixture_hash": "0x5947d66e05ba1238f416b2373cd3bfacfc7469f105d4296f600ecb495b896713", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B8]", + "fixture_hash": "0x3c28539e91b040c573b3514a649186d37b9f5134a38f9167aa07c2d2dbd21396", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_B9]", + "fixture_hash": "0x94c50b577f81764dcd4a3a8e2d2a429e5c8ca307dd979358e31a887a374b169a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_BA]", + "fixture_hash": "0x946369017d1a7ff158dfa580d80aa4199e3c36a3e26a14d0fe979fd4b84b75ea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_BB]", + "fixture_hash": "0xade4837a6edffcdb88cf2951eb08681749cf0ef584a7622b30974176b950e593", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_BC]", + "fixture_hash": "0x4dd6c2395db08e88d818c20f093fea95d5489af4674b5c796a4620f22483e02c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_BD]", + "fixture_hash": "0xf15c5afc4d90e1cddd78bc192f80c3ecbeb70b3950a6522e27b71b8c55138209", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_BE]", + "fixture_hash": "0xab4007c5cb34a1a81b8d00af117384dca10fcf2c533c2b97361a82d08a6b0578", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_BF]", + "fixture_hash": "0x793c36515e70e21f495e67048c07337ba165b50ef1e580c912824324fe5e046b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C0]", + "fixture_hash": "0xceba170d82a30e4ac07787a4f81acd1bd728dc232af61bc647c0486d2db2268", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C1]", + "fixture_hash": "0x8bc8a5cb2be3ab180ab119c3aa859f9396510eabd3387cd67b46b99b31c303b9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C2]", + "fixture_hash": "0x2ded09bde0459208e8c514500d67a427169df9e2a7281a8c3a2d17332f7812a2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C3]", + "fixture_hash": "0xb1f06456c495a016966936b739fad4cf9fdf36ae975e65f66f0bc06110959e0e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C4]", + "fixture_hash": "0xf516649dc79cc289a2021968481adbc0cbe3248f6403a48417cdca6a1c661c06", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C5]", + "fixture_hash": "0x10a139dd2ff5ac6b3d5f33439c23080fcc08f8b5a030323cbf96d1554336af8b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C6]", + "fixture_hash": "0x3419f4d501efc3daee765ec106472242d21b0b37aca44d51848047baabe49749", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C7]", + "fixture_hash": "0x2528891fa4aced626cadb9c50653971958bc40380f62427fa96a9ed68327afbc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C8]", + "fixture_hash": "0x3d5202dd24dca7e904a224a7a27753024984244cdf4318048b437a3786c015d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_C9]", + "fixture_hash": "0xa77d99f3f15fcfb3ff0d6e1170d26cc7de7c25666bef359d9d5e1057cd4b1307", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_CA]", + "fixture_hash": "0xbfe7446684f25853a21ecb1d5b2e592d21ed673e3908f17a66820d9c4830d90", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_CB]", + "fixture_hash": "0x3540d11e952dd01636a96d893055346e4317450c073b9af5daea730921e280b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_CC]", + "fixture_hash": "0xf89824b08d4168512c629ad4aaf1d0dd9dc7a6b287726ca84455a5223b222f42", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_CD]", + "fixture_hash": "0xf65f102f831e14c9237fbe2cc88811c03a5462911484f8bcc764a14883e28e4e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_CE]", + "fixture_hash": "0x4066054da74fd2f631b4dc3caa5fcf306a7b5d6e5f142f2f8414f3d404491f36", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_CF]", + "fixture_hash": "0x8ff9ff2d8c060bc1b4302b2977207ad31b5af21b7faa9fcf7498c6834c983d0c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DATALOAD]", + "fixture_hash": "0xaa4ddbdcc78e146dd0f150664f23a1d521324e188c759c0d075a53a6f5b5f073", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DATALOADN]", + "fixture_hash": "0xca77527742c5d1c57039cbb1a10c80015e80d7496b3fea8d8b1ef5aabdfb51bb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DATASIZE]", + "fixture_hash": "0x11962fe2a9c888cdd29b3ffd2dab133c13f3419b3aacb2a5d565b0814b433716", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DATACOPY]", + "fixture_hash": "0x7cddfb3156fe33896d6b11070b77d45a264e59ce5524da3728c58ef7c85c7b66", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_D4]", + "fixture_hash": "0x1221452e49745bface2a970bc7ef9e3dba26bc881abf51f3a81d0eab617b4ef5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_D5]", + "fixture_hash": "0x2d18779de7b557cb42ae7e23f98b8340cbf82fd37132dd7c5fa839cab7eeffd3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_D6]", + "fixture_hash": "0x462dca5efdaa91a886ba4e76181264dfebca3ce0c364f79ff67c0f319ef131ac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_D7]", + "fixture_hash": "0x6f128b2cea2fa215f7c64d27eada337b7957a8b14ffba2acc8d227b27bb6a08", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_D8]", + "fixture_hash": "0x39033d0a95973389d97acf86c66eb14e3832c9e1d4d7397847d771d5d8bf8188", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_D9]", + "fixture_hash": "0x77ca215ce119b60b577a6df66cd664c3f84ad8721efed3d8a244b945361cfdf2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_DA]", + "fixture_hash": "0x6c831fad482b65d990404746c3dba355f0580161dff77a2ba50dde19c640ce52", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_DB]", + "fixture_hash": "0x38627cba3b7c492b5fcad1748ba7014201dbf0faa72ba13b70cf0e8dae626d40", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_DC]", + "fixture_hash": "0x38df7d552fcd708c70c819c4f61ddd4cba187b7228cc6b7bbe5ff9dc4d668e7c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_DD]", + "fixture_hash": "0x430a23f64ebe8c69a162340055d1c01d16d31edf01b677b9a6f22b6b0bf469f6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_DE]", + "fixture_hash": "0x6317936afecdd41303012480fd24175312dbf7a242c962b4b28a0f6e620b88de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_DF]", + "fixture_hash": "0xec0df9236b835e5e4679fca37660220969628a284ce71c941b2b4cd8e84d3487", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RJUMP]", + "fixture_hash": "0xf6e6cdbdb909ad3cc2a3f6af9a6440b9baa914e27b0cedc87eb2455c41568c63", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RJUMPI]", + "fixture_hash": "0x89aa27f3cf16abdce73df31be90eb4d53538af29250b8368db275b55a5673d46", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RJUMPV]", + "fixture_hash": "0x3537c35d41b63c2534bde71f37eede3b92027caf6e64d9eee964dc739a458c37", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALLF]", + "fixture_hash": "0xac861e7fb29f5040f06a7bddcc1f7567b319b6f028982f6468b1b99c1c20e7d2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_JUMPF]", + "fixture_hash": "0x772dc4a71d25ec4fc67f17eeaaa48ecb24b6d609df7f782f95b626933198bc51", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DUPN]", + "fixture_hash": "0x2217b2b539e8dc728fd87344d0f03ff2a57108013d00f48dc38c4beaf57754b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SWAPN]", + "fixture_hash": "0xe1418bde815fe415f7272c5e05d20a309cba3ee9d10fd77653b0e212a24e29d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXCHANGE]", + "fixture_hash": "0x60fb0d037a586518ea7ac7986d9aad6c1a74b7d42b674cb9a865c3a4ccde15a1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_E9]", + "fixture_hash": "0xf903fe75ee1b1678f3fdd9667db9a75e5b8e5a87a28aa64dddac5644380d20fc", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_EA]", + "fixture_hash": "0xfd761c0a5eec246946aa157b502919703bebb1e97f095a43fa38c6bfaf866ce2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_EB]", + "fixture_hash": "0x62d5fd367391708722d8708da7dbf3a2ee600f1395a4f194ac0126e9c27500a9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EOFCREATE]", + "fixture_hash": "0x40ceaf88ff5885d7beb3151c438cd049fbe7de046570c515071834e0f335064b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_ED]", + "fixture_hash": "0x34fbde37214356c120d477f565ecc017a405ab387379433e69f81812eb2a6883", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RETURNCONTRACT]", + "fixture_hash": "0xe5b5e9638b4555094b83b297759b6e721728d5c0fa1a1f756783450f373b238b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_EF]", + "fixture_hash": "0x1a5849f41cb0c56aa34825b95a9f83935ebfddd41d2db650590443dfe5da4976", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CREATE]", + "fixture_hash": "0x50b55afcd61ab8b7b4106d5f7a019a8f0d284470574c06f8969852552359641b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALL]", + "fixture_hash": "0x46f7c3a11a4c2cdf19d929aaac784ef1699088fb77186df467f9f8450870d57f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CALLCODE]", + "fixture_hash": "0x41bea606f7531aecceca4fbd6bfc81f3c60aa18b2acefe8865145f8fa32dae7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RETURN]", + "fixture_hash": "0x21a82a9568b5bce68749dfc32670e5a66a0d99116f0cbab5d300cc1f8c22ab5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_DELEGATECALL]", + "fixture_hash": "0xc8f99e601acac9d76d421b353bb058be64d0c8ed976c2ae56c66296a40261dac", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_CREATE2]", + "fixture_hash": "0xb97b01df6626d3c328b74efa05dcd4946180928fdd4eb441372e4c1697debe62", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_F6]", + "fixture_hash": "0xb50de93c3365b6a824a36e5d57c2b2dc5d3edf9d8b0ce52f8ca7d68b2b7d3c6e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_RETURNDATALOAD]", + "fixture_hash": "0xa6a5e1dc0b794a306608bb6f2896e6a816455203ca07103e69a762d6a6e2b8c2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXTCALL]", + "fixture_hash": "0x3bbbbf7eab995ab92dee6d2193da42f8c4bec282e2de2b48b8eb365675f51aea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc6b3246c6b9f51b7fc56889f158606c49a67bd0d536c9f6d95639ae97069de38", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_STATICCALL]", + "fixture_hash": "0x361b95149886aac7ffa8f3f3ecc6aafe0e9ed7f3c906bd2fc1f1c72b90617bb3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4fa8055cb328a28315a7d6d437d4fd82d2a462ee8977a20c2403f3dd829256d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_OPCODE_FC]", + "fixture_hash": "0x368e73d7f7168bdf55453bba3186407d84536c20d65ce0973d09855f313b32b6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_REVERT]", + "fixture_hash": "0x8820034fc1fec9d10559e94629bd399fd38d9e38a1cbf08575edf80221ca432f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_INVALID]", + "fixture_hash": "0x7a3cf143dc7d84e6202a6f0dfc80973570d9b455bf8eb1bdc3455c4d3bcc6a9e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_all_opcodes_in_container.py::test_all_opcodes_in_container[fork_CancunEIP7692-eof_test-opcode_SELFDESTRUCT]", + "fixture_hash": "0xaea54be7a8155bf559d0baf88ed84e85fe12b07dcf4247ba1d580601717a4369", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/all_opcodes_in_container/all_opcodes_in_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1V3540_0001_deployed_code_without_data_section]", + "fixture_hash": "0x84c60db2bd8c50639909f5daf46c496e4d8f58500c0c695f1ea0608968d53012", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1V3540_0002_deployed_code_with_data_section]", + "fixture_hash": "0x664e19a05efd32f88267b001b3c42160168cecae352005da8721ca156b19c15a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1V3540_0003_no_data_section_contents]", + "fixture_hash": "0xb276687c50d3eea1ba24ca4e30263a3fd4d3514cd6fe29b4f18371d9c0311f80", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1V3540_0004_data_section_contents_incomplete]", + "fixture_hash": "0x5243fc6bca435a7953193c96a2c2b9bdb360b835b55414bcc6e5611591b2dde1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0011_type_section_size_incomplete]", + "fixture_hash": "0xff23fc3b68af9f5614c2805871b27e2f802ca010c200e151aece3dd0378fdc52", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0012_empty_code_section_with_non_empty_data_section]", + "fixture_hash": "0x27adde06b71d0f82c545270a17a53ced59b206c64cf05b720e1f283f2c25942f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0014_total_of_code_sections_incomplete]", + "fixture_hash": "0x8a7bae54a6299499e938df8d54db7adbbd83224fa2f1e331da8a591ba3391c8b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0016_code_section_size_incomplete]", + "fixture_hash": "0x6b0b03db9fddaeb7bec23b3772d0492b8dbdf49882b01d12c2d1856cfa367f0b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0017_no_data_section_after_code_section_size]", + "fixture_hash": "0x8bc1ca569bb40c7b70fe5300692b5897314b8b071fdeb8864b020a9a8fd6231", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0018_no_data_size]", + "fixture_hash": "0xc250e9ebb12bae59257d343e7a6edec5ebca6ab3ed149aa35cdbf89c538314ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0019_data_size_incomplete]", + "fixture_hash": "0x97320a544601fcb96bdb375d7674392034659302c6e56eac024ea0b4dca760ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0020_no_section_terminator_after_data_section_size]", + "fixture_hash": "0x59a1a78eec66c74c9b733057b029bc549561230639152efab7c818b059e86dae", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0021_no_type_section_contents]", + "fixture_hash": "0x5bccbedfee94956e41485a8d6e131d86cc4bfdbed08489e6d2ed9cb0fd9635d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0022_invalid_type_section_no_outputs_and_max_stack]", + "fixture_hash": "0x26be69050d440d29104f0a2300a4dc86476ef39adf6225c3d73b444e480994ba", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0023_invalid_type_section_no_max_stack]", + "fixture_hash": "0xe34f4ac60d7b34d8512c64c5484372b2f091a5840398db8d4ffaa7af1de64821", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0024_invalid_type_section_max_stack_incomplete]", + "fixture_hash": "0x6cacd1d826858e581d9087cbf7cdfcf5769d82bec5d968ad27411372467f982", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0025_no_code_section_contents]", + "fixture_hash": "0x8763d93e2709bd98d10a53325d570bf56edc1be965a1c52fe976d3c0329b509c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0026_code_section_contents_incomplete]", + "fixture_hash": "0xb55cea492fe5b9a4f8d7069d17199e5b3004073ca5ce66cd0e952c013a410682", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0027_trailing_bytes_after_code_section]", + "fixture_hash": "0x367692b1aa9db3e7c405b698faca4aad1cbdc2a82e8c4a7b13819cdeb195826c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0027_trailing_bytes_after_code_section_with_wrong_first_section_type]", + "fixture_hash": "0x5ef6a8e3ae0a8ddeb2c43fa76018cfe9a0e32321769887dd60aa3e60b710c3ca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0028_empty_code_section]", + "fixture_hash": "0xc5352a08dec974e4a3a97660bd8bb7b9d65a5805935807b0c11f50178d1d93b7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0030_code_section_preceding_type_section]", + "fixture_hash": "0xd48f35e02aa44e4b78a7a905c409edc3f2ec41892b1fd637544ceda125e1ba9f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0031_data_section_preceding_type_section]", + "fixture_hash": "0xce30277af598ec1c701de11ddd1aec76d769feae0624e093341d95c86833c777", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0032_data_section_preceding_code_section]", + "fixture_hash": "0xd0afc08df4361125be749b62db9cd03b4573268372b4aaad1a5eb8537ee93157", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0033_data_section_without_code_section]", + "fixture_hash": "0x4d56b0ba403fd2613bd2ba4e60dcf4a5ed45e53d44e3b0b2dd3cce653d9d7730", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0034_no_data_section]", + "fixture_hash": "0x4b829c16b2d51aaee53992fd54911131c23fbbc3f9563f7ffea6ed7bb8a25185", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0035_trailing_bytes_after_data_section]", + "fixture_hash": "0x4659bf3efa7238cf6d868a8f316c0936931dc0211bed1047fd33d47416864873", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0035_trailing_bytes_after_data_section_with_wrong_first_section_type]", + "fixture_hash": "0x4ffb723065dca29bd0968c5215a69d023b0a8c8eba91b71b821ecc28b9168d31", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0036_multiple_data_sections]", + "fixture_hash": "0x99a6f6113220ec8ef82aa720ceb42982d7e03103630f05911744a2ff5f4ecdec", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0037_multiple_code_and_data_sections]", + "fixture_hash": "0x1e8292f803c61f6ca6701ada3fe13833acd10a1a9dbeb935886bb00d24a46e8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0038_unknown_section_id_at_the_beginning_05]", + "fixture_hash": "0x234219272c3d6c12f1c64bd57ae2143d046e186755c16a2016921b19f4997702", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0039_unknown_section_id_at_the_beginning_06]", + "fixture_hash": "0x4b000a514ddf60101d24d23e45246dc824f72dec8262fc133fa98170e7a411b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0040_unknown_section_id_at_the_beginning_ff]", + "fixture_hash": "0x49bc0e89d2fc2f6f3b070d4a43770be24d3ff2e0e5842a74e092adb02ed283ed", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0041_unknown_section_id_after_types_section_05]", + "fixture_hash": "0x9b7ade9389e60f95608970409f096623a8572d6827905a34618b54e1d50adf5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0042_unknown_section_id_after_types_section_06]", + "fixture_hash": "0x960321aa619f4823a6fcdf30cad3842b26a5ba34b165aca4e6308bb382fa439b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0043_unknown_section_id_after_types_section_ff]", + "fixture_hash": "0xa4dad3fb768845380d1dd9bdd8bb950f3468e01648a41a8a518338dad8d8d76a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0044_unknown_section_id_after_code_section_05]", + "fixture_hash": "0x88a74715dae0ef466144b3dae378bccb3ea1a8f899739b20c3a536b5b3599cd2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0045_unknown_section_id_after_code_section_06]", + "fixture_hash": "0x4db7e311e9e9475b1c11bb0b66e48b8ea189d48f34cbe4e3314f9e5cff221ea0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0046_unknown_section_id_after_code_section_ff]", + "fixture_hash": "0xf8e3abc617706a9cf6787e9af6eeb1639393d07aad0e6727c8e2c4b82ad1f6b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0047_unknown_section_id_after_data_section_05]", + "fixture_hash": "0xcf2c6e33294d129d2c3cb18b7e534397cc202b30f86a69a62b904cb9ad9ba59f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0048_unknown_section_id_after_data_section_06]", + "fixture_hash": "0xb3ba46dec14c223ad4124b7c6f5453353f9889d52571f8839e7d493aeafa2e19", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0049_unknown_section_id_after_data_section_ff]", + "fixture_hash": "0x7bed28b74c1cce1b820e0c4a5edad6e022f9b3178bc1fe147d3013ca403b6566", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0001_invalid_no_magic]", + "fixture_hash": "0xc424a49ee0b2ba5f8eb91c213c9fd15972ae849750aa611a9c08499c6ca7deb7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0002_invalid_incorrect_magic_01]", + "fixture_hash": "0x43ec32d6eeee700e8b91d86153a03263ef192329be5897aa9be66bb19a4d61ae", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0003_invalid_incorrect_magic_02]", + "fixture_hash": "0x61d06f4b9104d373eeb63914cf0489f89e52fbdfe1c7125b87ff9e951b294ab1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0004_invalid_incorrect_magic_ff]", + "fixture_hash": "0x170f34ec9fc191a039308e446fa468e83c3acd648a6998ed4299496b4fac5d5c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0005_invalid_no_version]", + "fixture_hash": "0xcbeba266e3aca14e3346c32e923545e77bcb96d35afaf6aa5d6b02bbdc5aaea1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0006_invalid_incorrect_version_00]", + "fixture_hash": "0x64d9e110bab80f5296c0ac8cc2d7001f2385fbc1c5b37f3ab269ce1f5bdec960", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0007_invalid_incorrect_version_02]", + "fixture_hash": "0xe5f434743685a30401da19e5ea12d3301189fe03505d1c672b6954c9d6cfec4f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_migrated_valid_invalid.py::test_migrated_valid_invalid[fork_CancunEIP7692-eof_test-EOF1I3540_0008_invalid_incorrect_version_ff]", + "fixture_hash": "0x961300aa4ab58409e10ab90c8fe30287209987e810a54bbd5356062f065942e4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/migrated_valid_invalid/migrated_valid_invalid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_max_code_sections[fork_CancunEIP7692-eof_test-plus_container_False-plus_data_False]", + "fixture_hash": "0x60ebc4a2f1004f9ff6925bff12c1d64bc4f0c995893669b788db79619018b89f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/max_code_sections.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_max_code_sections[fork_CancunEIP7692-eof_test-plus_container_False-plus_data_True]", + "fixture_hash": "0xd5ad80781b15b6a8d14bfedb8fda605046ad1118e5285df664f39fd1a49dc62c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/max_code_sections.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_max_code_sections[fork_CancunEIP7692-eof_test-plus_container_True-plus_data_False]", + "fixture_hash": "0xcc73d269979f1618e8b7fe9e406af0ec7953f48543c92450aa87cb7dcba40a0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/max_code_sections.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_max_code_sections[fork_CancunEIP7692-eof_test-plus_container_True-plus_data_True]", + "fixture_hash": "0xb4b84e891a236c52db940ad5b4da44bb87842942b72fdf9ff81d88d9cfa8d40", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/max_code_sections.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_single_code_section[fork_CancunEIP7692-eof_test-plus_container_False-plus_data_False]", + "fixture_hash": "0xbe12dfd7844362e9a0e87a469dafde6f7207a71d50d2e6659a40ec3ce5db7c30", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/single_code_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_single_code_section[fork_CancunEIP7692-eof_test-plus_container_False-plus_data_True]", + "fixture_hash": "0x831ee72e581867cb7e7d01d4465897a07af10cad78178daf3c22f1c8cbec3763", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/single_code_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_single_code_section[fork_CancunEIP7692-eof_test-plus_container_True-plus_data_False]", + "fixture_hash": "0xfd00a91250c74ff5d28d4ba7fca63a59f4e9c98ec8ea690afa91b975b2b5c2bf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/single_code_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_single_code_section[fork_CancunEIP7692-eof_test-plus_container_True-plus_data_True]", + "fixture_hash": "0xc2178a63b05cf172f56e197828ad2f42416ac86f5f43fc2ffe22577a3fa61be1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/single_code_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_0-magic_0_0]", + "fixture_hash": "0x2032ffcd9263c7211f99dd51e6cb5d6ccf2294e804e9e048b7eb9e5b986ecce4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_0-magic_0_1]", + "fixture_hash": "0xf96f6dc98ede30b1dffca24fa729a5db5dd4366001f3309851ca6aacd962b27a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_0-magic_0_238]", + "fixture_hash": "0xfa464376a9dcabf642349b2f4a70066b7ca5dbd0b47b0520092c6489f4d4f7e7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_0-magic_0_239]", + "fixture_hash": "0xbe12dfd7844362e9a0e87a469dafde6f7207a71d50d2e6659a40ec3ce5db7c30", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_0-magic_0_240]", + "fixture_hash": "0x42130385b90397447e81ad3aa9251b61e4c9e78cd691c781d9cc57bc1957df0b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_0-magic_0_255]", + "fixture_hash": "0x3c3b8f5dbdc81165e8ce08b3b81715efbe1e80acb3ed618a259b811f3d6d7efa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_1-magic_0_0]", + "fixture_hash": "0xa73df036a64d318e8ad9069f8c5199b6a527b487d2bed2d9be73d117834ff3b3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_1-magic_0_1]", + "fixture_hash": "0x51e998790f70c6a7e46b3a84070994c6ce6e85c06e73ddd4ad13244e868e3444", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_1-magic_0_238]", + "fixture_hash": "0x689fd21ca106e8caa47c8b9e5f1ef78c93cb680440a750b6c151ddffd0551259", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_1-magic_0_239]", + "fixture_hash": "0x4c3b84ec9249172b1741c8c4b5a84860c785c3b7788b3136ce11971536f52a39", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_1-magic_0_240]", + "fixture_hash": "0x5cebffc32e48c54fe1aacfbe1022b9609fb3b9f6c5a07406739a21774bad513c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_1-magic_0_255]", + "fixture_hash": "0x649fb7f91f4559265732109f927de4eb7dd49262a3afef7505688bc8ae667178", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_2-magic_0_0]", + "fixture_hash": "0x5cc3274e00e3a4ba33c696c6ef8c3cf8e44c27e9b5ed9b870119c281d7ea28d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_2-magic_0_1]", + "fixture_hash": "0xa54681de2af900edeb536db03e942030b972765bed974be6af51deda665e90f0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_2-magic_0_238]", + "fixture_hash": "0xda95fa0e2af367d66837c9fbb6488e51717abbd012c250668d589afa39b64019", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_2-magic_0_239]", + "fixture_hash": "0xe1244c8fa718c9fb4e86d926873a359803d923b279cee5e3121b6ff687c6ca4c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_2-magic_0_240]", + "fixture_hash": "0x32786cd30970c22af908856de2d047b45df65b93376725bd6b809e6376dfd5d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_2-magic_0_255]", + "fixture_hash": "0xf0c526405df099a62a8f360700165d0911329c9ab5ff27d84eaea9b3cb6b5cf7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_254-magic_0_0]", + "fixture_hash": "0x59809dfb50cc2e57ed9e310f115b6ffc16ea315fad61d3c313ae497ddebcf519", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_254-magic_0_1]", + "fixture_hash": "0x6f169417f786da2fa44a5cab6308b62cc0e5bdc1f11d7bc54cf623c5c00c285b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_254-magic_0_238]", + "fixture_hash": "0xb5df30fc1f0cf56b33a4772e7fbe931a9cdab7a3f61fe0dfdaea989397bf5c3e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_254-magic_0_239]", + "fixture_hash": "0x794eb76d3c48bf5538f29214f88e36fb0090abcfb355ee34f0e1e033a76fe83c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_254-magic_0_240]", + "fixture_hash": "0xc211685ab080f9d1b7eba23f8b5390f3feb93e42ccd076de7e5714ed01b7f3e6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_254-magic_0_255]", + "fixture_hash": "0xf442901ba8f6e827c3c1102046d4b2fec74d44b7f75cf452a9d2dac35a748130", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_255-magic_0_0]", + "fixture_hash": "0x7834bf5c79a197ae98e2ba6a7ba34da6d81463abca8231847301c219b40badca", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_255-magic_0_1]", + "fixture_hash": "0xb7866208e3f7b249aa7bb9ba87d17f58cef95d14341d0e46410efa556f68a796", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_255-magic_0_238]", + "fixture_hash": "0x12c81e1cea95ebe9064685b1191b4a20bb0163aa5bd80b0f8ad9266024b869cb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_255-magic_0_239]", + "fixture_hash": "0x157ceca036482d23f7ebc2be3e9953ba614e6f9289edc86b650d8c00879908d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_255-magic_0_240]", + "fixture_hash": "0x219d24fd317a1bca6f575e3ab1d14ed286885e3743f1d4f327789164313aed1c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_magic_validation[fork_CancunEIP7692-eof_test-magic_1_255-magic_0_255]", + "fixture_hash": "0x286d8b13bd01a9b86cba6daadbb025a4ca5dee0a72bacf304f1910cbb7f8f38b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/magic_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_version_validation[fork_CancunEIP7692-eof_test-version_0]", + "fixture_hash": "0x91dc8b7979426cac3a675e6e8c298e829eec861923c29f6d454d9111207229bf", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/version_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_version_validation[fork_CancunEIP7692-eof_test-version_1]", + "fixture_hash": "0xbe12dfd7844362e9a0e87a469dafde6f7207a71d50d2e6659a40ec3ce5db7c30", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/version_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_version_validation[fork_CancunEIP7692-eof_test-version_2]", + "fixture_hash": "0x36e39d4088b8ce63c9e140c14a167bdb0be32d021a9d68de8f210cbd10996d8d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/version_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_version_validation[fork_CancunEIP7692-eof_test-version_254]", + "fixture_hash": "0xf15eb75ad576bb9abdcdb6799ececd01f3430b7fb80541cdf23ed5511374ea88", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/version_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_container_validation.py::test_version_validation[fork_CancunEIP7692-eof_test-version_255]", + "fixture_hash": "0x5ebe638421d8394db9f47d4532c20038d965d2ea19312b29761f7f6161e5084a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip3540_eof_v1/container_validation/version_validation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_0-max_stack_height_0]", + "fixture_hash": "0xf5d9eec5e46d0aa8bf7b91874bf5c082f927718953501da7e7844ac63fcb836", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_0-max_stack_height_1]", + "fixture_hash": "0x6c5196e9fd0649379ab1ebd4a19aec405467e36d5fc94b90099db96a978f5694", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_1-max_stack_height_1]", + "fixture_hash": "0xf851696406f623e5e4e7e7ca0cfbf5e832cb8536c33283363eaa89388b67977c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_1-max_stack_height_2]", + "fixture_hash": "0xd83e2754f0715b153f9094c6394a7f8ffe816b7ad6a2fa9df6550f1f2d99b0e6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_255-max_stack_height_255]", + "fixture_hash": "0xa113354e83c0682d3f3bb2f524b41077a4991cbb00be1927f1f84d03034c9c5b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_255-max_stack_height_256]", + "fixture_hash": "0x629912deae523bbf4511a0684407dfd18b10e3eb1e70c84ac29881bd8fdccf51", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_overflow[fork_CancunEIP7692-eof_test-dupn_operand_0-max_stack_height_1023-expect_exception_EOFException.INVALID_MAX_STACK_HEIGHT]", + "fixture_hash": "0x32c1b1f18cc86a715412d70d970f6ee1a47a9e60b3e3c4cf2c860f36aa36ca1b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_overflow[fork_CancunEIP7692-eof_test-dupn_operand_0-max_stack_height_1024-expect_exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT]", + "fixture_hash": "0xfa8fdfebd6c3b33111595f042acedce3f54d0613f548b9ca0eddd7d81616ac62", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_overflow[fork_CancunEIP7692-eof_test-dupn_operand_255-max_stack_height_1023-expect_exception_EOFException.INVALID_MAX_STACK_HEIGHT]", + "fixture_hash": "0x596d8228c710e979821066539bd506fb19e507cf118013888b4c8fab73cc64de", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_stack_overflow[fork_CancunEIP7692-eof_test-dupn_operand_255-max_stack_height_1024-expect_exception_EOFException.MAX_STACK_HEIGHT_ABOVE_LIMIT]", + "fixture_hash": "0x8639416a08b139e28db7bd760f2cacbdd5c01807cd1199b21d140e91771749e4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_all_valid_immediates[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x765dffa96d89cd63006875c495e024bc95f0f4f01001240ce8a730b96160fa39", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_valid_immediates[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x5f7f6b93c281c7dd87e3e72e1e60477463a826a191183e52c52430f20a295256", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_invalid_immediates[fork_CancunEIP7692-eof_test-stack_height=0_n=1_m=1]", + "fixture_hash": "0xe4e2239c6a3c98fdc127a42fb90b5c22fd59c67a6e1c15f6dd76e8b798e445af", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_invalid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_invalid_immediates[fork_CancunEIP7692-eof_test-stack_height=1_n=1_m=1]", + "fixture_hash": "0xdc5527c5fcd9a5fd594f25a906292e7002122590223ec3eb5aee28679c8b909f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_invalid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_invalid_immediates[fork_CancunEIP7692-eof_test-stack_height=2_n=1_m=1]", + "fixture_hash": "0x93965b91dde2de7a309eacaf2c234a8df679e735f71db182b12ddfab445b277", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_invalid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_invalid_immediates[fork_CancunEIP7692-eof_test-stack_height=17_n=1_m=16]", + "fixture_hash": "0x97340ed69bf68d25d3727f8efdfca45326a27138dd614f6b26f3eeed2666c9a5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_invalid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_invalid_immediates[fork_CancunEIP7692-eof_test-stack_height=17_n=16_m=1]", + "fixture_hash": "0x7585d512eea521ccbeb6aa5140354c2f75ab3dbb3fe91adecb072739b188996e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_invalid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_invalid_immediates[fork_CancunEIP7692-eof_test-stack_height=32_n=16_m=16]", + "fixture_hash": "0x97e77695e8fbe50052d08606748dbbe5e44a432b5fba17a04dff3acde473d51", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_invalid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_on_max_stack[fork_CancunEIP7692-eof_test-swapn_operand_0]", + "fixture_hash": "0xa5516c4938416369965b2de545aecd72999c83c8081b311a0c4c5fd371c227fd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_on_max_stack.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_on_max_stack[fork_CancunEIP7692-eof_test-swapn_operand_255]", + "fixture_hash": "0xde218c7aeda42b82e32bae0c0fedd494d4cf1e4c36911695d42dec53d0ba04ff", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_on_max_stack.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_0]", + "fixture_hash": "0x4b9e9e9ed5574a69f7802be1972b726cfa43786ca9fa904e6bb6c52329af49b9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_1]", + "fixture_hash": "0x104f6666c1947a9a8b7e1a4c40789b63b85e29140a41ba97d8c69a81b882a7ff", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_stack_underflow[fork_CancunEIP7692-eof_test-stack_height_255]", + "fixture_hash": "0xa7e9431b7e88c1f2751316a250521299179598fbe004de2b608e525e9409c6c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_stack_underflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_all_valid_immediates[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xb5ab195cf8cbd6a226e4a7b5b35e734d9a9c5367285ed7efa8d072ebd84c10a8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-2-to-0-so-0]", + "fixture_hash": "0x1318bbbd6f8adce4011d58d57ac3c0df181108c5da713769718c6d1cc72a5581", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-2-to-0-so-2]", + "fixture_hash": "0x637b64d7852c25891190bc727cfb2a710e9cb4e2ac950aa793b49111f5aa7eae", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-2-to-0-so-4]", + "fixture_hash": "0xdfd1d36d769f46055d6703b21437d055f2b3a7cd5484d01033b431933a4a833", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-2-to-2-so-2]", + "fixture_hash": "0x5a4c5834ebfbc4824879a4844bb86776b231337d295ccf667ee0cb33c399d6c9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-2-to-2-so-4]", + "fixture_hash": "0xf8498836d9bc1ff92a97765d09060b287e24b41b9823b677f3a02da73b73c155", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-2-to-4-so-4]", + "fixture_hash": "0xd44597682407f19cda6fec167e42a6746e8b87e0e2f97d8e80a188da3f59af12", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-4-to-0-so-0]", + "fixture_hash": "0xaf086b8089f1fcfd6d10938d9a06ecd6cc593d26dcbb8dcb5bae71dc5f8c3668", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-4-to-0-so-2]", + "fixture_hash": "0x4163b4e55ff84284e10c0713f4b27d5aa00032e080c66b3d5eddad97ec092a84", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-4-to-0-so-4]", + "fixture_hash": "0x51ced9f12be147ffef0eff1523e86b0bf1868d6646af20b8f705417bab4d5e95", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-4-to-2-so-2]", + "fixture_hash": "0x78072639e345b7aba656b6d3dae842b05eb9edf1bb1f4152509fedd054f96a5b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-4-to-2-so-4]", + "fixture_hash": "0x22163e8bfd96d3508910f3a30c3eb92cdb20b7d56e8ee895a2be835f36c52653", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-less-stack-to-4-to-4-so-4]", + "fixture_hash": "0xa65623ff1dacbed5a2a3f757c07d1e470fca3d33c2470d079a2684426bbe8190", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-0-to-0-so-0]", + "fixture_hash": "0xb0cd0a3595f111cfb0a26f895b89ef5520c4f0ded44829a8acdf4341f06807d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-0-to-0-so-2]", + "fixture_hash": "0x327f9d901fae47ee7af5c9fc5fc2d4583f817b151c458fa742efa419b259eab1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-0-to-0-so-4]", + "fixture_hash": "0xc1b1d3735241c060b64f1ce9a43a734094f40a93bccc0ac610980e89c8fed9c3", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-0-to-2-so-2]", + "fixture_hash": "0x6e0dc03ecbcbd4c033b27a1e597fd1056b8fb9b032a1d79abbd67740842dc772", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-0-to-2-so-4]", + "fixture_hash": "0xcf7487073a93ccc2e7846f300c10442ff5f467e08e19b09c5e0116ab49521d28", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-0-to-4-so-4]", + "fixture_hash": "0xd6761fe360191b1c503af503aa092a9b9f392aaec5b3dd9596c9740319f2953a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-2-to-0-so-0]", + "fixture_hash": "0xf48399098ee3771bd3d90f08ca8fdc2efb706ade98dbbf23effcaae0d0e553a4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-2-to-0-so-2]", + "fixture_hash": "0xa33d13f0ad342f51c42ea34ea1ccabe18f85b82919266612829c8fa122dbad48", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-2-to-0-so-4]", + "fixture_hash": "0xc9015cfe72fc8c18aff11c64f48bc4ea2c1b86246865c47d125be3a17812aa11", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-2-to-2-so-2]", + "fixture_hash": "0xf2cd4a81950b458296760907c25f35b7c19bce4e066b11c6ee789b01e6783443", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-2-to-2-so-4]", + "fixture_hash": "0xe1d0bdffa56da643ee1a722e1b9178f5d764bb8a8715b4660dfea939d6d28436", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-2-to-4-so-4]", + "fixture_hash": "0x5cc3b9b903c8dabb285398bb76c9e31a5c8d73236d8598a73eebd5b4b810dd0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-4-to-0-so-0]", + "fixture_hash": "0xe82a923ae4a35842e7bfb7d03f55a74665d5828c1d420771c76c9d033b62298b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-4-to-0-so-2]", + "fixture_hash": "0x655e374c5f875ac660f2e065d0d9feb338db03eb4a6068ec7ddf4dce4c8d6ab0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-4-to-0-so-4]", + "fixture_hash": "0x7a6addf5b322c42069b8464bf41b64554c9755be714c255a637320f75f283dc4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-4-to-2-so-2]", + "fixture_hash": "0x19923a57a9cbb62004424c8fc93b4b9c9ec4f35fb87b00aa009cc978bca32c59", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-4-to-2-so-4]", + "fixture_hash": "0x683a365b0a6a65a2d78f53776d9473cfe992b4e0c20e50507085f1430d402da0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-same-stack-to-4-to-4-so-4]", + "fixture_hash": "0xd4e13c011cce648ed8774a99ce75576798c555eb8bf700dde61f4b9311243e5a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-0-to-0-so-0]", + "fixture_hash": "0xba434ffece272e3eeda7ac226baaf42ddfc1fa74423ecf5430947dd62da1235b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-0-to-0-so-2]", + "fixture_hash": "0x37197c015e58657010e22617838f9352bfe6c5d72ff604c1ce458f74917b3f6f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-0-to-0-so-4]", + "fixture_hash": "0xee8e10bd34394d0bd65b3c7cbe591757ac6e21a11347fdfd7e342f3f65d54560", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-0-to-2-so-2]", + "fixture_hash": "0x9a4e437011807ec7460b1802874c5a0744d1deeba3a5b7f79758bf5d503d6b75", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-0-to-2-so-4]", + "fixture_hash": "0xf1e4baa2649d531510b9ce0b92a7f0dec84b9e077c30709ac9ccdd1047b3a8fb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-0-to-4-so-4]", + "fixture_hash": "0x14399b0ab977568b6a132e671a2ae85f5e29e5beade8f56b726d42dbeefcf332", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-2-to-0-so-0]", + "fixture_hash": "0xc5b939fab45cb96833ecef53a3ab3a62a72c07eb7abb33e9ef284ef606a0382e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-2-to-0-so-2]", + "fixture_hash": "0xe733186ee0007878fb6ff3ccc7f2adcb83d3e899c233180e52c6431c9ad273b0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-2-to-0-so-4]", + "fixture_hash": "0x4653b0a6c347fd53b1dfded0de59b0fdef0d3b66c6cdcd2461db2b63eb9eaa63", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-2-to-2-so-2]", + "fixture_hash": "0x9d1f109b4afaa8ec692ce5f936fc68ff477b78fdf84edc8bee8c1e1deaf98d96", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-2-to-2-so-4]", + "fixture_hash": "0xb31f908cd733c4d61ccd07201971b4b5412bbec7e12980f9bf1d8aee164f0aea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-2-to-4-so-4]", + "fixture_hash": "0x399c5163a07cdf1810bd7ea4f5d8250d871567695a960462f549ba4bc2c791cd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-4-to-0-so-0]", + "fixture_hash": "0xdbfaf4e34610e045e3921f61c05c5af9ae5f996d29459c0cdd8a75af48e73b46", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-4-to-0-so-2]", + "fixture_hash": "0xc2dd2b605f21835ea73406e7d4200b9cb7f77c68fab70303e646d64a42b659ba", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-4-to-0-so-4]", + "fixture_hash": "0xdc3e4c4142f6323eb4dcc99fcddd9f267ee39c3ad27908459163fba8f88b3a41", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-4-to-2-so-2]", + "fixture_hash": "0x68724403855bace60a63204dcd62a2012c6dd54f8b21b1c7e5b5c55c378082d6", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-4-to-2-so-4]", + "fixture_hash": "0x6a587bca0b359de81326ac51f5c707f9c2e12f21e1994a7692bf32a3e559385", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-eof_test-more-stack-to-4-to-4-so-4]", + "fixture_hash": "0xa54582ed0e5fbff89bab9d378c5c675866ec10e59c236c912a50ea3cf2dc140c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-0-ti-0]", + "fixture_hash": "0x97a34a814add887c8a0a6035019d0b1eb84863d901bd20ca22d63719e9217630", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-0-ti-2]", + "fixture_hash": "0x9970000da21b8ebd8a7d7ec7cfabdbff289f973875476f2d92e7ebf59b994aa1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-0-ti-4]", + "fixture_hash": "0xa55db1a3d4acf5a862769e633c18ec8563f93c9ed0c781aefe4e36bb0113355e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-2-ti-0]", + "fixture_hash": "0x2de058c2b26ad2713d32af554c19193d1cc2d43433d24470ca58e0af16512a4b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-2-ti-2]", + "fixture_hash": "0xb60af657d526fc1203b66037a3754c1df132eaa76daa936eb6dbe32df78a782f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-2-ti-4]", + "fixture_hash": "0x8fa296b6ea788372abc6a929798c3e9e354faf10aea523077260cc2226236768", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-4-ti-0]", + "fixture_hash": "0xc63c9711524fa9e726394c7ab4ec828f5b87560093a3d9fb776ba76ae99b52fd", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-4-ti-2]", + "fixture_hash": "0x8b76d8138ecbe9593164e6e89f420dfc0cfcdf1d507a92266d407dca0ee2db32", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-eof_test-h-4-ti-4]", + "fixture_hash": "0xed5b7eb7614f6b5f78d68f2817d56176151ccc61f79a2487edc009497af1bbea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-N-to-N]", + "fixture_hash": "0x20038a67683f3603309b8dd0d4f9ee19c86c979c37bf744df5b2796a3a5b1651", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-N-to-0]", + "fixture_hash": "0xe430b3754f0fd2685226e5a630ce7bf5e5f52b452efb2811550871ce9d6227e2", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-N-to-2]", + "fixture_hash": "0x3e833a5167c10dc2638b9b0ae8d8979a00513361231302605d1866a8720a9428", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-N-to-4]", + "fixture_hash": "0x6942d987110c7901b0a5db3bd06ed53bc07785f6db935c22b3ba7172c4cb1a0f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-N-to-127]", + "fixture_hash": "0xac668540edec52e1c894c9ab82b7c0bf4a1482b8569166ac606be873b4ca5f20", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-0-to-N]", + "fixture_hash": "0xec7ac54906024d219a64b2c60b9ce0d1b451c1858d26462ab31d019eda64b561", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-0-to-0]", + "fixture_hash": "0xee910108fa754b42cbc7cc2b821eba6f74210b6baef4645882d878fc806bbc9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-0-to-2]", + "fixture_hash": "0x40a0a206937578392c9b1b552a985c91b18f4fac83ffd53d7a373c8ffeb63da0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-0-to-4]", + "fixture_hash": "0xe1af8bd6a1b602838bae4ff7eee849a3783a36b2cff6c1b1fd4b17759a28675c", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-0-to-127]", + "fixture_hash": "0x91b90736ae3775d65d0633e4ba1db68633dd9d7cb917629b8224f130fe56ad22", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-2-to-N]", + "fixture_hash": "0x48b88092b00c618d4037990b5a365177fff7ad61f720079aa937f0b20ba6800e", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-2-to-0]", + "fixture_hash": "0x63ebcc8b0ecc6d9be5571fd8d49bfe85662a5b337a01b95caeb77325b5b365a7", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-2-to-2]", + "fixture_hash": "0x9b7fce7b1a998a24ce6d75d9b14b804fa9791cfca74efb2eeb73b5ba7c7264d1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-2-to-4]", + "fixture_hash": "0x334ed42629e6a41cbd679573bac4049926b67e5f720a8f38f81fe59d8ed64247", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-2-to-127]", + "fixture_hash": "0x353dc8f3fa07166d693d81106b0578e1b1449262d548a6154e1390ccb34ad385", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-4-to-N]", + "fixture_hash": "0x4e61fe6e5e175568ab3180a1a51a808b3c2a00598080747cd79d48f96a22c358", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-4-to-0]", + "fixture_hash": "0xbfc46b44f8b02dea39c072abaf3b6d9ecfa1cfed0f0cd78d7de2af3f492cdd5f", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-4-to-2]", + "fixture_hash": "0x11c2490ae8547afdb0bf029bc93ca9b7ecde3be8c8482dd30f2804d2cec06ee8", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-4-to-4]", + "fixture_hash": "0x3b3a44dc24e52e40c2b6ad3a97d94d4d969aef64e8c79a842cd0dbf7fe4ae20d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-4-to-127]", + "fixture_hash": "0x74cb980d5afd74b8871a93605829b2d73d27dc6ea88b634997d6ba954d6b0384", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-127-to-N]", + "fixture_hash": "0xebd0c089174e3b2465bfa0310704f79aa57314e4285d3321a0fe0cb62e87744a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-127-to-0]", + "fixture_hash": "0xfaa2cd7583837ae47428ba6f5854ee799213f416fd1a3986b86e9cbb1e76979d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-127-to-2]", + "fixture_hash": "0x2e7a8b26a2629ace7011be46bb27bd08752e67a512192cb33d67f5762a47c7f1", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-127-to-4]", + "fixture_hash": "0x6421d862999eff28138bc8ca43b32269aea0f6e68884902c78404929da93ffb", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-eof_test-so-127-to-127]", + "fixture_hash": "0x5e56b11253762baa0d3251481c7f9a0a4e176d60b6379d45795a5c0f3c203da5", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_way_too_large[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x9bd14b4b8eca657bd2f8754e1bbeef08b104129955f2d5e03049eafde924dcbe", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_way_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x1f934fd73f01fee2f1dee524b19c585486410e8a7e44733f2502e386ab7efcea", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_forward[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xe00bf82dff4451f4140612032a4fbc96274e8e459b9aa79b43d29de8cba7286a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_too_large[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x86ac9978566667a93ef8ca8a74f4626416385512e39c96ba2341948e185c41e9", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_callf_to_non_returning_section[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xba914baffd6217f660640b3af55be5bf8ae16b7860bf1da99c2bc809387ad47b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/callf_to_non_returning_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_backward[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x9dc654d9cfc4c538fa4a9253032081925d113ca520b5a9ad099bb343364dca95", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x38e07c4e8d99be21e3b2b09b4667d858fbff5cdf0d3a02411bbf5d96bc27148d", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024_at_push[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0xddcc546317b479d94cad091bae62d62f9dd16bd901f5e3f69164698bd844b12a", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x6b8e02a8bb16f9c47e975a81106eca543d98530ab88391f18f460208b8949a61", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_nonexistent_section[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x78787f7c93cbe8542b016fa535d49e7c4eca814b41954bc5210c623109e4c36b", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_nonexistent_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_overflow[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x8b70611bcf7b6bd2cf3a5e1a18ee25008fed4630b285a88a2ae588642023c0fa", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_overflow[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x23833817b2c263de97cfae0e7b046273a181f9ec23f4241b8e313709ac2f66f4", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_self[fork_CancunEIP7692-eof_test]", + "fixture_hash": "0x3860426b4b1760e5445953b962ae65fb9bfb1a45f525246424b21ec74f7cb3d0", + "fork": null, + "format": "eof_test", + "json_path": "eof_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xb28dd7f03f459980cfbe8c74e93537e51723057cbaa81acb7320dea660be99cc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x140c584a4e01b1668d2c921cc426fc0df41c96225d204444d7219829dbc0d1c6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x368833f8ba649c260820b1e89627b25cc9e74cec2d1c186fcf241eeb5aa2f6d4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x8d704f953140080edfa1ca1026fd487a768663f764f0e1f804e908809cf5127f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xf605138b4aaa371faefa180e7fc2fbb2cafcd96c1d5456f07e4843fe8ca20df2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xb9bbe862f61d8c0b83d14acf774438797df73f73f3db05b7db246615a77c2775", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x4b06f35d33be6a089b7b7f19db2978a2ab77b7fc7419e64228547542da7a7786", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x769b17520e8089eb590a88ae621ba45710fa3dd7c3acfa13880bd3c50f6085c9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xec4f6ad5f613ee47ab48863b622e65bfe47a69ab3c0cc5e7e1215f3fccce4581", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x85f668845b76f68477ee20a23764540f462784f82269ebc388dfc4406e626b31", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xf41d1dea6d1636fb3dff995dc1c85c8ffeaf101912cd5f0a9e85d7f8bad38b84", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xa042c93f51c6de4ca125b59a557284f66f4e5014f5a8662f193c75e1f914fa7e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x9eac08464d8b9d665e253f1942405054cc248796e949fdf9f9481052985d6b69", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xe5d6685b6917327e86ea7c5ef8e29d7ef54bc3631e0b3765106cdb8b890bc0c5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x759770babe41551b0d53c5963b32312c347862a6c9a405fff43084708d64cd3b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xd0bb3d06d97dde3abcd9a40a916800bbdb56e429688a1ef8b8a801d4869d9521", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x70110a058a0a3962e40c0ce767b1a863b66a6efc5b1a86f0069e26ca0e04e40a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x9fc056294acc26c2516f2cc1f16a9497946b9acc1a1e3569caf00ef314cffdfd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xf1ec5300db666bc8ae7898086bdbc5f68ea93f3b8f6c4b059a1de246c062c05f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xed06de1c7d765c4a4110c9c5dd3f26e79bbcb916918f174287e96eacd60eb9d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xbb91ec83b13cb33cfd6df2be66a17fd6206baba27bd98f3b3a83ff617d6de0e6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xac5515c92e35cb6e081c92d06a7f4fe815af3330304af9b318aad6b32f109835", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x5a63e79f75e1a360ecad0524aed7be461096ddd272cf876d86f7047643503260", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x818e013400e3e50a406fbfa3112fdd83180bc7d2164f499359b4ef4e48340cc0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x374951f2324287e5b5ddcdfaf593fde61386bd2fa161fb20008220e5eea76e22", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x43cd7b4842841f8ff31a24c03df57f3606fe019a2844b988b7bffc1930b79c07", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x81bf63731c017be7a2533e80cd788d8cc393a22d219e42a05e98ddb958e4f35d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x1b1ae7ff278e51501bb477f67f1b9a632ec55719bab2bc636a4006f5d3783fbe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xc45b040d142e9125704be7b178843e1b7994eab249b2f4cf5892e9af4ea2078e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x80cfe8eeef07f50b73e8ae10217ba24c317081d803c194e053f9987a8f8afd27", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x6339f585c8595558283f7745710a22751ec72d30d6a5f44de22bf31db5eb4d02", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x96cab4a87cb6a305487c03a755f490c658eb035679dad7eb41b39f024f07f629", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x432424db9b16c0be60567a8deea178f81c162489de59da7a2feb57d57a127ed3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x99ba6ff7a75de1d97ec99acbf5fab411ee5fae7ed2b8a119b4ee472f09dec1c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xe326c304ba8ab67d8035cfdfcfe277e078683d53de59dcf1040686090cd67ca4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xbd5b8ba148796a9e4cfa7c252f1d7c1b40aed1e2e45ae994042d49fa8ff7e6e2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x43fb8e1d72d0936c98e4db0d619abeb5a81ba2e2809ef62cfe08be72dbfbfd36", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0xdcf14de18fedafd69079bcff624ebfbbc14275eee45a509535254ca778c92706", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x1ad1bb8548dbb922ac71687ec0858096094008c3b17df64f0208c8831bbac11a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x60fab084c5dbfc7f29c4c95e41cfc8f3f38c2d70383ecb1fb3326725533e6845", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xd5c4a767741e959cdbca7675201598a3e8458a9f529428e50f12e53798507a3b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x80480c99e4b8363f5ad9ba2619760b9c8ca7463470f0ede5939612f0e537d531", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x1f6886597fb5e7ad2a48b0bc2607c3ddecf50d9bf679aacc34272d0f3a3e8c69", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x11a8c64b3d25363c2409d4f2cd13fd0ed93e0945522eaf3de9b6554271f713d4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x1eace61f2a57d881f9e9128444e718246ff9c202ab53408540e1a27f8f130c40", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x8d5498e63fb772691c991278d3f09160e5b5b3fc570bf7c9a1b58412c520b570", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xe6c2c9e348b4f3518f70dd549f3542ae006e380c342497fef74af45fe8780034", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xbb4e7a50cee42b9fbc2ed463da97fc8948ca07e0eaab29e920493ae9bcba78d0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x5b42e09247dc34c1732509f38bc3b686147d3402cc702b47c0d0fb99ab8d45fd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x110118ef78a9601d179018bcfd25bd20a50e3f7fe5426dec83946c0fdb000f62", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xcf9f6e28af0daa24a25ea217f718cef7348a29466ff0758a12f02c1c2445a5b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xa5fbb4a8aa78ee34e21420cd916db65eb770a3bf7360ff5fad08229cdec95b65", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x75af1fe56076ce5d3210e341498da83efc856dfe4a34f013efc4592e5b6a253", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x8d661bea3180ecdcbcd50c9faa521389a4a5fd965c99e8432728e1ba2ffbada", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xe546bf12c28eed1da290fb441762439bbf50a6923575738e227b2561ebc1e27c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x7aa1c354fc926b582c665410be5f9e4d9facc551e3ca8d19a78b8220f2e1604f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x1110c9c22aed7449e510f364ba3362185c6585c10bdc3fb05dce8b2d07b29553", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x8be91b8dc17c781cf898fdcbde91868373e184cc7cf411ac3ca43a59fd825aa2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x3b0bd5a15919be197c9d331368e617d6a7e915392e3aa3aab042e15e45ce1330", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x7348a37313b01b5e9d72424cf707741711b495eda6015a2c7cc659c226364a2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xf58205598c46d315be054b2033a6027f98d213ce58f5fc57b743feb32114ea1f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x8d7d5fb48fe126a8eb9baf70b408cc603a5c8e6a12f458ce2430ca58a2ca45cf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xd5e1d7d2ecea6ea04b93b75d25e58aad668fc6de277f451e6a8a93299ebc58f0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x72a69bab8a0408e5ebc950d302351653850f2e598ad37cc9b37e01e72d2b0d85", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xa8304ab539c751fb2615080269873761fe2b68c320ee40db7c00a43f29478eb5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xfac6e6b72dac53e00add2f9e4ffadf6beea0d974c72cd0d26ac334493520b4d3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x59b4079cc13b0a5e020f90897ea932f25ab1c6e7f28b36198acf887bc90f1247", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xfd99bda32b878952e1489a5438dda8f9361a84cb849a544f81c0d2d30e526ef2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xaf4983ae0471bab01512749dde069ab0305085415bdd7152ed50537bf30cd996", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xfcda1101ca4f69935b03b07e231b256c630bda8b480240c536247538348fcd2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x6ad12e8b0a1066652501ebd2eb64a23afe34baf27b60a61bec1ce85c7023468d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xfd89ff5ec842d1a64032e48872789bd2c7deace6ca2038ef00f1afa8c73d3791", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x4a810fd335187b9c10a9fc888a0c711b68c1ccac31b7df98211065aee9f35c83", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xb8c0b3239963a4bd3c591d0d124874bc461385344def953865479489f50f1fde", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x32f7d1974da2512734da7436d66d1c2481b94648b0bff2bfad2b21db44a41fb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xdefaa9739f18a67ca7f930c58222f52b288306d38c244f8a2e81344b08af308a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x76cf8fb50eca017693d650a53f65247f0350fde799f64d7d8a5fe77e81d10161", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x20caa441fd2b475e2d4237406ebc709469f63f51104582e413466f54c9f25a9b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xc8bc0e8a4cfdea3bc434e45264ca7627400196eaac1576ec01a1e1d21c39577d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x50333cbf616dc2959038504185fafa3f4bbfd774ffa624c50d39bea7b332e32f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xe6b37911fed74895c3162d110175517e57458d5ed7381775367b659793f84944", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x5417e4101b45337d239005bed1dcc038de8904833dee5a78304016afbb25d81f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x9ea32979e25c666951f65a453ce6deba5a1bf69f267a991bd52978f0ea8170e1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x15d193554ce0913714f877814c8dd546f63342ce17eeaf09aa6d5fcfb1a11fc7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x87a61db0e2448167e79df53d9e6b58a5f6958ea67667c63a358f404a7d48541c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x2a6ab85d061827d4962d42d7472769573c2b8e76d895a8c617dc78e11f19391e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x78b81f5c6299f1cc27dbafc3d022b9f486dd83440d0459a58fb75c6038850978", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xbef31669186a2e74c1a0e2e5c5d3e1d52e7cd5eb31809078c7ef226210fdc742", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xd5419c05560f6b6552b1d9f60915798743506ad4038e14ea8ed3a72f070c6206", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x6199a9a170adc0bbdabfcc28b0a4141108334bc6a9248ff42f88ea2770a2ffcb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xe7b11ae2f1589f47f46159e9842db42fc90853becdc7109868120c463ddc494c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xc9e39979d583559a3373b60e241b7a283f764120488e9c8e6ee7c237098582bb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x7511b075a938082206682069c00843dfd80891a7b937d606f601d4eb7bd920e8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x77199a967b319c823996189eba35890e1bf830b8b42c6b8842393227dd97d549", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x9ce1cdc82870909209bd8d239ea81d5fe83ac974f4afc0122eaccdf9d9ef17ba", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x79ad49819a8db36b0d547609cbffd042658d42f458d774daad83289fa6ae5582", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x7b76b159fd6b6fcc1b5de964c257ac5f8bb7a4927658b053de8680d4f37aff32", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x9f73bc7d5ecbd95a652354629bcac957bb31fe2abf74a353179abdb1c70e62bd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x1d09c43c24b3d0b33053ef2e65aab1481f6bd4e1ba7f81b9c94b91096f671469", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xad1967edaee4f60a5913ff5f2f1ab501661ee2ab80cd7d5812dd01ab307cfbdc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x8ea22d2dcf5d8411b89f7235c4bc09da394ddb59ee750076480fad6ed10cd968", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x19544aa7982cfe8449c6a58d52d74033b6c8686e32a548da8d6787e074d1f945", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xc2fcd93039dc87978ba5267b77cee59e7e37d589f8b33e6beddb98df8897d9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x2ba5a46c470abca104d94ddb2ab8a28d1d0db6263ddcae308583998975b7f4b7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xea1bd3f6af7018dd70940ffdc8fa0098a587292680584551c34cc0284f372dc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xb3d25c3d52049ed45f52cb5634babc060f95b950f385021760a6dd1e2c91dddc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xa2d1bc484bbf8d67c12ae8f42e3b8fc611e626b7961f565c25932e74c3a12bf1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x6decd4249e02601aae95cb2c39a2936f8870473317b07feea159ce532aa87402", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x15bddc6bd28a14a77a9f6d8f345d306e850e8248bf067e302f9e7da83baffa7e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x1ced64825b92b5c673affbeb2718d0e27d0781a85cb4aa36bbae51623e9e3916", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x7ee7d0edfc36fb7d68ad2b3819f563faaf5b870c6d1720f240b1d1a6e564f953", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xfe1c8c19a07e81b2fadcde7678134043720ead6874255d1f0869f789db0ab578", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x2787fd8f0f2505f1ea00cce43763d10210bc8ef9040936e79e928feed50f6a3b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x136803e2ce195f242f0ce52303e946795b617daa34bd52f4580d4db3cf321521", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x72e1d3589bd697147d23d1d0b53f6facf4363e758c89360b468cd6a3587dd82c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x4fdfc7afa9cf35242399e01f92b2f709cb444cc9d651538b2fff94cc71c0a0c3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xbd6c7744b992625f88a96f260905a824433bae5570b02b70ddd7691504ab26ac", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x1b90b972e381dee71a7480c02d507b35069781cbc96bda824066fa952f5b2a58", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x641fdefa4ea11a4d37ec3b0dc9d0f2e3dab3768a94a0bf87ec2622d86e36648c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x93cd44eec01cab8574ce591e4a2102ceedc0146e9a00e84890477632b9e90187", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xbbdf1f4b674f3d0c6c8f6d94d6d3e084e91f4c67e97e6d3202c1a61d377562e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x29716705b5325b68f4ca46fcf291b06290e582e7ce745d5544d5f233957b18a4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x1e0fd14b6de23081e710fd07b823c5f17412cf774f343b17b7f9b71972a73c60", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xa4618770d31ed4e55bce5c631bf84d3f4f3f08e3bb504112cbd916d5d4d88b8e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x62b12a86a20f322dfa3552f2090065cba11d0ccce984a448228e5d120f8d3770", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xed99cc372320944b70731392212cceff24d7dca20cbbe2fe11240ef7492e36ef", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x8d9f5574602bdbf9f3f60e343a408f94ac3d0fb6c5890ecb64d09fa9559beea0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x8f7c04a69ebb69861fd4e2757997c26b9b89bf70d5b51f31b6f940d43b81bb4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xcc4bf2d18fdbd15bf37beda2ff353a7f4c6fd56b2941c750b5f6dd6150fb98da", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x2931ccff122ccd3dcf252b1e5473a251958f6bb493824d8a1ba080eb7d28bd33", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x4aaca3bc53e51a26b919fc9c3722aa7150f36c3202120473a0f214b578445252", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xebfcd8823e915561af57e9b02d45d267cd5eeed3ac46acb848a6c84af7789604", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xf0f18e1b6d3c922863d766e0c39d5429b9288bd98c2a6b31f1e3b17596a9077e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x815429abdb797810a07322c8b3f562d0f2d141dbf52a4160b272829aa542b145", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x405d4c41db2439f13e51584d2149f271bab501df8bff63bbb25ac861e60940a3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x516422c08f42af861bdb351b30ec075996d5ad0194b9535d0083732232f264de", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x85721aa87a4671c1f58e3c3a01dbfcaa35643021f504cba4a3bbb732432a5421", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x99e90004c3d430c3783f8737623299429ead350483ce4c9393bbf0213f1222b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xc9918f3c62e85eb94823cb3d45848496b4557f5d90a9bf10886431b1c92aa35d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x1005da0a4711c1e0b4715877a621187b7ee4ee6aaa98b1b5eeb03ff05a9a09f0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xff034ee58afdfb7b4f3ac9562019968c42eecef1d1bf98a09a2c791bee3d0c58", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x7d7350475247ff0c939e07d0d54da5b01854bf768c5fe3dd919e2c3a537da4f9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xd0276f04b8a0410f238424cb1868fbe46daceb3f294ee243725385902459c066", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x5f40331c61a74384ee11b8f96401370f47f5a3476cf3748be5aa8a823a5b2822", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xb1dc2c480b8eb0b344ed08cb8929c1ff07088128b8fdd1e971c9113be4e9cb99", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xc350c3577a23a30d6ebb004a3aa89e951a649265049b3b22fb72afe210759e5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x80fe0bff3b425f3d30f24c36f5e0d8e56bc47e1c2adaa36aedd371189ef342e5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x527f51b36040e09f18758e33616f6756dc25236fe8258cd02cc8ad5741975ac1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xdf6a3be33b5b20bc6ce9571c2087b570b0aac29f92de926ef78d22f7ae951daa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x74b0fd4b2da86cefd452c1a758dfe6adbc8f8466c7222b1421892f95521caf85", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xa47e0b9a5464d8566acd51d329fd9ab933fecf4e9ade095ef271c52376fa8261", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xbe79a43cf317c4f8970d258a16c8f1e073773b732613eb27d412b64157654a90", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x479302fdcba746625cc42f2990a6fd076e7f190c6d0c7116a5dd667f372b1d76", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xa6a64db760ab4a0cf2d83546523782827dc11dce81964536f8505e824cd1e539", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xbf96e33695332c73055a4c5e49b997dea0ef47c8149f8e491c6bfc394018f3e0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x758d5d22f78ad01d3f03fde18f1ea26bd993a28428de654253d5c97417648940", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xee1a9a69c05ac6f06b7daf38de4edfb5fdd043aa8fd5e9c29acb0bf06b06cb12", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0xbabc4a9a4e78f457d20f7bea63a2132108fca8f624a4c7f5bfe8c6dc648e9bf4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x731f42d139c278975d59154ac1fb47fddbb2d1e96ce596997eda4ccb3e72c3ba", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x506c42a709c368244c9d583bce69ee33454a4ea29e94b382305e460c083e6680", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x62faf238ed1f2d20c3f02951ed172773f922390ae0b00d031ff3f318f1c3d156", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x5b8cf1252533082f27f6cde49576a99b71a5748c1faad68cadaa367e0dbd5b20", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xecb8b97e825857c147c9a25ec7a72e5bacffe664bb364a637faefc03472fafc3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x184064407fd5472d4bb1424bed35360b50f1bf53413ee929e61c450bb431ff26", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x8e7859b33a64341f841274658e441437a16c6e7abaeb7913cc0ea1c51cf38d10", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x417f0e047ce9961b6ca356e1ee832e79ed5d051352c25945e9ee7b69568b3af3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x4c8af8924f2045c61f8f88693dc37062bde1cc6ccced5d3790e5814ec763da7a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xc6e6ed1f76ae1e99261544cc493b3258c01e3dde13da99f3a482d42eedc1b0d4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x10a75f0c432b33341b294d601cd3edf1670a16819249c2665eeee563c7910096", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xea2ba7596c1a3e17af952ab3d2b320952d3bde9660fddf99425bef1b7631bc88", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x4c9de671d2bc964dec9c370d8780e080b6f74ae664304eee2a058ad0d8962937", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-empty_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0xcf5c8d6ebc19949e3ceead4fb425edb6d3d9c9cade7871914c7cfbbc422c6bad", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x310674125f4f0462dcaa62d155ffe8e779e1644e7634264c394c2fb35d13acf4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x7da2edf85b76604821f4bfd7c9cc41c3e86114ec621bc567d45e448f8fd4b33", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xdab7444e4d0966deb84929b4fa25b3c67ef28560b8ff2a3b2d7007365034dbe9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xcc49e0f7a9c109753081143d0bf3dd7f3d21df9ec485b1a169f8ff7620a98937", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x8337bfc7520cea24dcf73f5e67caf519e4cdb52167fdf3870bb801f94552c7d2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x2bb9f76e06c715243cb2855065d782cf67779b297c4615919eeb2cca34c38a3f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x379ccbba8ad802a8401052b6017c7c0bc962aa4fdbd5f248020383ae0e26cd42", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x732c5cf71466892fd8a060b4476b816b5601ff68a4d256514c871790ffc65305", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xf51384f3e64600412abf80db2caa1bab61a68f223d0206f4ebfe1e4be21f95d4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x3ebf85529d3365db6172ef016a8aa023d5ce6aa2788c01f1973afa71d268e036", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0xcaf7850ab4938fb97f59c1bcfe7cee1050e1abd89d1305b40f3cad4f3f008f01", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-byte_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x8c12b4245ff5dcd59f40a32fef0fb88cdf2ba9a4a47f447f58b1fb6523da1f4a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x6949d34dd7883a1a2008a44ba643ebc4af48d35c2e6ffad4be8b13f10b967f82", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x20f28c74ac2180e7e7ba5eeceee9287996e3420b2d8dd783e74e28f23c35ac1e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x5c371fb389492dbf2fc8ebdcd964a61da8749116ac493b99249f1fadf045b5c5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x7755fc42103ea90f7f7c8f1b1ae5ce85333c39dc925fb60535c5e47c5d8cf412", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x613937d53a8a4a10310b166a355435e93840abd0f89ebbf711c33d85126441a7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0xe3e62ab520d3d04e02fd8c9b704d7eeca9bb2640a4fa35a79e920f674eb56f73", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x221c0c4a68d25f640139b5a5ec962887addee730460a21108a8ecd2150c691b6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x97510d70c0054e1cd7d8654164af05f2605bac76cd97ce06d8d6b273797abf65", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xc342c7cf383b75b9a7f71dbe1f0a9f16801a6cbf3aaa1249faadee935d04e214", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xb74c6a4bf4b74e9f24529422c1f43e8dacf755c6e3ac27558e1c30208a3eb76", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0xe071fdca5e171a577070b22da47cecc411b48934ca88cdf9dfbed061dc31e953", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-word_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x3678e6293eedc5e0e1d5a6302a6275aee65cb0b055187bc72cb75a0a4bcb9bd2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xf9c70753991bad1ce1bf74438bf742decb5464db9df07099d7ffd4c7ebb51e75", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x26d2cf3802247725c5023e9af09c8fe2e833767ba73661bebabe4494e4b0201b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xfdf751583d18296c85c0dfe5f5b6547251279c62fe111a4f904a229bce085bed", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x6d13931d7a1bd290776e153b4a95076de2c9936255c24f7db66fe15b742efbe1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0xd069d89bf8da2bd66f028be5f1dd5b7018be1b7f569a82abe0774fbea1c80798", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x98d35c644c7c1f6103a8de8a8b16e16e0a5aa70064d9324d82c0b2969e5864dd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xe7cf4d5769627bc19e361592eb16f1adff9112b4769386eb59469c270a0738e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x355c4839a0a55d66df70bba5d9c66c11e393d61aa4e929814fb2f0daabaa84a9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x3de544230d82fcd31c7fc8c6dc76aa2a30e08fd8f63b983ab0176f5f05672567", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x115e16105e41e102d9b2da3328be6a95e060794630dc9b022f3d4298eb566f52", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0xd9672d0063f098b0dcaae232378170691031fe4583f7ae08a3bc0ab933d3902", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-large_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x91e3103ee2a945e218b3e3a6f349b63dea6afa863895ea22c95f358a0b392ee7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-empty_zero]", + "fixture_hash": "0xd9d8e2d04926794f21d83da05f1d5a83a72631537146605fc7cabf0c3c0e34a8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-short_zero]", + "fixture_hash": "0xe96894a44cc2e4ad2a6ee32959e6d3dc843780d1d28c6c4cbeba97b177bdbe32", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-exact_zero]", + "fixture_hash": "0xf580b3ddd6d788e4ee451e90fa6186371ae61e01a3e91b7c6fa4d39371ce0928", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-large_zero]", + "fixture_hash": "0x43b36f4886fd3843617a656d518cc53ed5330dd5f0f374a22e344239fd049c3e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-empty_32]", + "fixture_hash": "0xfe24fb8ce782ed2c099c8a830512091acd766118f40c9361de3692e862717df5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-short_32]", + "fixture_hash": "0xdafb099fd869b6cb4c494609f82d8bb76a8c712304c73a7fcce31d5b1c1a0743", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-exact_32]", + "fixture_hash": "0xe1eba3a6d1f8616776a41920e2ea327827ed69a025c587cec14208029016a42f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-large_32]", + "fixture_hash": "0x91f4da441558ba2af20c708bdccc16d8e2d63318cae39fb32043add942312205", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-empty_23k]", + "fixture_hash": "0xf2b11057fe839369ba81bee5b1df34f1e7181a2a48eae98a7ed8366b9dcff486", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-short_23k]", + "fixture_hash": "0x713f6033409e63286a2939ccf1cae1a8eed918b2ec5d0e195933633a146e8784", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-exact_23k]", + "fixture_hash": "0x3b3502c377f41a347ef7ab524ad45be978e830c7ac3cee6ec7fa4baa56406813", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test_engine-large_23k]", + "fixture_hash": "0xac46d37b9f671a2a1d40c9b6fad83a834d3decedf29ecec8ebea06da97ed15b9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test_engine-EOFCREATE/RETURNCONTRACT]", + "fixture_hash": "0x21298367325b47e400d3a33019ec1649f702df0aeb9a10226afba339a8b164ce", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test_engine-RETURNCONTRACT/STOP]", + "fixture_hash": "0x436cbcc110f60b5b88ca3418d89b7a2f4c6f53c6c80d3e83dfafa7910ffc7296", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test_engine-RETURNCONTRACT/RETURN]", + "fixture_hash": "0xc0cd113c97ba84976d8a8d0970c6a172a72938df0aa574d8d138c4b6c6e33245", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test_engine-EOFCREATE/REVERT]", + "fixture_hash": "0x80b9d8006c980dc56b8763c5b8e67af919d196766fe615207c2bc212903ed1a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test_engine-RETURNCONTRACT/REVERT]", + "fixture_hash": "0x8c7b52143134a504be5cfb78560d3830413168bf82e4140431fc20def7aa8508", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_deployed[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x21298367325b47e400d3a33019ec1649f702df0aeb9a10226afba339a8b164ce", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_deployed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_creation[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x436cbcc110f60b5b88ca3418d89b7a2f4c6f53c6c80d3e83dfafa7910ffc7296", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_creation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-blockchain_test_engine-eofcreate]", + "fixture_hash": "0x80b9d8006c980dc56b8763c5b8e67af919d196766fe615207c2bc212903ed1a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-blockchain_test_engine-returncontract]", + "fixture_hash": "0x8c7b52143134a504be5cfb78560d3830413168bf82e4140431fc20def7aa8508", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_initcontainer-CREATE]", + "fixture_hash": "0xfad151afc4f62ccd1d0e42283bbc253feeaec5e924fb9f806ef0ca5597021aea", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_initcontainer-CREATE2]", + "fixture_hash": "0x67198382faef5dd6a1f676fc6372629e3bd0bfdcd98d8c37ef718b2ad27dd59c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_container-CREATE]", + "fixture_hash": "0x62391af57dd461c62471629adcec99440ab1f64e0baa6ed478cceecbcc8a1891", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_container-CREATE2]", + "fixture_hash": "0xfa02de6f6a9d7684868591b8254b60c35177230435995800f299d19cffcef32c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_initcontainer-CREATE]", + "fixture_hash": "0xd8c1d72bc8364a1a8849a3718212548d44384fe25f980c59556dffef85bd0c87", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_initcontainer-CREATE2]", + "fixture_hash": "0x903aac3322ba2181eeae564f86e6c82f670e7d63e86a62a6283475b389db1ef", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_container-CREATE]", + "fixture_hash": "0xdbfbfe99584c12caa92f8d22094251216ef7976703ac0446a342472514e2031d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test_engine-deploy_eof_container-CREATE2]", + "fixture_hash": "0xba890e386122319b1ba163a892c232e13d6ff56bcc00b08802b0a12deda95616", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test_engine-maxcode]", + "fixture_hash": "0xedb97557648061738be6957032b06599f68d94137b292bc155b857d53014a75d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test_engine-overmaxcode]", + "fixture_hash": "0xe5b53bc2e066d4821bef81813fcadff43ab77429709db86e7f5ef025382db966", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test_engine-almost64k]", + "fixture_hash": "0x924f07e6d20416671d86a00b8c6e4cd6a2d86c4bc5d92f5ce09e3ae8ead8f672", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test_engine-64k-1]", + "fixture_hash": "0x7d14d0ec4df9c44b9cc6e849dd72b2d4e54c317f84bc380cba5278809b8d9de1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test_engine-64k]", + "fixture_hash": "0xb202c2d97c082a6fddf12acc18e25ac16a38ab55a87e0610ac87e32bdfaa7b1c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test_engine-over64k]", + "fixture_hash": "0x76160ab848856e4132448735c5196f4abd7e708360576d029dd087045d55f1cb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_revert[fork_CancunEIP7692-blockchain_test_engine-empty]", + "fixture_hash": "0x6ce28d748321ea1a44e280c13f3ee54defbfeed28e5bf39f99373ec77fa4432c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_revert.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_revert[fork_CancunEIP7692-blockchain_test_engine-Error(string)]", + "fixture_hash": "0x23ab83a19a85b521767ed72f9aa9b14cd8811ee96a5f6b4b0e3c694db0d1c935", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_revert.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_initcode_gas[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xf6426043ab3baf04691ae635c29032a2a551d337778f667e41e75f4858c2280", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_initcode_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_aborts[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xd811c85498add5df020f83312c7376d0042931fd4a9e005ac0634dd5ca4524b3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_aborts.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-working_initcode-endowment_0-opcode_STATICCALL]", + "fixture_hash": "0x1534d1ddde637ba271d025bce8a17b034bb0f5acdbf0b852d721ef12c15d0073", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-working_initcode-endowment_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xef7cad9f6cdda07513825c638e7dcc57a92a7d4b8ef411c4e29197d93a3aa7de", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-working_initcode-endowment_1-opcode_STATICCALL]", + "fixture_hash": "0xf55055ef42174ae3b3bc50e92ca79c63e1ebd87dd62f6e847da820200612e102", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-working_initcode-endowment_1-opcode_EXTSTATICCALL]", + "fixture_hash": "0x74a0e62c2efdc86c5b356da0333a4d3756fb91c70b71a841f7193d524e88eb69", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-aborting_code-endowment_0-opcode_STATICCALL]", + "fixture_hash": "0xf5eb73c62c394d81668e90cbf64d207bfb10cbfcea2e79ea5a5d7efb1402449d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-aborting_code-endowment_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xcaab485557735bc956e3ed47c4648d87a3b04058ec52ae612d9cf17427300981", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-aborting_code-endowment_1-opcode_STATICCALL]", + "fixture_hash": "0x1147477e6e4466e716645c63f8dde71969285dec924d454d01131597dabf586e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test_engine-aborting_code-endowment_1-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc77e0c4e952f89b4a0729a6c1e58f8ff5047e0d099b83376ccb168558398ff07", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test_engine-call_fails-opcode_EXTCALL]", + "fixture_hash": "0xa213a87e852a5709092de6ab4af91fe3ae36520ce0b08f83e0af5e7a4b028c09", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test_engine-call_fails-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x210cfeb62777143924d1c1bb5a4e5fcd15d4379501a4d5b62b1fc3804b7dc379", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test_engine-create_fails-opcode_EXTCALL]", + "fixture_hash": "0x7ff2287700aca771604015e586e0d4513c70dd9fc78373fab4798a4abea871bb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test_engine-create_fails-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6b24a9caccbaafd62a2f24fb0df98c9d08f91a7b08157c62614758bb430884e1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_insufficient_stipend[fork_CancunEIP7692-blockchain_test_engine-1_wei]", + "fixture_hash": "0x5e62dd5acdd000db3f5061531643f1fcf4b0e30bfc0b86cdbaa3a939066decad", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_insufficient_stipend.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_insufficient_stipend[fork_CancunEIP7692-blockchain_test_engine-1_gwei]", + "fixture_hash": "0x9e040d4e76ffbfd989943b17e17bef098cded92a67de0f6e27b80a1e94c36715", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_insufficient_stipend.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_returncontract_auxdata_gas[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xf338cb45c3d2d2b5f3683555a092fc586068b6e0b06e80df9c04a4b2ba7d7e59", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_returncontract_auxdata_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test_engine-large]", + "fixture_hash": "0xbf629489832e0329403fb08b0a591566f2bbb916ae3205298cbea5d8048eacc1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test_engine-max]", + "fixture_hash": "0xd4ad88537e9d4ce602fbad00f387adcc5a4ae949bd768a3b2fcce8cd37dc1481", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test_engine-overmax]", + "fixture_hash": "0x8d90f0b4a0f2672297476be787ba9e7c943a61539b5ac8eb7d99770ae2130b70", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test_engine-initcodemax]", + "fixture_hash": "0x37eba8994a58c39c800aa3de491c5610b28d617a7431faadc210163919f92c0f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_gas_memory_expansion[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xddb874b03ff8a7906509bf9822c267abcf94316f714a2068aaccd12d14bf8cc0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_gas_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_then_call[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x27fc12b26d7f2b1f0f7997b92e3f6032ca5a6b12ad4d9f16027071a0668a0c95", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_then_call.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_calldata[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xbf46c1bd4e412a6001cb1067ddc9be9095f96b9bdc9a6e3200ff85faf564a6c5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/calldata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_address_collision[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x8ad3e4c74c72340ddef0f029f1e05dee0ac1d588e598f3ecbd67fd198c0ae500", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/address_collision.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_in_initcode_reverts[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xda159f52df6ab73a178f0264a0e6bcdff258c54eb7c176929ebc2fcb867c2e5d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_in_initcode_reverts.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test_engine-zero]", + "fixture_hash": "0xbc6892254a632d08a15d3d1698ed34d3badaac86fcbace406c0b3524c8ea670a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test_engine-short]", + "fixture_hash": "0xfbec263eaab191dc129e83b204d541d185e47ecd28f91d2ce67e7569798a2e2a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test_engine-one_byte_short]", + "fixture_hash": "0xef798426735f62ad8e3e9749c40241ad131617dae1330372f28e95ed18bd72b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test_engine-exact]", + "fixture_hash": "0xd0a912bc50c55dd432576d7c5d61e17429f7cb132ee15c0f82406c36ea6719db", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test_engine-one_byte_long]", + "fixture_hash": "0xf3fa70113eb742c538c615f76d4fdf8d0592fca9db4fdb69f7bbad8247616c2f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test_engine-extra]", + "fixture_hash": "0x349fb27c5f38010d889eb97e1c9e6ef76a71cadc67556bfcb8b953f5b038c103", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_return_data_cleared[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x907fbf60f812b3267976a85c449f30e053e9887d6ea32771bf13ae34ae00717a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/return_data_cleared.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_in_initcode[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x753db61c0884b644aa8a0136c30bce3a0837d8698b268ac547052baffcf53da8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_in_initcode.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_revert_eof_returndata[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x731fab4bcd0f2bc97bcdfa252f81bd5bc32a741fa24c4a728ab8dbbfc4415a4d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_revert_eof_returndata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_simple_eofcreate[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x95f7e82750fe4630f1266a68fb10f2bf9702bf06eb3f6c855e9fdde600e011dc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/simple_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-empty-opcode_EXTCALL]", + "fixture_hash": "0xcb6f756835619321999adbd67cf20063e15ee4e5d1242569765aa7c8dc45f178", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-empty-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6c0b0679a2fde7ac439ce3d59a54c48393b7d604da01c488e5db7af256cb3ae3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-empty-opcode_EXTSTATICCALL]", + "fixture_hash": "0x77384d168d5bb4511f9ec6d39ba4c191f7dd9e4eb342070ad4e4a477d9bea078", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOA-opcode_EXTCALL]", + "fixture_hash": "0x294ecf8f28f82cc270dd6e407276277ec4f3084f0ee3eb56f2100ba1e3f1a2bc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOA-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xcde78b81942a81cc59f13b150bc9819d69c41b3a7a1840dbd40eb66d9c80d938", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOA-opcode_EXTSTATICCALL]", + "fixture_hash": "0x528219cea21acc94a6e301c673aa1681391b23ef6ea4dc5d932745b571569bf0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-LegacyContract-opcode_EXTCALL]", + "fixture_hash": "0xbfb70dd9ba24cea5220e18472503efad809ccdc232944a538623036cb4f426d4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-LegacyContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3b6f02576fa5cacb08a178904d729cfd9f3bbbc0e8bbd23fc5e684b69fa058a4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-LegacyContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd25971ef531b984fb3dbb8175f2694f73b9735c5a5f32d8ae0dc5fe93cd703cc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOFContract-opcode_EXTCALL]", + "fixture_hash": "0x6586a281465e041e4e8baf1faf00c5924f38428a101d0a4e3d7ec0da90cc269a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOFContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7b75dd04836dcfeb4ef23b45d11b639593004c0140626fe0900cd85da5d2c2fb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOFContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0x943ab16b670a148e6f9cabcf11bf312ed6e0553c60b03710dbb8127698ff6e61", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-LegacyContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x315dfe2324e8dc816e5fd628415397f81e0895ac4b86ce87e26bbdf53d301ede", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-LegacyContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2c34461c86124fc35af19388458a138c072cca5334fe0334af77f99fd462e0c8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-LegacyContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe11cf72ce5f2ce1df30c4a10f47a458559cc1d500a8bf46d31f34c8be8334fce", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOFContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0xb776c0e85a3ed68cc8316c851f4bd25b2cd02ac50902084789f10f48011f8da0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOFContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x40397e4a320d8fab7c22fbf1ed3925ae1e735fee30f22294961689f7851c6ef5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_0-EOFContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xac2842f06848e7db3cf87713778c7e845ab60609f081011af060676f84573a7c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-empty-opcode_EXTCALL]", + "fixture_hash": "0x5d6707d80f749e179bd68ad5d570406f8b7bdcf07d62c0bb0d0a593324394361", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-empty-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6c0b0679a2fde7ac439ce3d59a54c48393b7d604da01c488e5db7af256cb3ae3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-empty-opcode_EXTSTATICCALL]", + "fixture_hash": "0x77384d168d5bb4511f9ec6d39ba4c191f7dd9e4eb342070ad4e4a477d9bea078", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOA-opcode_EXTCALL]", + "fixture_hash": "0x4545352fd50ce52eead2eb8094bee0c81a3994aa221712beb567b47f942085b1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOA-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xcde78b81942a81cc59f13b150bc9819d69c41b3a7a1840dbd40eb66d9c80d938", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOA-opcode_EXTSTATICCALL]", + "fixture_hash": "0x528219cea21acc94a6e301c673aa1681391b23ef6ea4dc5d932745b571569bf0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-LegacyContract-opcode_EXTCALL]", + "fixture_hash": "0x2e9d90c77e8b374b8c8de35ce347b137601117f7a628d507f80d6903b8f1432c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-LegacyContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3b6f02576fa5cacb08a178904d729cfd9f3bbbc0e8bbd23fc5e684b69fa058a4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-LegacyContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd25971ef531b984fb3dbb8175f2694f73b9735c5a5f32d8ae0dc5fe93cd703cc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOFContract-opcode_EXTCALL]", + "fixture_hash": "0x4c34b9f483165f3c8a22b1ec77670f8fdef0ecb3363d0d996141879fc681c69f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOFContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7b75dd04836dcfeb4ef23b45d11b639593004c0140626fe0900cd85da5d2c2fb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOFContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0x943ab16b670a148e6f9cabcf11bf312ed6e0553c60b03710dbb8127698ff6e61", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-LegacyContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x22a07be99a7001fc7d0f3ed82883d34f8763fb1dd3d4e3f1bafc4e9dc1cf8a73", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-LegacyContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2c34461c86124fc35af19388458a138c072cca5334fe0334af77f99fd462e0c8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-LegacyContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe11cf72ce5f2ce1df30c4a10f47a458559cc1d500a8bf46d31f34c8be8334fce", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOFContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x19455baacbf3da796798086c37225a19cc001d656c1c4e646280ce03e1c4d59c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOFContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x40397e4a320d8fab7c22fbf1ed3925ae1e735fee30f22294961689f7851c6ef5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test_engine-value_1-EOFContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xac2842f06848e7db3cf87713778c7e845ab60609f081011af060676f84573a7c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0x8b52ac64509f9f4ed286cb8b9ad94d14fa8735395f4008e97ebfc9a15a4a14a9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x80585e23298d0526e5aa0fcbebc39046b42c1e3d5ef4812fea8f08e28e18c5a6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTSTATICCALL]", + "fixture_hash": "0xff1aabb6488fba6e2b0b91ee00f0822ee35ed356a96a4fc8e4b90d6c5f8b1530", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0xe6b32751b607f6834a98d08db317bfcccf30f5373803c0bf3c4a653490374bee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x31069d26590f8f00f1b998954239372ae068f12d6f9abea28ea5e63e55d29839", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5117e6ac6824068885407585fd1c160e36336ed3e8e5a207a5fc9bbb281799a4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0x41435a624536039b85c73d44efb1c0761f4f2bfa3c8662e35646471b90b5892f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x74b0923267e9415decb576e2260109163518a6998aa77b8b8be1068ae60f2671", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6ba0b988e65ce843c8833ce156ed81786998f784ea26c6632b666848d6fc7a9d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0xd02e4837ef34f77a968f6e6ce03516ecb068c23e5b6cde3b6717d489e90d646b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xcfcdc500d7d8207866346bbb490da9e4d9fd17c75f09ee0b557f4b9419722975", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test_engine-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTSTATICCALL]", + "fixture_hash": "0xecdb35ab8b65853e1e08a2b9d7339d64f3fcc0651aaea9141226a3b7852fce03", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test_engine-fail_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0xa8b0dcc187880f3e06a0b1814ee720491e0ab1086b32621fccbb0637e4c263b7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test_engine-fail_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf1eb4f29121fbff7e74d2d01e5df777b0bd4e86e4ec2392509aa43177b5b4982", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test_engine-fail_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0x906da66f8f6cf2c3486881cc8e487e19037d91d8e4752ddd6f1db7efd55b76f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test_engine-fail_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x40caded6804c956fd5c5fdaec833eb6576e59f3db960a04d5f97a5c43f2b80a2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0x4268e597454d397f13cb5143b24339e526a3502f513341d291106ef1c825261d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8e8b6e913953debf148c579cd59d0ceec5dc7c5681fb98d449de45f6cd51bc0e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3c7cda99c3ceca6a41b8a5993c7522d6e249c3e9751cb81897c77507da25d36c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_CALL]", + "fixture_hash": "0xbff070cf78348cb22b4fc722b29df22e54656b0f7997721a98f4135daa1b2bb2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_DELEGATECALL]", + "fixture_hash": "0x4677a7bacd7b36797c278cfe7ff1cb56776eb4c1dbb9e6d4635098312562f755", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_CALLCODE]", + "fixture_hash": "0xae8d5e3c6866b39df9452aaa1915bfc5202d90d46f6463429792884f077c95c9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_STATICCALL]", + "fixture_hash": "0xb32e662cfca4a86ac62220b9e63d9907572c768392005b90685b5efe466401da", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_CALL]", + "fixture_hash": "0xae3d7036489386a922e3998871e45ffb7056c635469703e070688de2e2c86057", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_DELEGATECALL]", + "fixture_hash": "0xf4c61ec182fd354b648ff707d80ffd02cfa8c7fa80b1bef29b77035098a97a55", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_CALLCODE]", + "fixture_hash": "0xb684b4e63352b29bd8ff17b6aa3ef2542ac27239496b00f8696404293359b632", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_STATICCALL]", + "fixture_hash": "0x86c1b6024b0f08661669b088f6444212ef3148f3baa171134ec08a25b2185ce0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0x104d9f917eced5e5460fbb0d7e27a5b9a63f578e2e74e0300da8d8dfe867bd46", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xaf68f6fe00e2a144be4091dfdb6b0369c181ea5c0d265adefe2f6bc962b1589b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf7d1199be938caa79514cc82e9986a2a43d27c4d42417b9912c206b111dafe73", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0xb4b61cec2cc36ed1279f9e147eab2d183798f55b7db0f0a2f0f4939071749011", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe2239a30274674c00e49ae45bca4018cabd42bdc4c13b6a2dc9148ab5354529a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTSTATICCALL]", + "fixture_hash": "0x27689195cb93c1345a8fcaaa82233e40da541ea3ea38349a8c82417538d65c5d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0x32cfbbda42b030ab22c5bb2a5386124f6d764363083a6da3967a68409f24f6bb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7f3c459440024c49c097d470028d54565d9c72d40a77b85f092c2d0c9ce490f5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe33dbb2fa0e7b3fe854a992c778722840d31d3dd56d21559b05a6e85f53f91b5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-no_allowances-extcall_without_value]", + "fixture_hash": "0xd68f9de7ca67c5ead5f47ff0b9210a3aca5f5731fb3be9dbbeed73659ce8e593", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-no_allowances-extcall_with_value]", + "fixture_hash": "0x62b60c4640bd1d5130b4ab743b028da851ff7535656e599ee63c060711e39594", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-no_allowances-extstaticcall]", + "fixture_hash": "0x3f0e9bd1cca2e75fb83c0b110e059f78a12c7d351a47931da1a6ffc5331f8ae", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-no_allowances-extdelegatecall]", + "fixture_hash": "0xd6582e1647c73a017b076070706953c56a0ca57f1d5715e269a6e91bebec308f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_retained-extcall_without_value]", + "fixture_hash": "0x7beab2291c253dab9295905f7b2cdb7c400ac318f87a5b9e6c8743fb08692d3b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_retained-extcall_with_value]", + "fixture_hash": "0x78ba7e9a7c4a737211ba69eca633e4f429a92e3eb090bb1eced6173129159d0a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_retained-extstaticcall]", + "fixture_hash": "0x878317bdcd12e3b140a3d37808918a4bb2b992bb5d4490ac3527f62ae5b4df70", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_retained-extdelegatecall]", + "fixture_hash": "0x54f61b745b47e2071d2172799f2524ac3b72f811db3706095d3958ccab0448a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_callee-extcall_without_value]", + "fixture_hash": "0x86760758ded0dbd96b3eda673b5232807c91db71f84474e97d20583b4004ff53", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_callee-extcall_with_value]", + "fixture_hash": "0x5e88a67311cfb99f10f2344475e3e999c067b3093fa8977d53c5b39709a4d2d6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_callee-extstaticcall]", + "fixture_hash": "0x33350f7ff280e022b689929cde97244420270cde7421bb79e4a367248ac65248", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-only_callee-extdelegatecall]", + "fixture_hash": "0xf2750175d65ec173ccaba21d9823d39959211c27a47740da084d873ea948a250", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-both_allowances-extcall_without_value]", + "fixture_hash": "0xf2fcdbde47c134688d1cccc58bd357a3148cecfff071fc4fa0f115d7a5376092", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-both_allowances-extcall_with_value]", + "fixture_hash": "0x5710f663024f14bcc29bbb9cfaadd88f45965cfb44b782d09a9070abbd8f5627", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-both_allowances-extstaticcall]", + "fixture_hash": "0x617233c1ff19098d1aacda17981147f953d1c4e3da06dafa73904bcb5632e4c7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test_engine-both_allowances-extdelegatecall]", + "fixture_hash": "0x662caa5e9732d216f798a64f1bd070b72d3b50b85b23ae800870115535383af0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0x67858f771b0c15817326f8546abb55d808703fa6bb968629a1d1fe3fce55cfa6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xed0a84e83267e1da61ca10f9d07709e3efb161d530adf39d270c761887587251", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTSTATICCALL]", + "fixture_hash": "0x923818cea80c480baf54086737c51919ce12b855bc892a175f6c393191615379", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_0-balance_0]", + "fixture_hash": "0xf1457fc3d4374a4f0336092a653147fe6c5e7517f455237de81ea4dd24655918", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_0-balance_1]", + "fixture_hash": "0xd30b013baeb7ef2df03df5f586993d40e145bc53c62c262a61f8001c118ce6cb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_0-balance_2]", + "fixture_hash": "0x295fba34be10bc4932582c7c32388870c2044da911002bb8b3c2989c54a3e508", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_0-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0x1229e1a891aa45efc39d2b3e13828ce3e4ad3cfdf1aa79218d36617f5787af5f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_1-balance_0]", + "fixture_hash": "0x67084e6082a846a58771c273ff9e9da26e308820fdb61ffef9cf9873eb64402a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_1-balance_1]", + "fixture_hash": "0x971d2d1b1e4812942b420b2b3fe362ea17261dd778c7460bc5db459264a4ed66", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_1-balance_2]", + "fixture_hash": "0xdd8ce5c90dd3782b23aa7f754cfa99585fe932b7b7bd6160f185f60a9ae1f4ca", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_1-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0x2e1edfc16714f796f1cc2976db8301e55253ee7124f9f3dde7e205eba77cb1b9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_2-balance_0]", + "fixture_hash": "0x59516f5c422dee36fb84211de1c49476f81d12be0369a97513899488c4be6174", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_2-balance_1]", + "fixture_hash": "0xbe89a596489438894626c0d82ba989a47a1b5d248dc668f276d699006af00976", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_2-balance_2]", + "fixture_hash": "0x1c0515c39eda8ea5155da4787f0a4f6c073ab375f4a7e048a8a17c8f24f16293", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_2-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0x408fec55d58e0e922d5683167970eee719dc9b4260fe0160d13f06e8a37d859c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_0]", + "fixture_hash": "0x35148afaee0dc7f3a94932450a7fdbd356591a19d44105f0a97da552aa3d105f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_1]", + "fixture_hash": "0xccc0a4b3af6c73626f51d6f113ea69048be2c47c0856adf7febcb65cd49b5241", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_2]", + "fixture_hash": "0xbf4a218b33cd0feca8dc13689c6dee27e5ecc5415695d6305f676f926029b5a5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test_engine-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0x599d0c13d0cf0a95eedbd858cdce753858de1ec3df7f577b5ca43cfaff7e23d7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_static_flag_with_value[fork_CancunEIP7692-blockchain_test_engine-opcode_CALL]", + "fixture_hash": "0xb18679e152a37d027010f33fe3645af845c5ca13f9f95a044fab718f26ba458d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_static_flag_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_static_flag_with_value[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0x747f70ff17b034db7c53f1c02eb0da1660e8439f774b664e39f168f4d80c230", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_static_flag_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test_engine-EXTCALL]", + "fixture_hash": "0x8e766250af840742242b28dfc2812f2ade8e805df9e1df8f93b869ad4dbf843b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test_engine-EXTCALL_with_value]", + "fixture_hash": "0x16c9ee079df329a1e07bdb2b248d806cb7e9b30674971a90f21309420824af0f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test_engine-EXTSTATICCALL]", + "fixture_hash": "0xd0c9cd9b48e68c23ede292eaf2e27e7b130d8428740d10d4c3aa71454d45bec3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test_engine-EXTDELEGATECALL]", + "fixture_hash": "0xef4e41d13aa30eda6d0d2bfc5bfe66bb5d44f592e4eb02ecb53762a223a0d935", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_0-value_0]", + "fixture_hash": "0x1a531b0fc81b9578aa9e8d0c35711ebfbae64b51ef17fe961460a93308cb391f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_0-value_1]", + "fixture_hash": "0xc0609f852e17375caff158a9de4c412a32b033160caf8df54cc0e4bd858e675c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_16-value_0]", + "fixture_hash": "0x5e3bdea9078e113553270202924908f32b38ef6aa9a2a2bb87d4cbe761aacfde", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_16-value_1]", + "fixture_hash": "0x2bd47cc6d8044bc218c07a98f56694b423376742a2e1315a1b7fc61649444fd0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_64-value_0]", + "fixture_hash": "0x335ca325fd47ebf26ed9e78743fa7a60e136ae4545db2cc8057f09afa70b3151", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_64-value_1]", + "fixture_hash": "0xcf69ee9787326a6133aca9c327a35547cc212fc82f3107ab930190dc4f2262ac", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_256-value_0]", + "fixture_hash": "0xd90b59679009b618fecee3f2315ed9711f2af6c9614ec96a5ae8adf924afceaa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_256-value_1]", + "fixture_hash": "0xf2b5748e5e25c1abdc120f00ce576c65e4992599e0d7a5e34896d097df1ec9bf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_0-value_0]", + "fixture_hash": "0x18473aaf7f08bcd77591022a3030d1b7f33f40415edbedcbf46bf1a12675b019", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_0-value_1]", + "fixture_hash": "0xd1a5ed549febe9359519cb4b267a367a741e7366143049d99c6ee01f38b9827c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_16-value_0]", + "fixture_hash": "0xb727317fa7e3e3f40c630c5d73a5ce01d55e1e5e2e2488c002f9fe9fe488d583", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_16-value_1]", + "fixture_hash": "0xe7ebe7c898b78914f6a09ea23e0157921b80e338180555d88c199d19a535bffb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_64-value_0]", + "fixture_hash": "0x2e8291d55a166b0c4b9d8d4814bbd8c2eae881c43ac4a121a56f570271dc0b79", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_64-value_1]", + "fixture_hash": "0x4d94d6d6dbd067ef8ecf0fc251445acdf5cd2b6fe6cdb723d15eda4d09afc1d8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_256-value_0]", + "fixture_hash": "0x5aff4d04ab7ccdcb3ba5f938bf8fe91fedb04c4d61f222998ed518fd5b19716c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_256-value_1]", + "fixture_hash": "0x7456b62a7e9fecf812fcaa53500c0e896e565983f16f50bcd685db917b590d2f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_0-value_0]", + "fixture_hash": "0x749232526406c99253f28a3df6aef44e4709e84f72da6ecbd148b8857e4ee320", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_0-value_1]", + "fixture_hash": "0xb64afe983ceae267b7860e14bbe174846662e190e5a0305ade3e8b8f6500d5e6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_16-value_0]", + "fixture_hash": "0x77ade77bfdea7a7fc9f050cbca68562c74114a5581f8794859f1961f0a72d143", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_16-value_1]", + "fixture_hash": "0xb641f2bdefef733b78947b76be45c422936edc9b6f926c2227fce0ebf050070e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_64-value_0]", + "fixture_hash": "0xcb5f4fab1c061a2fe62243f2fef03a0d88437b0247f900c5e9daed672121ee2c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_64-value_1]", + "fixture_hash": "0xefaaa44c0da18b1181049ee0ae2d7f1ad7b24836fae84e3ac1a7679da7f36295", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_256-value_0]", + "fixture_hash": "0xb83754cd1a50a15c0491ed0321619c79dbcd3337c67cfb2f6828fc2d1095cf9f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_256-value_1]", + "fixture_hash": "0xc7bba6fd4848f7e58f61d3f85550fba9baca8940026e79f88a6a52cc1d4ffb57", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_0-value_0]", + "fixture_hash": "0xa0eaaf20a54fbd8eea6aa7ff4efc1716a9652c8a70462b6319f6abade068b9a9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_0-value_1]", + "fixture_hash": "0x824d0c1710bd785d1077a9461ea52ac4c0884e5b13c959b5d1fee998da90e7fa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_16-value_0]", + "fixture_hash": "0x9f5cecab482dd3b22114750f24d56168585c4fbe3a734f6c986dc559e34078d2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_16-value_1]", + "fixture_hash": "0xc02400447c588d5c212da19acd1616bd7a392ea8d50243c817c3e3766662c3b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_64-value_0]", + "fixture_hash": "0x43b162ac709204b642d3372a3e75758c21d61a00634df8e91748c655b131cea0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_64-value_1]", + "fixture_hash": "0xbf18ef096197cdb18599b59f51174a82adc1d288144289a9a03d9b854c68e2f8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_256-value_0]", + "fixture_hash": "0x5f7c6d5070131e33443aa95e4b02250c5d6e702810218d61d91cc7b89507b865", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_256-value_1]", + "fixture_hash": "0x4deb07ed6840664da80c694c80d033d1cc5e7347e34be07bea2d7ac084cba1c2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_0-value_0]", + "fixture_hash": "0x455718d4c00c6988e4d1651222996998fd19e06a8227e8cb193d812a7f87d268", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_0-value_1]", + "fixture_hash": "0x9aceab6a0bfdd79c596f6072fe29f503848ff969587788bb12d24c4316d5f734", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_16-value_0]", + "fixture_hash": "0x48c084034222fd5bd7970301d4a153f0a1f543e05df035fa6e41d237d0bb9d8f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_16-value_1]", + "fixture_hash": "0x3926f2f5fb97ed91330f5a25e60290773393bc1d61323eb8098f4404bf49b281", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_64-value_0]", + "fixture_hash": "0x8d052e3dd6c8a2f88dd1d7fa381b406cd02ad4d4c4d80a8780dfc405811971e1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_64-value_1]", + "fixture_hash": "0xd360051d25bae09b75903334c70c9f8167209dcc3c2ede2d58f10abfc607d9f7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_256-value_0]", + "fixture_hash": "0x5b6ac66e895ea22a738c8ff863ab1243e237fefd839246761d409592eb3add3a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_256-value_1]", + "fixture_hash": "0x378d75ae96fe24999ee7bb4cdd809f6cbfac9d2dd832a14f4bc2c2d92004329b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_0-value_0]", + "fixture_hash": "0xa4158055d4358cc04be39c6afcd85a1ded283c265c5260cabd89d628d605f892", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_0-value_1]", + "fixture_hash": "0x35c5e9bfdcd781f807111d266ac9538e6b6f68f566bd2aa72455ce4f5c78d7e9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_16-value_0]", + "fixture_hash": "0x27ec452228397462a1bcd5feb5370e307045dbfab0cc24bc6828d44cbcfbd19a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_16-value_1]", + "fixture_hash": "0xa08d951d09c99077ac61fb043ee5813096d5990dbff663ee419022b0f6b42aa1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_64-value_0]", + "fixture_hash": "0xc479b7630cf2607ff3305746168440bc7c1ee6eae9c6cdfcd68a5a1b6df81cdf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_64-value_1]", + "fixture_hash": "0xce8a976a0731ea3e5b169e375052675c229ceedb0b10b40d9e748165333fbb65", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_256-value_0]", + "fixture_hash": "0x45af6240731a9f64dfe2e201b719ae4b0afefed3d0fe619b15e51c51fdc0d0f6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_256-value_1]", + "fixture_hash": "0xd12d28f4f8627460e2148def749f0af7309a2a306b78c0afa22a9e409e04540c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_0-value_0]", + "fixture_hash": "0x7e29baa38ed2f0ba1f79af7f7bb58e0b8c5ae0e0a168b93fff7de838499ddcc4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_0-value_1]", + "fixture_hash": "0x6b5cf5aa3592bba4649459d052ebe990af40c3d3749f82b9223375ff913c6c8a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_16-value_0]", + "fixture_hash": "0xc825773eaded258b4994495cd9b613ce7c4beca684ce7631d8ab305cd6d371ef", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_16-value_1]", + "fixture_hash": "0x23807f5fe3de4a25114f1498bf38ebb5e95faa2775288e420b3f829e678bda5b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_64-value_0]", + "fixture_hash": "0xfaca792f39791cd02b78129f8ee72bcfe184350ad9ce0d0a4d71cc354e63395b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_64-value_1]", + "fixture_hash": "0x1665bc608158eb70e8d3f467ac84d7b02c2b9aae49487b77274edaf47f5148e5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_256-value_0]", + "fixture_hash": "0x918ef3bdd8a7c78c5745a8aedbaa50eefb80bc25640a0468b4d326b8a167aae2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_256-value_1]", + "fixture_hash": "0x7f6cee495c5c0b91f3a4d9145287421318ff9b9bc4aeb719dae361c7cc7b69ee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_0-value_0]", + "fixture_hash": "0xe3441228200d9e5ad6e491698e376f4b490fd41e1299d655999b46b921355b3a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_0-value_1]", + "fixture_hash": "0xac3424287c071d17783c239f109260dee035ce290088ce1b42f2a4dbf36ba950", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_16-value_0]", + "fixture_hash": "0xc4c529bbd21733d0eb90e018a5a3a04b0f99bc70572ff31ca595e5dff928d0f3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_16-value_1]", + "fixture_hash": "0xc3e7aa9efd2ed32768c96600857799a80782cacc122737c8ff0302c50f6922fa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_64-value_0]", + "fixture_hash": "0x6c8ab185af1ccfad20bdf4ee6507167dd23214a0717674944833b1be9a61cbb5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_64-value_1]", + "fixture_hash": "0xf17b86afd52638ec86895e34eec685e1cb30e05c8bedacdef180740603d1fa12", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_256-value_0]", + "fixture_hash": "0x573a3206b76a5dcb6fcbfa11189ca2606275d74d7a9d7a7bb29eb8baafbadc55", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_256-value_1]", + "fixture_hash": "0x5c2dcd0a2004616fe7992156e1fc92bd4adb29be8d589567ccb734d44f966041", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_0-value_0]", + "fixture_hash": "0xf9dd9646bc3143c74aa52fc092fce4e19ccf3e190895fb45f94855d52bf63464", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_0-value_1]", + "fixture_hash": "0x2b2eabfe6d5bcfe163b26800ce5c074738fb2cd58555455df3b2fa940faf7e3d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_16-value_0]", + "fixture_hash": "0x3f22bf9f50a2755f1ac7d6d7e09863bfdba2b82ff7928453306dfdc8f47727b9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_16-value_1]", + "fixture_hash": "0x3b79e294a8da95819d0bcb56e412060a8e4378432163882b4f29816156ff93ce", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_64-value_0]", + "fixture_hash": "0x2907ba58aaaad037aa0a931f80e37e588adb559aba089e8183991513a33e79d1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_64-value_1]", + "fixture_hash": "0x415d98195fc8b6099b0b2afe238a2812b24ab4f091be6715c5796883cf2f8310", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_256-value_0]", + "fixture_hash": "0x45205f04af1a7048ca16b13581cbda2e9b0f7e4ef4658214f9660da586a1aee4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_256-value_1]", + "fixture_hash": "0xb1e51b712eb1d7e371751ca8a1f89120b4fa47e52ef00e43edd5d969c1c425b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_0-value_0]", + "fixture_hash": "0x51807c046325c9013b75887ae7397addcadc2105929a683ff090412b59b39091", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_0-value_1]", + "fixture_hash": "0x4b00c89bead9ba4b735777d5fd8e5b784562b885d2ee21c0c2956693fcb517e5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_16-value_0]", + "fixture_hash": "0xe7a6b4bec20ce428251a3ac0bd4b840ac59ef4081e697bc4d146b9776b3e9353", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_16-value_1]", + "fixture_hash": "0x54e80d91a3e540cc2a42052f3fb6e079f6cacaa1b6f3cb7868964c2de072ccdd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_64-value_0]", + "fixture_hash": "0xd06876a27d11e7c668cad26a9798baf793846b9fe38e35f1db7b21d2c01441cc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_64-value_1]", + "fixture_hash": "0x9e9039ede8c5381ebc12f9102850c9e63d16ef39a0a7d2e13c000c5cf53a839a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_256-value_0]", + "fixture_hash": "0xb52403b854df5709b1681b8de2f14787289de2aedaebb911e2e3abb03ab581a8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_256-value_1]", + "fixture_hash": "0xac67722ea860950cda343b438b0e997405445b915e5d4ea808a63442a0d6ef5a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_0-value_0]", + "fixture_hash": "0x134ac0c30e22fe65b62d93bf7af4e29694c1f64d122e36677b6573035dc33ebc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_0-value_1]", + "fixture_hash": "0x6fbf086c943be4444c8c3d8193ea6e0bd656b2b21b814bfffa3b419a3694fa03", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_16-value_0]", + "fixture_hash": "0x284ea98cc5b9432446d95a555dcd815df5977414281ab9a0f447d7d28c996bc6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_16-value_1]", + "fixture_hash": "0x9a35ab2ce435eae42a264a988adff254a5394cceeea7bfa2910378168cd5aa00", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_64-value_0]", + "fixture_hash": "0xf2e6add553be1d936fd0ec53270da660bffdf31bfd869d99040fa5aa16ec5453", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_64-value_1]", + "fixture_hash": "0xd74f96d1665c6e5f4283155bb9f68ab861ff1c5b2fd3d43e666fb4b03ed36dd9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_256-value_0]", + "fixture_hash": "0xb3fef781ab41cd1787283e1000b4fcdb57e33e896a5fe0a86b132853abbe91ff", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_256-value_1]", + "fixture_hash": "0xfe4bcf957a8114eefb1b0a699fb4af4f2571a75a39a6ce10d3c2704e89661eda", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_0-value_0]", + "fixture_hash": "0x293e09d2962a510cb5795e36cbbb8ccdd3123da5e407cf4f85e835da5a446bb2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_0-value_1]", + "fixture_hash": "0x7e4eea223ded896d21ee1a54cb89884a3867693810586f824caeac597e83fff0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_16-value_0]", + "fixture_hash": "0x74410d110d48e2113954b9e33094d7d8c29510f59a3d3ea667837228a87bfdd0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_16-value_1]", + "fixture_hash": "0x6208b72d55c2ce66de58de7d44c49f85bde1f762b70696b753911fef2ce33425", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_64-value_0]", + "fixture_hash": "0xa69724262c7768afdde1de090561d069665ddd51462984a1cf0a422d9c35bfac", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_64-value_1]", + "fixture_hash": "0xc0c903c5bceb09b94c551a99104740c7a2b5a75aa253b3af106deca9d38c50c0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_256-value_0]", + "fixture_hash": "0x7c2e4f67486b9127697533eb3ac71441f2df3a1b3142b6e468ce33b558370c73", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_256-value_1]", + "fixture_hash": "0x537322fcfd9dd25289719e9026afe8c3072f777a8a236d58240a8634a45c4e5f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_0-value_0]", + "fixture_hash": "0x55c3fd7e87aa08b7f9915b6777accb8a85290e45fc62614333c03df6fe9b44ee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_0-value_1]", + "fixture_hash": "0xd7a2fc06341a59f6f29cc7dad1277b246daa2dbc9d743e7022dafcf448edd73f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_16-value_0]", + "fixture_hash": "0xd2a5bd030b56b48b2d3ef9f8997e7f949cf5c23f1a5c91da625267b56f9e823f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_16-value_1]", + "fixture_hash": "0xc3518056f4993af5bb9abb987c276c1d26bc09a9a12839348cfadcd969e43c07", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_64-value_0]", + "fixture_hash": "0xd654ee74c91099efec0b1011d3944f604421ac24f9e72b0b7dd613bd66de1d48", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_64-value_1]", + "fixture_hash": "0xc46d96f32b8903b548e4dc372b04664706811d61970d8c4dc642b3ded8737869", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_256-value_0]", + "fixture_hash": "0xb21fc188812b6f02ef4783af02cc61f65a5c2bde7075a64e6e57a3335abc841a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_256-value_1]", + "fixture_hash": "0xbde94834006eae941e71f07172d9aeb5b95b9b615affc3e3f4180c2fcd2f3f2a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_0-value_0]", + "fixture_hash": "0x326c81bada4d78e63f1804ae3d5971b8340b65a73818ca0b3208905e5afdaf90", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_0-value_1]", + "fixture_hash": "0xffa303eb464e9f01fb38dce98449b10e1bbed7697c9798e6acaf9183e3ab0fda", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_16-value_0]", + "fixture_hash": "0x6fdccc0de86a9cfdaf24888d2675709041bc0c2268c3968d1da7b8238cf8731c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_16-value_1]", + "fixture_hash": "0xad532b16a50e60166fcae43a11ceba0956dd020d2cbefce40ab247635a2b72f0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_64-value_0]", + "fixture_hash": "0x502fda48021d33232af4208aacad53b4b27e99a7a609d8a3772f7a819035bcce", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_64-value_1]", + "fixture_hash": "0xd25849c6d2552118a377dfb0f720a04cd2fc0fad356561eeaa14229a02e3ddf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_256-value_0]", + "fixture_hash": "0x58810d5e3d5db77686b7016b7836cf623c5a02003fc90384531466ceb250e270", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_256-value_1]", + "fixture_hash": "0x65880849f6169caffd11a16e89a3081d10314b4477459e495ff91d2edc003ca5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_0-value_0]", + "fixture_hash": "0xc1f05bab5360b9b22cc6e25803f07970b3312f12088ba5aeb1f09d1c687a5d5a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_0-value_1]", + "fixture_hash": "0xf69ade5bc82f088d859048dfb9c6a859b6e7a747f05fd41f04c6c0fd82b9cd74", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_16-value_0]", + "fixture_hash": "0xc96f4c37d150cd075ae401832c383374e9894057bed26c8dee61e541eb8cd34f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_16-value_1]", + "fixture_hash": "0x8c96f63a0022215ed8f64757e78dad70631aa6d8700de627c80b40eac65393e6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_64-value_0]", + "fixture_hash": "0xdbca2f7ad4f540a4876a33f36101f8885cbe9552bdfe252b52272e9dc50d57c2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_64-value_1]", + "fixture_hash": "0xb8cdea2c7ddd4f2f2b68bc42e2b56cd0dde4962716c19175e4722a4329b04a9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_256-value_0]", + "fixture_hash": "0xc7905872ef3246dcdb1f440fe9a3a7646556054d0da73fe87db3ea2386b4afad", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_256-value_1]", + "fixture_hash": "0x8322d1586e237ef2ab5e648051f0e9ded73ef05ba6a7991e3cef51e972ba86f1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_0-value_0]", + "fixture_hash": "0x6d5b2dcf10259c610cf586d6ce8916fdb990427bff6754c2c14f208a9defc3ff", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_0-value_1]", + "fixture_hash": "0x8b5ea260166bb9e2602b01c1c2e02a8ca65de5c0de694a80c23193429d4bf5cd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_16-value_0]", + "fixture_hash": "0x8b2266e01c60582b3772914a2410dbf3c18ab6402299eb291aa912b477f3dbe3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_16-value_1]", + "fixture_hash": "0xe10efbdb937616c4e36eb1678c45544bc9ad4904d0047a487ec3283e7225ddbd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_64-value_0]", + "fixture_hash": "0x27aa2b834396e4d21f614036641285a506c2493c0e21f34468b329da17924506", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_64-value_1]", + "fixture_hash": "0x8ef6aff6a81754f207e1a88a6def76a644517072c69cb58960993ec59f965283", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_256-value_0]", + "fixture_hash": "0x2199160eafc669a72a0b866e7fd7b131579ce927ae7c07dffebabe11d8fda8c7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_256-value_1]", + "fixture_hash": "0xa53fa98c52fb8a85dc1258047acddd9c55a22abd2538c45808a1541c29d6b495", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_0]", + "fixture_hash": "0x35aa23e8cb68799dc72a89cfa5d0a703252ac55f8a042af861489e84efec7e48", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_16]", + "fixture_hash": "0xf89a3e3fc0179d50d54f903739122e6f545af78ef48236d234ffc68936e2f0a1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_64]", + "fixture_hash": "0x7953f8e91b6126e59c78a2047fd0ef2e062567ff063d6e64bf8ec418783d2ccf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_256]", + "fixture_hash": "0x3722996bd8d56b46dda348542e7fb42c647de5513ddc3e3cf192e54387b3cba2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_0]", + "fixture_hash": "0xff0c9c529d90d2b39f7367e627d15e99041319de49fb5845d3cf8470b494aa7c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_16]", + "fixture_hash": "0x197d83b48ad0dcc5dc1d37d82e9cf2e895cc06791f8825f45174652721ea8adb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_64]", + "fixture_hash": "0x3ceb012e0258ec158834364a8d15467f8d411bca5b37b468da27900a4f7e2c36", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_256]", + "fixture_hash": "0xc44c8955b5d9817619054de3d6e679e0a07ea6bd68cea68f7773f93a4d0e8e55", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_0]", + "fixture_hash": "0x5219a881fc3614931c497cbd6b2ca55ab116a7c23509aceb296d4b2fc291c79c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_16]", + "fixture_hash": "0x7facf64616f62c724e0631ce04ee392f1431c4189a354de90661fbad84456019", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_64]", + "fixture_hash": "0x218e569bbb711f575ec36fcbba14a902bf8f41996c52b13bbd8decb977272414", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_256]", + "fixture_hash": "0xfee5741eff76ffa868a1f25bb49600df6cbc5f3872886380b22ee1fcd5000723", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_0]", + "fixture_hash": "0x8ae08e8255af1bc8910a1f3c3b757bf59a738b12ead30925012ed4ec1fbe8e4b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_16]", + "fixture_hash": "0xb410990a898902ca6a518faeb0faba13d1c8bcede47cf514859131c590f13fd8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_64]", + "fixture_hash": "0x99f2d65e8375d282ca6c651f2578c1317c4df259dd46fd1d932bf4f19f163337", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_256]", + "fixture_hash": "0x3bf8b67f8247d6f831cb360dd1e0eaf9dfe7a0424309f4795c46fc7686a5f8f9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_0]", + "fixture_hash": "0xe34865b2912aeb5ec980af6ca237c9ebbfc764a68f9b795feec4b4422cbd4ecf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_16]", + "fixture_hash": "0x50a4277edd1c400e99a744029d1205665ec59fc94e04946401816a6d1d217e70", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_64]", + "fixture_hash": "0x88bb7c883fffc18c3e9f0c744a191a6cef707eff4839b13b8cddd70676513148", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_256]", + "fixture_hash": "0x3ca5a78a87e2c13e8dc19d9003f7268b923dca0e5decfa350b91b128538c38cd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_0]", + "fixture_hash": "0x743933dd612489b68823777cffac9625a9313a15ccfcd5f7132b4bb08c1f5e86", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_16]", + "fixture_hash": "0xb1f969795dc8a834486b9c8c34ba60c80050c7591aa6973026ae6096ff4710ab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_64]", + "fixture_hash": "0xbdf1174b3bb41d58a716cbdd50c69737ed12a8aa474922f791640b29880633f4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_256]", + "fixture_hash": "0xf187836ac336003465562f40c44fef7ebf6cf1389dc79b588f63b9d724267f95", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_0]", + "fixture_hash": "0x42983305354cd495965911971bf32f79ae82b3539bc92883e66eb678809e30fd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_16]", + "fixture_hash": "0x3799de350e2c511486f811d09e36320bdecd9137cacae519da7421b4409bfdae", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_64]", + "fixture_hash": "0x3efb46eaf57093ca0e353a1cd35a9619393647fba38acd79ea05c970467b0131", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_256]", + "fixture_hash": "0x2b202284206068df04332070572a7328e4c8c9c6e2d1377023942f3ef911ed28", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_0]", + "fixture_hash": "0x2e9afbe122635099fbafad0be728a05d080f328f487ed01eeb544c40e6d5a307", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_16]", + "fixture_hash": "0x9feac43ee6a23894821d9ae4523d5535c4748054c27c03e634213e64f3a124fe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_64]", + "fixture_hash": "0xa4e778a902c8508ada17dd595a5c72b9103d71ebd61dbbcd2e2fb4661cbe0c57", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_256]", + "fixture_hash": "0xe586767d879446a535f867267864c202f890c33d4c333f6778e1d95913b8c802", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_0]", + "fixture_hash": "0x1e920b8e6f50cacb944e9e55b9d23620ea0097594827ff6283379bbdbc35b630", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_16]", + "fixture_hash": "0x9ebc1bd32671c1f88a6125f69783e8fb83795d0932ff62f1ec6aeb76c4391c6a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_64]", + "fixture_hash": "0x29020616e08d8ee5c65fc990aca91d6f8d2a50ef505a384e2b05069fe4fd4540", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_256]", + "fixture_hash": "0xa480f625ef99ad8b0973572df73d5a68601f8463d32a735b5c504d32d654ab2d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_0]", + "fixture_hash": "0xa10206a53e7a40fbd19b48e38dc864406f263dffb1bcb89b8e406bb9cc591a51", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_16]", + "fixture_hash": "0x48470f0642cbbc4ba97885de60308bda5dba4b8bc42d33e6eaa8de71e8543317", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_64]", + "fixture_hash": "0x5f71834297c5115910adf53afacea3ed6318333bd438e0b8316f6e493f0b3347", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_256]", + "fixture_hash": "0xad278ead52c497ec94bc2dd2646e4d99bb4322817e738ecf871d1dc04ca9b2c5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_0]", + "fixture_hash": "0xd981ce3f67ad059a040b6eefe5d3cfcc5e505a85286544fe9933f848f0fca3d8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_16]", + "fixture_hash": "0x4ee30648593a77a68b2f6659ae437e240f7e6adc74fcfe21a923c4024cbf0cc6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_64]", + "fixture_hash": "0xf679491b955e1d3752fd0537afb9712812944e23b2355778a634b604344583cf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_256]", + "fixture_hash": "0xb1ac00d2dcac483cbf7e692e6aaee2d2ccb0a87adc805e48fe6e7f0fee931320", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_0]", + "fixture_hash": "0x438cc10705b024e152fd15f925d8a07289ceca737f9d479dcfb0769b59908126", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_16]", + "fixture_hash": "0xea56f8ac226632bf09abfa7857fce44e811375346a967e93ec1df2e386c1a59b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_64]", + "fixture_hash": "0x78cf67def43ca769663a62889ccf4ec2f007120e8acd59836c38f77c6ff614da", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_256]", + "fixture_hash": "0x3643d79ba793c06d4be283747f3a99722d0da02ae0d5b9fe602423b015dd0869", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_0]", + "fixture_hash": "0xe649875b3121bc9ff07e49b76be970a88eb7e69a749bfe36a0ecf3215ae5ff8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_16]", + "fixture_hash": "0x34e68c5cb92cf4e618b1524bc9b90d70c105735a90a503238b608dd8a79215b3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_64]", + "fixture_hash": "0xc3f74f0232e505c34e45a9645a26e00eb83fea34575c7db663e2bda2b19ad3f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_256]", + "fixture_hash": "0x7481032b956ebafc47f71384e5abd3c465d470e50ddfc29a985bc9b02f8583a9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_0]", + "fixture_hash": "0xd476622d33db30d6f8f59bb3b75be14be28969e6d8c0cebff2f03da4e8dd259d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_16]", + "fixture_hash": "0x7bc78a711f84eebeb8a1585e8c0f894e65a18b274545209a563c75da45fcaec3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_64]", + "fixture_hash": "0xadd757088dd7372f68b8c09778c36a0abde7d32aa6dc37bbee69cef2aee8c509", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_256]", + "fixture_hash": "0x63a2c78d7659aace6271627478f2ee28a8625acd40f471f61c7bddad63c89d8e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_0]", + "fixture_hash": "0xbfc1047e2a03e3a4c7687fde45f3f7dea5a19716362e52faeb95982b185a52b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_16]", + "fixture_hash": "0x1037ee9501bb04efec53093197b5ee6ca0a887497d65c42b67a35912ec1f2476", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_64]", + "fixture_hash": "0xbf60edd6ea7a6d36ba35ca80a3319ff5f64af1140800e0369c1f56c929539a04", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_256]", + "fixture_hash": "0x9a0ce01135cdad10189118eb2dfe78ae68324c2c89172fbc41929f7900ca1178", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_0]", + "fixture_hash": "0xcffbad18153be972dd49cc37a1a9cdff5e4357946ce2f9e786174f282f84eb08", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_16]", + "fixture_hash": "0xafad5a5fd212219eca9965ae81561f2c542daddbeee8003f802e4690bc9ffe93", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_64]", + "fixture_hash": "0x67d2eeccb9ee5deb1ce0835ebe4b25f8afd4e43dce79583bd8cdb25aca041831", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_256]", + "fixture_hash": "0x80c14251dea061b79a1721fea6f4254b6882dec6aad42f43d4e754c33c674979", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_0]", + "fixture_hash": "0xd43b127085c8ee997d23048dc36b987439e413114d0d60c7419b1b054e89e42a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_16]", + "fixture_hash": "0x411255cdf56995e258281e75ca99ede24374112827865fcdec114bbdd3782478", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_64]", + "fixture_hash": "0x3e7b6a1ec67c6b1a8e8c50ca7bceeed2b2e5dd027343b2730069fbdd985c9433", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_0-size_256]", + "fixture_hash": "0xc58ff8c1afa7eea98a04a5b0c57c5a27a00957b68ab8fedfb2cb74b999091d4d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_0]", + "fixture_hash": "0xd8216b48f6c13d815d65a4e628cd67e762fc6f3a481588fc9a47cef9dcc2d8e0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_16]", + "fixture_hash": "0x92f705db90bc96d488dd285ae3f5bbe3590c8d7a106097fbf10ce387c3944f4b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_64]", + "fixture_hash": "0x9464ee857a9a1f8a1860370e1e96cd1f394e25680e0866522740c16d7afdab10", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_8-size_256]", + "fixture_hash": "0x302ee7011b5bcb91d1af3abd45bf70c77d8dc99f13dfaba839ae213036db4802", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_0]", + "fixture_hash": "0xb0313a3728822a95350d83f444849f6049b5af6d0ae590d4a83032e2cd9edfa0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_16]", + "fixture_hash": "0xc247fcc55be28c2c1afac6a5bac043e4d3fd1aac42863cb0fde52fd77c38b093", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_64]", + "fixture_hash": "0x2762a67b971580943ac00da5498b91997e32c343dddebafd43cbf5fdd165914f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_24-size_256]", + "fixture_hash": "0x1d2a784ee0065b038dd3986cdc0cde6b43fb81fd204ed9c6676d0fa8413fc98f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_0]", + "fixture_hash": "0x932e19e1c70fd66b3eb4b9d55bc5e3a6629a413c58730cd9eca218f3a7665036", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_16]", + "fixture_hash": "0x1085063d6d2ff8e03bc4bf815f24288226f518b2eda1602766d0b1b53f4c0455", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_64]", + "fixture_hash": "0x9fd8b719b60abfcbe735ef5d66a2276def4a473edd7d3fdadb6122e0774ed02a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_0-offset_80-size_256]", + "fixture_hash": "0x3b47d27b161846911000f75053eda0641707ab5ec87abd464c3f85d99851dbea", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_0]", + "fixture_hash": "0x87fa96187ec0fc41b620f3dc5565e21b7d1e549c3013ac86cf9f50421cdb71aa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_16]", + "fixture_hash": "0x35889bba947dc742ef7a3e0c44f275ec46113af15c309dc81cf9b5d33f8f6341", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_64]", + "fixture_hash": "0x13bebf1704796319059c1ae1692f0de5be544ebfcad1b77755a99d78afe32a07", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_0-size_256]", + "fixture_hash": "0x6493e7718b8f1d67737fa62c723daa929bfa92a87735257e12bfdfc9aaba85d5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_0]", + "fixture_hash": "0x7de00d7ab9268579efac75d6ce1bb0da5ba17765a8844791f32d68b8efc455aa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_16]", + "fixture_hash": "0xca70fe752a13c65063cf9d63e30f35a8c8337fbe30adf0a3945d449c6bdd33fb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_64]", + "fixture_hash": "0x729c3fe72c442b33b5bef2061d8345eb9c40eca70caaa4c1f49f283aaf4f4b5b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_8-size_256]", + "fixture_hash": "0xd18b7e091b8db8e0afa8196a9352baa640f879137fc751ecc5816f75ad266cd2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_0]", + "fixture_hash": "0x8e9e610b4c2a521e393ca5da0174d642ad1e876d6e66ab6a5310d0e17bdf32e9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_16]", + "fixture_hash": "0x17aa0c3b717a76ef7ab281b4edfe3d0c02c1f96e800c4ebd40a8cdebf013fc2e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_64]", + "fixture_hash": "0x6a826c3b5a8c2883e227ce123ad93ee20d272026c476dd89b31015d4d99c63c5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_24-size_256]", + "fixture_hash": "0x4d3e5cd09579343a260fa5d7c0329bd05aaab43a7737576b7176fc090fa3a16e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_0]", + "fixture_hash": "0xcb111589cbaa944070e563f54ea98d8793b1818bed96397697af395b11d4c822", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_16]", + "fixture_hash": "0xb03402432d2ce99192e8c36e9adfed9661f8ee2be1e945e6418b838c1e46377f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_64]", + "fixture_hash": "0x7d60dcb4582e3056123fcaa0e0c7a21668c2adb72afbeaf038e616e1066ce424", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_8-offset_80-size_256]", + "fixture_hash": "0x2ac64180b62d407264ae0459d7b148d6cf69e36a963c02c56343370a40be5179", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_0]", + "fixture_hash": "0xc75ba4e30b14b7ac825e79eedfdacea51b692d3c2973290f57917c1d0c1e176d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_16]", + "fixture_hash": "0x744f0c3d2b6cdc5942b27bc8d0f90ceb79dff92cbadefa96a4ec5c195d6714a6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_64]", + "fixture_hash": "0x40d6becb7be4968f0db9194f20c2b22daa1d54fa64191db1f4d8c2b0e188c58d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_0-size_256]", + "fixture_hash": "0x308fff8b6e0a26024e303b3feb044c03b58234e5560f86ec37c94abc7831a98e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_0]", + "fixture_hash": "0xe79c57c08ce43d0b7cf705f8b86837e23fa8251169e183b9533bc543cc7ff5c7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_16]", + "fixture_hash": "0xc6b70f28ab1cfa591fb998604bbf79e8b86a6a45074709b1de89786a94c0bf7c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_64]", + "fixture_hash": "0x839099867f0980cfaafd518514c7d37fd2fab39c7bf7eb6ad7740fb68e17c702", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_8-size_256]", + "fixture_hash": "0xb4f8d2e9e552a0b46a90d8db835ab8cb11599b421ff07114a321e694cb6ca5cc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_0]", + "fixture_hash": "0xc4cedd5ed77c132f9bca7fcd4d118b402045b9542633348b498738f1cf851feb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_16]", + "fixture_hash": "0x3ea5ec088a5870d19835ebaef5bf09303ce9a0d2bb55f7c49687b4838eba5b34", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_64]", + "fixture_hash": "0x4a5072de432851709863e40979a96fdccbb2a5804bbea49cea05a5c772c335dd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_24-size_256]", + "fixture_hash": "0xd2e1f46bcfd9c711859765d72aa312ebcae0b66b31361f7947505e6002b0239", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_0]", + "fixture_hash": "0xb5c56b4deb07c380d6e2b9738abfac015a1bd36cdf08cd8a2398e80abdd390f7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_16]", + "fixture_hash": "0xcd41bb8b5d7239667275e8bcbf90c6073e99ff23524b97ac54faf07c5e135617", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_64]", + "fixture_hash": "0xf36f32daaa7dc0393168fe4376347f70748e4c13155f305e13b81f2ca41d7828", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_32-offset_80-size_256]", + "fixture_hash": "0xe513a79fda537221d6a206bbfa01735823c1da83555937929a6fb24eb9d5c352", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_0]", + "fixture_hash": "0x151f5e1fb1a6a6a0e0dcc9462ea2d5ba5df73b15304f2456efc14324fa611498", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_16]", + "fixture_hash": "0x7632620c0de14b9cd792b5581310491c652b46c3f88073015b7f3096a9aa366c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_64]", + "fixture_hash": "0xd06b31c7973634b8eb3ee650acc9c7e6e4cc421eb3a35b07eae8a48c402d2952", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_0-size_256]", + "fixture_hash": "0xe64529e84f515a6e02a3693586286178ae5856e1179a55da19660be9e258f059", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_0]", + "fixture_hash": "0x4f214d931b7fb970599093c26cb442f458c676e7015ee43962199f91fbca4f6d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_16]", + "fixture_hash": "0xc37360938a84bbd764816140e5a3d5e086fc8acbe32e9cfbe01b5e0a3fd2b81a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_64]", + "fixture_hash": "0x1a281ef37b2dce54411f597602c946fcef6394b4eeccf20316e8c97683109f5c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_8-size_256]", + "fixture_hash": "0x3a722f3d39a0f492c3cf78fa65ef5350f3c8c28c749dd4adeb2d74d44ad65939", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_0]", + "fixture_hash": "0xc62492585c4493634d4678b110930c1357a29ac117d94982347abfcb6b282e9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_16]", + "fixture_hash": "0xd8ddfe2ce97f2e935212079045aa21b1eac2740321b9d5b1c393b34ebd527e9f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_64]", + "fixture_hash": "0xeb72e028cae9533d7ba1ffd785c16d3e93a47d2d1b0e15b6da230b984df5a3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_24-size_256]", + "fixture_hash": "0x6046741e34053b48bf8ef076c3b7e4bbd119d4bc7d9782347e1158a403e77d36", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_0]", + "fixture_hash": "0xc6a628da8e27d06d88faa162ea81187aa3ae5c9ab972764576fcdfa382a4f744", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_16]", + "fixture_hash": "0xc43b81a98e890b77fff6ce9580a26caec28f2db497e03f54fc3fef749c1bfe7a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_64]", + "fixture_hash": "0xb3b5ce2ecbf2af4aa2e1f044ccb799631315933b836d9cbedd397d8554622a11", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test_engine-length_48-offset_80-size_256]", + "fixture_hash": "0xadeddb5547d1105eb9a9414c3e0dcdffbc7e0356259944634a366aacebdaeae2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test_engine-opcode_CALL]", + "fixture_hash": "0xcc3bc98bd33997fa00a2664c2bea1435565ad891eaa76881bfe09d312e0cb50e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test_engine-opcode_CALLCODE]", + "fixture_hash": "0x8b56baaf9edfc37659c4912e2f11a8dac724c7b893c1de44ce5a7cd4aefd2346", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test_engine-opcode_DELEGATECALL]", + "fixture_hash": "0x2710d10204615c0c5d8a158dec5ae5bd72b258a375ad7f9058a98778d2a20e54", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test_engine-opcode_STATICCALL]", + "fixture_hash": "0xde03ef593cc74589a1a756ec3caba2a2f0da45ae7d45be43fbe290bf2f65085a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0xbba7f04584aa587c0a7abcf7a83c38d14ea04c8a98c60a9a89ba69e14940b3fd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x87d54f7d6a88790203096010adbcd7abaea79f3d52cbc5433d07c0285c7ce89a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTSTATICCALL]", + "fixture_hash": "0xfe2d5c583f0883835241aef9f5b49f83d24609340dd9f0e0623c3a95898234ff", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-zero]", + "fixture_hash": "0x4a0e987868f00f9886e3f99ca1e3f5cd0d53a2aba1ac9e5bae7f332339fa1170", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-short]", + "fixture_hash": "0xb5204652859ed879519e95209d30c874eb7e779b28c799b5280529b558b35e8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-mid_20]", + "fixture_hash": "0xc13efbe4b1a4980cb9f703300e0911aba232da5ce99a739009b345e1d831b7a9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-max_20]", + "fixture_hash": "0x70a7139a891fe02ca92ecce05812b62c6d40995d263c90274628ec8f0c06492d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-min_ase]", + "fixture_hash": "0xbc948f79e778ca5ddefde5ce3beae56e9bd5c9f15c7cc1555897439bd9890bec", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-mid_ase]", + "fixture_hash": "0x48f8590a5be55bfc3ac5b9f9cd7524b4112f618c4254305358094229adcfb4ba", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-full_ase]", + "fixture_hash": "0x62f39534672c4f3e47b7bef2881c426781caa3426823e0709e44f5c6f0eac43b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-empty-max_ase]", + "fixture_hash": "0xde0aa6ba2df5d692095ddb106aa813e6dcd0955f69f07cd64093412194fea948", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-zero]", + "fixture_hash": "0x42f840c6a05bbb15ebe18ae40b7938c341ad74feba99d98aa818ccae0b04765a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-short]", + "fixture_hash": "0xd93071bb22b9b6bef08ac73fbe7d2fcfd4051d4a3f0b068f86e45f6f102ae352", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-mid_20]", + "fixture_hash": "0x658e3bfb5bb9ba86f3add308670f3a7b64ff4d14610818bd558cfe17540f56a2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-max_20]", + "fixture_hash": "0x9cb5c3b72ad08a87a728a7a65e7d6c24139b79f345fa3fc3523c10c4a3da0ede", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-min_ase]", + "fixture_hash": "0x289ecab6f4efdfe321e54d0e2926e5571d8866bc2ad0896cbba475e6ae18ca4c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-mid_ase]", + "fixture_hash": "0x74af4e8990ad878fb1a008ea41d81b4efcf0e0ba062ab2165695129f54405975", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-full_ase]", + "fixture_hash": "0x758bb89752fa04bb34d12525895334d23c0923bc1d61520b3748343d7367dd53", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOA-max_ase]", + "fixture_hash": "0x7da29a7736f80c97807f2b8dcc78fbab23a992c8b6aa8383335b1f0a5a15e6c5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-zero]", + "fixture_hash": "0xeddc041d81aa598de5a6bd3eaf0cd918632e859c6f1109726f4ecfd5f07e43b2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-short]", + "fixture_hash": "0xe09f85f776c8bcee58b4af786564182f24b80b72abb18a0bf5e0aa4f1b4bf03d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-mid_20]", + "fixture_hash": "0x69d2cf5bb7ee9e1522224c5f1c578b40e580ffd692e2734118124a8f79c1f5a7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-max_20]", + "fixture_hash": "0x7937d68a8fcfc9fbb2d9574213d0d87ca0fb293f05f7541a330a3e5e1ecfc05d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-min_ase]", + "fixture_hash": "0x113833f69e708c792e47f6c397d3717893922806aa78494817d4a381886405b9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-mid_ase]", + "fixture_hash": "0x5cdf6eba4d6e436197c2ca08bcc2cb6632002289a3daffb2eb71d40db57db730", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-full_ase]", + "fixture_hash": "0x6a872f83d1d46f0689de94699720bd952642a165083ab4146f94f91c965fe144", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-LegacyContract-max_ase]", + "fixture_hash": "0x8b24ef8865e998879f0af9e15e1394db591a2aea4ac0d47a8a91e94cbb78abe0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-zero]", + "fixture_hash": "0x64b9239498f4c59db137acda849251c95bd4f511245a72cb54d5825ee7e6107d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-short]", + "fixture_hash": "0x98b49942ed36eaad5d9cc83d5f4ae516348f81c4d45cbf4cae7be375a3433ebb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-mid_20]", + "fixture_hash": "0x788d0af530a862efeb6be7683fd02727f1d70561e39bdf473474548d79f65f18", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-max_20]", + "fixture_hash": "0xb2d3d94cb3f199a4a9ec64076d8eadf2335df94781dc3c5ab07370e5eb5c5292", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-min_ase]", + "fixture_hash": "0x9c511a6c6d81839b3cc85baff52dea98ebffb7764b8e262fb6a174eb457630a3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-mid_ase]", + "fixture_hash": "0xf6d5b7743dff65cec867120623b8bc56cbac4c9b9affd889bb73ee331c1cb4b5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-full_ase]", + "fixture_hash": "0x17ebf4536bfc65ec94d22e0c79352216bbc522d4eda670a2baaadd7e89424dc1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALL-EOFContract-max_ase]", + "fixture_hash": "0x5f648b5e1a3c0165f4645bc73f1f01f83f09e6be4144cca10838afc6ca5ab2ab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-zero]", + "fixture_hash": "0xa7448b7943d18de922ef15146ea0b61788288c63073acc87e58e3e8d838bf85e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-short]", + "fixture_hash": "0xff612d663125aafd7298dec76d6f9b615b3b6aeda20113e5ee9489861560ab7f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-mid_20]", + "fixture_hash": "0x82f031b06018c4bde32913655b7efe175c63f11f87881d30c5b045328f2424e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-max_20]", + "fixture_hash": "0xf5f58b0ac75c4af73b7ab59d8f9265775a4e71197359543ece67e6a756325026", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-min_ase]", + "fixture_hash": "0xd2143efc3ddabb3d75b4c32a3167a49c7b72d0abdfce42be0cf3e42ef139c62a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-mid_ase]", + "fixture_hash": "0xf1bc8dbee894bd10fe93744b4a8e65b9dbf17747aad4fce11b741975f80bbd32", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-full_ase]", + "fixture_hash": "0xd4dee6ef5b9ddeddc41ffd27e053844cd38e12d5e39c2e69f268699ef104adbe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-empty-max_ase]", + "fixture_hash": "0xf7052c443be53bf463fdc0a3edcccf3e0f00b1915904970b0a68bc00fc6f032a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-zero]", + "fixture_hash": "0xb2a8e29dff9e67a520dd52f252d58ab95bb7c20badf59396832d4f35f9b7b310", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-short]", + "fixture_hash": "0xce6a7bd11bb385ca054130f5b50228b3a7fa5e41e6d5b4a7ec4f06814b3105b9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-mid_20]", + "fixture_hash": "0x408564eab2d655d4ed0912ca9d947de6c4cc8d4b6a4dd988ef9d8c8a3cd97631", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-max_20]", + "fixture_hash": "0xab4f27bc4516c827f45f2d9ffaeacc135f3a2036a433726ef99fce660d2930ae", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-min_ase]", + "fixture_hash": "0x3b2eef2b2d41d762e4dc46aeb41ab9729010203bdfa264ec1ad4ae3b8de50bcb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-mid_ase]", + "fixture_hash": "0xba4e74157d3ea1d9ae5de5d8ee47e315e9f0519ee233e685f6f7092d391542be", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-full_ase]", + "fixture_hash": "0x27b5554e99504a856fedb2c3ad677e91e1bc4d435b5df18413aefae9a2f06a5b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOA-max_ase]", + "fixture_hash": "0x24635139e57dcd7ff28cc8c0569e1986b2eebea0330c51817374690294a6b2d7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-zero]", + "fixture_hash": "0x1e8001984322d2bfb8580144e9c126b4ebf749ee5e4daaec23cd324dc7e5f109", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-short]", + "fixture_hash": "0x276a7b636bd637454c779838770785003dff070fd53164830d4996349d8a7d30", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-mid_20]", + "fixture_hash": "0xd5c1377e26e20c82e20113f683325c4f5fae6d0d411f6bab580da928f4b7800d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-max_20]", + "fixture_hash": "0xee5a9bc57f5e8542669fcd516122995679c25adfc2b6101e8863e4071d92324", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-min_ase]", + "fixture_hash": "0x7e0665853464f68b8674422a200f3e78d45c90349eed2d733953b05d7cb6278f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-mid_ase]", + "fixture_hash": "0xc797e76f889ee436bd48b9e5a66590bdb57f36cfb98fd1c47c3caf13e85e1aee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-full_ase]", + "fixture_hash": "0x5022583b4db03401eb7e7842c0f345a22a8fd7586b93058ca875ae22c1ce8cf2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-LegacyContract-max_ase]", + "fixture_hash": "0x96e8466a6b7d0b581efb1ff86e115f6168cb94793bdc9e9487e178ad8fee16e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-zero]", + "fixture_hash": "0xe74facdce3d6512cd703e385a4bb70b1fa232cd96fad20dd7fa41a0464718c8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-short]", + "fixture_hash": "0x8bc894abd7af1e5d02fc08925817b2909ff65e5f320527e45659afecc0aeb151", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-mid_20]", + "fixture_hash": "0xbffe6eada6e64f4bb396904bf45550dfead24f0d245c9c8a1fa98322bf0eba4d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-max_20]", + "fixture_hash": "0x1d4c0ebf31125a6d8a10b15995dd3f58712fd23de9d3d2b11fe477683b626e0e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-min_ase]", + "fixture_hash": "0x57fd006e3439f65949743984230897dcc2b043863ada0dd521ec9b8c00fd7e75", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-mid_ase]", + "fixture_hash": "0x7c9a0f219bb2373dbcb023e29d4c6a15667616a4d8bd8bc270b031733a458009", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-full_ase]", + "fixture_hash": "0x55e0a659eed2b06aa23e3d8f1e9054c69146f82dedf34b4925dd8ec5c659559c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_CALLCODE-EOFContract-max_ase]", + "fixture_hash": "0xd8c57facb85c5dca2440b237163707af4798cb2606c448897f1062c3a57b6b90", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-zero]", + "fixture_hash": "0x910198127e634a586ef32dfb52dd9dcb0a033846991bee64cf7291ed085fa6bb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-short]", + "fixture_hash": "0xbe9ceac4261b9e1f0738f3a5caef839858b18ac352b4ae0153f487791108774d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-mid_20]", + "fixture_hash": "0x522358d33643a76be103bda22057561469f3d54a3554348ad8bb092ad1c318e6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-max_20]", + "fixture_hash": "0x2d6737e944a47e19230bb12456a39f311c7b39eef6bf2c78770f364e7d84ac42", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-min_ase]", + "fixture_hash": "0x8bdfa8c6032bb7caa5e420fb70f1b3770a5db493e6871633a1328a13e66e3a4f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-mid_ase]", + "fixture_hash": "0xc9b85c3175e8815c9818f350fdcf7475e66110848607c8f72a5e71d5ae9b1e1a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-full_ase]", + "fixture_hash": "0x24cef095b63058d9a4019678d9f812ab6402b74819abd6f62a5f43aa7792a86", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-empty-max_ase]", + "fixture_hash": "0x2c32565b2cf05b2758bb67d7ecd19c188e43f6c9b0ac828d2a596c88a7e15686", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-zero]", + "fixture_hash": "0x7c009c23a2b404a86815a44a38c1a5a6cb859c174fba2c0771bf77624624ee6a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-short]", + "fixture_hash": "0x93de62084bd6c68885a7b0c752a1d03dfd144ffbcc9ebcc583eb912957e7adb9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-mid_20]", + "fixture_hash": "0xc9ef6e047e5f4526e5e04e1d1930411a620ddb267338fbf8d48cea1dbcc076e7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-max_20]", + "fixture_hash": "0xe3dc56b387912849393c4cf465b006e2ad3a5df60263c2fa705c1640ca858cc0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-min_ase]", + "fixture_hash": "0x7db1e81d2cee0fe922c238c7aa4eeff30b8b8b5c285ac79faa0952a191fc3655", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-mid_ase]", + "fixture_hash": "0x503cb7b71e710766393960cc5d6481736ed45dd8e502f7a13e29304ce3faf854", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-full_ase]", + "fixture_hash": "0xfa1a25e9f08dc961fad5f9d07a2ed5f6849fdcbe109aa2384d77b3ba8b3c658", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOA-max_ase]", + "fixture_hash": "0x7c16c4d71c971748c9ea5bb7d7ba6496213f535d8a3bb65810734629a5072f28", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-zero]", + "fixture_hash": "0xbabf1e4b180a37d68403c93b0c14aa7cd66bca4f6d1510c29af0d660b285ecbc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-short]", + "fixture_hash": "0xf0924c7c3a1f4b050d64b5f4e1adf9902b681f526d9277d879886dd8da11d10f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-mid_20]", + "fixture_hash": "0xb607804c339b363f293a0c2c0e32c51976255bdfa5fad2c14225e6555353dd29", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-max_20]", + "fixture_hash": "0xc3d196cb890e2fa8de1bc2c17f1bbb14b75423045421707d67fae60e81bb8a05", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-min_ase]", + "fixture_hash": "0xe86229ac859776545e04b3eeb9fbe0cee7a4cc6bd8013ef058b4cdd0037d215f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-mid_ase]", + "fixture_hash": "0x7b386c558020e96bed5d2e982b56b1af92b78feec0ab8164cdb1b4e355b54286", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-full_ase]", + "fixture_hash": "0x35d190c02e776dd04b1fe65e219a09d9c3310638fbd5d537b5c5fe95a526cc2b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-LegacyContract-max_ase]", + "fixture_hash": "0x639e2d01de61c6dc3c114abd013c56a04d99fb0b314d22c901442f7d584d9c90", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-zero]", + "fixture_hash": "0x18198809e4296fe411f61e77e8fd1cfd89cce6b51a0eb6f368e619e1e81b3cd4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-short]", + "fixture_hash": "0xfca869e294bee9a0a6a73992aed6ae25e31375a720b1e19ed60ad4cdd30bc28b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-mid_20]", + "fixture_hash": "0x4571bffca233be9cbb3925411a90849460d033be6f221bf5706f1f509094a6b7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-max_20]", + "fixture_hash": "0x9e7fd36f84b9c7612310a6e7acc662ed62760635fb0efa86b8f1f4d3809ea4e1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-min_ase]", + "fixture_hash": "0xb1e2f60b58eb464adb25c8ff5f8644ddcf92a4a2d1577e5ea77438e0a35b723a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-mid_ase]", + "fixture_hash": "0x596881b3c922c38f4c416008eacc5646396f9e26fd806314bc42b350da78743c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-full_ase]", + "fixture_hash": "0x4dc25c7843840e0e930bf2f5bcb04851e893527b977072a27195eecf32b85c4b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_STATICCALL-EOFContract-max_ase]", + "fixture_hash": "0x9d02cb7f344c40cdac424ed446072478e50e035e7649dc7b7c9e623d05b05b6f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-zero]", + "fixture_hash": "0xb6b754aba7c9c322f42b6c5cd0d9fa7844b947f615bea90929d3c8fb14948318", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-short]", + "fixture_hash": "0xa3b96a28f39416ae8049441b781096f597e9f01cca8fb159958e579d384058fa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-mid_20]", + "fixture_hash": "0xd0ed30b212c876563483b2bc4c329acfba9a6a164973bf336b0054d41560ca2a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-max_20]", + "fixture_hash": "0x5230c16091c7d8798748a73b59b8c0834e0ceb0dcbce16084b750db0b0b5dd3a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-min_ase]", + "fixture_hash": "0x82f4f5df33b366bd69075497f7de85ea56f6b9cf777f196028e966244e173f9d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-mid_ase]", + "fixture_hash": "0xfe6645cb570e65d24744ab517285862d82051f25ea857bde09bf1e149703880e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-full_ase]", + "fixture_hash": "0xafb3316f863857ea3f0e162c9da2b3933e4cf3531b31f7f6defd0cb8ba544039", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-empty-max_ase]", + "fixture_hash": "0xf9202d60bc4f7be367104c1ee99babf833814d919a40be27b4c2fca602edf131", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-zero]", + "fixture_hash": "0xfc4dda9df5a6ad0190502539c4b274f545c351f73f580653e5c9924acfa31b57", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-short]", + "fixture_hash": "0x7f204cb08baff760df75c081244a7a630797271e319e69ae4729167e65d0ed5d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-mid_20]", + "fixture_hash": "0x72d316305dbc5278c63a3220a5fac8628bc2ef9fa783be7b484f083a4a95b38", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-max_20]", + "fixture_hash": "0x645079b7eb478940d7f963070d5fbf7cb7eeb64ab7fb6607c7a31528e21e179e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-min_ase]", + "fixture_hash": "0xf89e8b9636525469af0b60d22b7e204bded5fc91d1abcf0b61ccd60fa21b0fc6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-mid_ase]", + "fixture_hash": "0x2a5b7f929ddbf2a565d6ce450229c650e5938063c7d31f694f955cf79c6486ec", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-full_ase]", + "fixture_hash": "0x2159d6f80509ec64e6cff56f3fddcdd1b1ff07459163bc756bbbf000378da2f8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOA-max_ase]", + "fixture_hash": "0x39c576b9bc226803ab436556d6c95df963ba8771ee54d19712e8a8283e41c1a7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-zero]", + "fixture_hash": "0x582dc61a780e93ed7aab1add43eacd06b589e015d9fce1da6cedbc490a4d0a33", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-short]", + "fixture_hash": "0xa318f26fae5fdf0a5041a672575141506cff0d9b9b867eca858655cbe0242c30", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-mid_20]", + "fixture_hash": "0xbdd3aa39c25a39ac49854b040268bc6a53b6af25ac9fce93a5fc40811f29ff59", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-max_20]", + "fixture_hash": "0xa0c57cc39dc16b599d492d6962b611af7178cf5b89ad2f0e06ada4d4110d2e6d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-min_ase]", + "fixture_hash": "0x10be7729e4616b63b9a15ae515074291ac74ef10dc7a95394071cff936119971", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-mid_ase]", + "fixture_hash": "0x92f93303494da12395d470cd7d8e3e25630cdd74807ce7cfab0190ed6011fc8a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-full_ase]", + "fixture_hash": "0x7746a0daa95743d5b4afd1ee48a1c8c558b190d63e9b66bfe374867b4ee3012e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-LegacyContract-max_ase]", + "fixture_hash": "0x6e3168c2bec1b96f29b0b6eff0f883706ce21224c6aabec3ef64067aeaad2a27", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-zero]", + "fixture_hash": "0xc101757ad01bab7b34e1d0d6eb5c1fe1d10e6d3e03e89ab44aa19f44ea2f6d65", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-short]", + "fixture_hash": "0xa2166ad395180ae77c3e8949ddd84ab4f7f213726a79ffa99a02e6374d2e377c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-mid_20]", + "fixture_hash": "0x6b24e219377eff47a42a2b51ebb0173d96366a03a008810a7e7869caf7fb4d9a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-max_20]", + "fixture_hash": "0xc75f6a1490ccc9515ea7611f5fb505c481125a152ab4caa9d08e0f5b61fb9714", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-min_ase]", + "fixture_hash": "0x13ecfa1f2dccf9d18008450b6dc4516abcf4d2ff7baa8a29af9167b5085e84be", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-mid_ase]", + "fixture_hash": "0xb31bc6c2eb7bf3d430739bb1c2c7f9986cec93a705c94bcde2d922df302f358d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-full_ase]", + "fixture_hash": "0x3ed40d8bdcc24c9e1eab0978479b6b5d26f5e8ab152a31c4010f1030a5b05a1f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_DELEGATECALL-EOFContract-max_ase]", + "fixture_hash": "0x46a84085d89bbee26aed16e47a093953e9616d2950d8912c5cb3d3282f77c9e2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-zero]", + "fixture_hash": "0x9199c0b7b561201b2b6b52f2cca0bb262f7d2f217a2ade4959b6811eadef346f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-short]", + "fixture_hash": "0x5a4e617c144770233eea331433e4bbd3549a39db25b163c26d3b3c999139c2f8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-mid_20]", + "fixture_hash": "0x3aaf89f287757f999be6e6a648a6b1406ba035810a27d76dc9d92c20488b9276", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-max_20]", + "fixture_hash": "0xcccbf4ae9f6ecbaf8fb24d6acb539f4db7751b8cd800d0f3fda68ba14b95553", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-min_ase]", + "fixture_hash": "0x6b6615136929aa5b46c7799398a1d7c9ea8071b3e7e227a59c9f89a4e75b611f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-mid_ase]", + "fixture_hash": "0x55c44e77aeb4bf27256bc0af96b42893fd8ac6a401383712a75eaa86d4d75168", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-full_ase]", + "fixture_hash": "0xe76bad14ba94fdb450f4cb27ac5b0d2d78b6a34e44c09cab5a0666a1695cedf2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-empty-max_ase]", + "fixture_hash": "0xe282ec3ae341f87d493dae25e07c57e1e9c6a90c657be97aabdb6824f7e12a43", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-zero]", + "fixture_hash": "0xa1ce6e048bd0a5de37e2f17bd125a6f0c8ad0281dccf3b2b52016bd7c0d4ed5b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-short]", + "fixture_hash": "0x1c6482bdc0203ce86b7e7c9d76d67ccbb0d09220b23a83a77800f8178a733eb9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-mid_20]", + "fixture_hash": "0x114b5a45080e970938386ebf3b35f4d799df0d3dfe701193da09ab9fcb184f8f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-max_20]", + "fixture_hash": "0x5d23f56f47c0c3860f6b4f7c168bb442f5b9003a94b658bbaefea4f59fe7230b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-min_ase]", + "fixture_hash": "0x43d0cd7988a78c4945e0f3046db16c32cad335a46373976415c732c7c69287c2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-mid_ase]", + "fixture_hash": "0x65187f1c4a0b563d2fd8511e6eb2c8e8980ac98f2c0bbbba66ff497574eb7f36", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-full_ase]", + "fixture_hash": "0x69a7b67c0a7f9960a297496567a3d58c934875597af339c9fe2005e969e40b0d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOA-max_ase]", + "fixture_hash": "0xed1c3e7241d4cf108f392b1caef537ec2798369248e38a11b13d4ec6a9b41847", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-zero]", + "fixture_hash": "0x98b4b0f72399101381bdb7deb1e0262bdc6d9fdd56d7675c00da818e7d2bd950", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-short]", + "fixture_hash": "0x60cc882d7e080b73bd51a5542a0f59b1787a10a0eef4e3465a86aeb6bca02c65", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-mid_20]", + "fixture_hash": "0xb4a4f1400a826b3a17d9ee19a6345b254a9b4de072b003a586cf11c19a0a5182", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-max_20]", + "fixture_hash": "0xe5912147713eb074803bc57c111c3e67594a7fdf2477f4aec3a842b54e7e92f6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-min_ase]", + "fixture_hash": "0x11acafe3ce08fb5ce624a8136fc485118bc7e4d9131954497c9624d46c2f94b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-mid_ase]", + "fixture_hash": "0xbe2d10430bdb0fb4a63f3d03ef2a17c2b04094e621657126ceccfe89b4e14f20", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-full_ase]", + "fixture_hash": "0xd9403bc66939f3a6281c9d665ebe824d05cc787d077c339f83da37298958ae4e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-LegacyContract-max_ase]", + "fixture_hash": "0x8931199b12aa704a6006a75e6e41403d2270e866607dfbd88cef8fbf1d3f3aaf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-zero]", + "fixture_hash": "0xd3e53b0ba48ee0afae0329fb93023cf1855fd5ae964d5281f6a95a1e6a9d0689", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-short]", + "fixture_hash": "0xae99e3d75c2962e2ed15b09d83d036e76b09727e7f895948cd6ab5b1440a985b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-mid_20]", + "fixture_hash": "0xf7f4be1b168bb7a3cc31f3cfb500c8c2851ac0f7ea3fa22c891d56f6767f5d6b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-max_20]", + "fixture_hash": "0xccece6a7aa65a40b569192cb8cb027520ed37529b4dc8730ea5c649f693f0fb5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-min_ase]", + "fixture_hash": "0x9f91ac25a1abce8708a2cff739b3951c3a78c7c577cf89faa7d29fa16702b3bd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-mid_ase]", + "fixture_hash": "0x2c87247852947acfb91a2a2824ac8d50ec68faed9fceface8b8c61f69d55b228", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-full_ase]", + "fixture_hash": "0x3a4e18a32667fa53c260a9f6c04897599683ce9deeaf31db16c41e9d76f3557", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTCALL-EOFContract-max_ase]", + "fixture_hash": "0xadeebb1e1e47a51ce84856d29da6ee7e1858d391b4989bab852d0d69bae54afb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-zero]", + "fixture_hash": "0x2dd5728544243f536da5916877fe0b9c30317f975b96b9869c95c4db1328d027", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-short]", + "fixture_hash": "0xe13b66b0304a530f5cfda6472fdb9b0f7e2e5e20f289367bb1cf93e98a3b4025", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-mid_20]", + "fixture_hash": "0xafcbe576c2a6b61e3f60585f6d7d2dfdcc733562f628685b75dec16b0678607", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-max_20]", + "fixture_hash": "0xcd17442e277d87a7c631c2fdde0a632d479643690485231d2bdb3ea08b38ecaf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-min_ase]", + "fixture_hash": "0x128001aff66b48927e3b2fe538d6e206dab8b8bc1d756878b7aa2b15c58dbf49", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-mid_ase]", + "fixture_hash": "0xb26eb8114a2348cc1b46d1bb833460703b4a106d3dc308cf818b19f4ebdd34fe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-full_ase]", + "fixture_hash": "0xcc1869fef97d16d4567c7427dcfccbc7009d269683028ddc08ca4c1f8ab95391", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-empty-max_ase]", + "fixture_hash": "0xb3383df18e98b5e735821e4650979aa8850b9ff25a40efb5afbfbd7e4e754792", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-zero]", + "fixture_hash": "0x22c023326b39518f32222d2e30589cbf26b02af7f82ca198a7e122bd62ca7cc8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-short]", + "fixture_hash": "0xb222ffa4a9dfb7ccfb6d31097a608a189479715b7aa39860ed9bd8ea8d618985", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-mid_20]", + "fixture_hash": "0x5fa0e079a79552b5dba2f7b9ddae8887e685718ab983a55dbd83ccb5547047a7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-max_20]", + "fixture_hash": "0x8e6ef9f8ffd9ccf7f4b32bd54e2d2d41048f3cb620dee06aa4f83c2b24ccecd8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-min_ase]", + "fixture_hash": "0x634fb411933da1649b61025f7d9c56d6231ddd25cb2bfc7df407b39bfa0303d3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-mid_ase]", + "fixture_hash": "0x9123976538485033311ed9507bf12619226e510a468ab1e0b6cdedb85ba7cf12", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-full_ase]", + "fixture_hash": "0xef1c258417acf4a9efb728719eb01db88ef377bb7d11667fd7fa18237c9cc7d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOA-max_ase]", + "fixture_hash": "0xb12410fa4f8dd8a6df4d1f54f4a21cf862fc7a1a0c6114daabd28a3c42813d90", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-zero]", + "fixture_hash": "0xb4d18c4c394c0ffda9a391ce066f8be1480b0f062c379d398f6ab672c706f8ea", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-short]", + "fixture_hash": "0x5a31b14db895e5fdd21cc101c1c6a12f908f7849176950740631fb2e1e0c260", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-mid_20]", + "fixture_hash": "0x1c377f5430fb609f6479560a723b1e456643fd456ce5c294f98a5c530c9b8306", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-max_20]", + "fixture_hash": "0xc814ac6ae01ca20e0c7bfa587b114e18c033343d133155936e94aa6331d0474e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-min_ase]", + "fixture_hash": "0x197681b41883bc7237c820a5d84c37cb1a8e2724cbea4da7c4bb9d631549653", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-mid_ase]", + "fixture_hash": "0x4081a21c09a7987a567777fd71d52202651ca938b427255ab13a9492a9adbe1b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-full_ase]", + "fixture_hash": "0x488f90b282d8aa30cf049e3b528d1ce3e9547ea080c10cb0713fb7442f1439a1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-LegacyContract-max_ase]", + "fixture_hash": "0xab32cf6524d6ce112ab41440ff6909b08fbbdc1a9d61155424a8fe50ed0a95be", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-zero]", + "fixture_hash": "0x1312fc7c97fc9b8f3951aafbabb03e7fcb3252bdde7b5f8ed60c7e241638d109", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-short]", + "fixture_hash": "0x6f9605aaa8f35e1b705286193be52738e261b521a605f4cf7ab95376e13b5407", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-mid_20]", + "fixture_hash": "0xcbfe48a680ad6070ede2b96861e9e4d06dfe83a1d6fae2abaaee2137bd6b21d0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-max_20]", + "fixture_hash": "0x6b942ee7e236fa7f9e9b70b5883cfbe39346768d29d2f9e407bb5eb2529b0d78", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-min_ase]", + "fixture_hash": "0x52cfc5ed187b14d45bad832d8fc6befb8cc90e6a40f939630ba271947f5c402f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-mid_ase]", + "fixture_hash": "0x1c3ecd7a7967e45c464e6617ad1739bad9921b876fc6cac29bc6566d418d088c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-full_ase]", + "fixture_hash": "0x8332f5238afbbc5917cc1f5c0f6f2106d40d514a96b5bce58db709e81355f60c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTDELEGATECALL-EOFContract-max_ase]", + "fixture_hash": "0xfabc4728bf6db35dda0a76d25197c9f1b363e94d1c1336255fb9e68b890bfee5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-zero]", + "fixture_hash": "0x6d899ded989bf05230122bc3a3b9b88a70e7e1a870320dfec296e9cdc99a21da", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-short]", + "fixture_hash": "0xbe98896696d8c1825edcad9a0196761ab5beb6f95dd4edb9c1ddb4bf72a2b70c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-mid_20]", + "fixture_hash": "0xf77f1cffe894269376291ad002e2046870b64a56ae90665aba77fd692f12a11f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-max_20]", + "fixture_hash": "0xa6b0d34eaca6219b482ac904a04392208313bac7cba9d4d12cabbcb120fdc80c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-min_ase]", + "fixture_hash": "0x6a8ea11a5f6586016ecc1af20b2518cce69d76e93262605f5174f59bd6ba2059", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-mid_ase]", + "fixture_hash": "0xdf202cdc9432764cfcb638ddbad6fca32495215b69a79e59e6070512527c5d91", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-full_ase]", + "fixture_hash": "0xc0767d9cb45dfb9d8d24657d11ebf4f0f7a70c166aa7f0179c31852d3323f553", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-empty-max_ase]", + "fixture_hash": "0x5688a05940e93521077632b325a59c41c7e876fbdba98d6264f5ed87063cff90", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-zero]", + "fixture_hash": "0x7f5f4f26a9e966460b7b2be4e1de4ccbc8eff02ad821795b89544b7b11435807", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-short]", + "fixture_hash": "0x34fa28acdb2f0706abf3877a385506ff9e0105a0f9b53db7cc7303ff66fdcdc8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-mid_20]", + "fixture_hash": "0x49663c426b9939f723e58f6361dc490e6480a3e64f7c571a8e086a27625471fe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-max_20]", + "fixture_hash": "0xd936582763e43945c249f7c82671c18c32a13e732f6974d45aac0007220aedb8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-min_ase]", + "fixture_hash": "0xf1b5cd69967741dfda33fafb50a6ad28e84654e6b2a863aa0ef1bdf7c8c9fa42", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-mid_ase]", + "fixture_hash": "0x4c69aec85d53f87adb36ed0f66f9f971cbabdff90e96b24d0e6536896239af50", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-full_ase]", + "fixture_hash": "0xebc898a21b696142345e3222578ac3d4ef95ac83a29b649f44b7fde559d271fe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOA-max_ase]", + "fixture_hash": "0x62dd0c64e5d9b74c14e6356d9da22e822f6c8b17a36a3b1368cd1f031e79c39", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-zero]", + "fixture_hash": "0x69fc5a8545327f57db742985ec6e889f4c65ddea1e5f135367cdee574dc57add", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-short]", + "fixture_hash": "0xce1852827b608f2f8381b65ff1829590667e388a87d2088dbc2226199c01398d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-mid_20]", + "fixture_hash": "0x1b41e5e207c2d9125c44d319722ee1dbf7460a14c1ca03ae507bcebaaec96bf1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-max_20]", + "fixture_hash": "0xdcdb58277e5868610dd54462b6403adefde4f0c9b9583209e6e68cc4ccaaf99b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-min_ase]", + "fixture_hash": "0xf12567e085bd7a06a0d3147577c265c9c7b9fb101e20341c537ca9d214f4d95d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-mid_ase]", + "fixture_hash": "0x6564e1b9422eaf6612de8cfe423405005075f941fc1a017c08a8496bf312df41", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-full_ase]", + "fixture_hash": "0x62f76d02e7325f6917e369d219f21903aa4da5120cbbdbb8dda5749c2bed3dae", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-LegacyContract-max_ase]", + "fixture_hash": "0xeacab818cab2384199fc842230a2a1dae75702ad3b6927107b366a94c34a92b3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-zero]", + "fixture_hash": "0x707eb206ca5612b1eb2e53ff4e31443191cf7d2f04aa9c7349efd989a5a1c68d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-short]", + "fixture_hash": "0x58a1efc62d532068b361f250f40771f08f8ecdf424e421851ad4eb4bf3e5631e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-mid_20]", + "fixture_hash": "0xb71d837090be98ad4177c1a3abe2c8db72dd071a18e26e5e4dc0f0682c3268cb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-max_20]", + "fixture_hash": "0xbf7c4ea970d7149879036335b7dfd9c030d9e6742de05cdf4b81cbf557fca60f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-min_ase]", + "fixture_hash": "0xdf6001dc7a7c160581e1056074fccca95af86fdc34ca42d7df18828077d456c4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-mid_ase]", + "fixture_hash": "0xc1bf769f9d59257a3ffdb72ed630d1ea247008a2518663a567f996d52fbaa90d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-full_ase]", + "fixture_hash": "0xbd5eddef3e2e38483087e327b1a5d0ff528808141640d8a4a3a1d620fe43d01e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test_engine-target_opcode_EXTSTATICCALL-EOFContract-max_ase]", + "fixture_hash": "0x77270fbf5c1b1dd8f385f1e90dd347bb0d02ec1474f49f6bd5c0726fe5d150c5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_oob[fork_CancunEIP7692-blockchain_test_engine-opcode_CALL]", + "fixture_hash": "0x4c6359f2ac3fbe4c2dd3a997cc419d0252e7d9a89990b20b7d3b6dfdef577109", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_oob.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_oob[fork_CancunEIP7692-blockchain_test_engine-opcode_EXTCALL]", + "fixture_hash": "0x352859ed35ad58fc457728545642f1058f90c1f693a1cb75efafaaed231ab173", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_oob.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0xbbc13a4bf370fac223ccfc9da5af7bd6f557e77b5e6f5f30c782ac87c04283ee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0xe9ed4d1ab86a27c91b2114433705a5b2e4ec26860831f4bca72350e69846bcdb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x20918b6caa1c73b8ea7c353acbf490e22c2b1fbf52a4e9369571095c5efa859c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0x6485732a11b3d4d04abae11812d0763db87c591c233c4ac285faad937ea6bd98", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0xce387a56f5e9087f9ee66e9d96fa0b087716a667f71894aa1ee572c419baff2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9a731f264041c2d72d21599c748c66a4865f5c6fa47eb47d73f9352429ce2cfc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2b2d5e47cc024ef14d94194c7492205d2911177900d953d22ab8ca64b7437f2c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0xa00787583a19084a78e2477f6191c58e76b47b89346212dd6e656fd0604b053b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0x53f40af806e63d3456ef5e11b32545fd4d06a539c71e9be11ad516c925f74688", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x871750371206bfa9e51dfac339c59159d8249e4b0d8362d06ac9f593383967ec", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x2743be0a1e804dcc24eb410439dc8142deae53b6eeff008aa38baa4cfc9598cf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x7f4af807833ce89c88d704afb9570cf87b5d9e7e87024c7622ba2caed643e153", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xac107107a69a32c1cf69ce247a6fe7ad904bb8eeb218a650a41e729c540e0912", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3fdc1978299288916baa395a908072156b94c3dca829f10aeed9e924bf48bd8b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0xd753c0c12693b9797cfadfdf28cf3d0b37b7d5d07e324482dd8012e43af807ca", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0xc551f0848faa1e72bb9dbf30342be2e997ede1d2380fbafdd804fa587a9b3067", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xa89ec1430de6f42c3544ccb4625a23bc0b206acfe71cd1ee3c3a605c56aad619", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x6c45e9a2f2001a3071365b434be70e3ab0555b15451a76436d084cf013bc84fc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0xb943b845d8a73c0bbbe5dec9b9cbb012a3dcee6964e3789a728a4ac46c6f0c5d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe0c7a1663cf5d8e507cfc099cdd3bb91bf8989905358e24efe0fbe1add46fe15", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2b47efe857a1d92abe57393c1cbdbdd8406c90c680664584515c0fc89164ca05", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xb6c87bd7bf391398d96a6b7543bb8e22e364555f6d1e64c7257947837767106c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0xfdd4a743ee075062db6614b01ac806365c43987cad63fc38617ac7e9a9aeec66", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x77b602bcfb34bbb4f68e117ae8c52daa1294a1659f052eca89260c25ddbc620c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0x30f03dcd31505b2ec7c63ee9f9aa5a9f5a9626d4f43ef38c9b3df26b93f32519", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x7b4a06c50035a35538059c6c1df41fe0fd0491d9555cf03e2d79bdb305b2fba9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xcffb63e3920ff73803538bfd06ecc64210f821b860bd4adc64eacfd293ca8454", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7253beb786af9e1221712f33f131cb6223be57db25a9964b4cc28bb82930c64e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0x522deb0d1428cc56050af54474a9dd1ec01e8b52912d9d4dbea4addcf8af3c65", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0xe8d90091009b98b8e617ce06a2e5b490bb0e771be8b28bb76a978c61ad5af311", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x7755190b4e44590f30b151fef043fce59c269520bde5ce9800ac7d1f55d46d93", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x13c1567f636ecbab98bb227a09dc86898f70d6fb52828ee9b8c62db51c2007e5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0x33cff3cddaf7f86fd1b6c250259702c64e438d2d13762e09677fd844d566bf81", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x207872c35a57c3816ff1bd6f7c50d57a0e59559de27875c58b48f251e97a9a57", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc7ed5b063212ea608184a53e0a0f8b851118fb567b0704507b698db10edb9c1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0x13eda30b5f3985fb3c83461f7fa9a0861f64941414ee3115a9f4061681789e70", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0xa9cc229cfa0e790c8ee2cd40b754947e5a949d3dd6fe41d9deaca1108bcc78b9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x463d849292d5182bfc473927207e251038523976c33cf5b7e41fda4b3bbc7c26", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x54627a5a5715fea14af3a7551f0ad362917ca682c416951abedc046e31419129", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x66161e847387d768ceb974937962d75ed31b2e96897e2a2bf37dd888fdee3ca3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2888898001dcbbe8802eb14f503df986a4bba6bb3321ade13f7cc424f807003d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x970fc7afb284ec20658f81ac2daa92f3777ed74143bb651771651639e7ae58fe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x4dc0ebf31065fe6ce33ab9a74a3605ec8dbe890bc0a1eeba2ccc7dd4c90dfa8d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x3504b7b7ad73d8835e6c64597a355f6334babf71211751bc52ad7607f16631a1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xe4990648441d8de7e7774043bb7b6887b9f04b6637edeef4c969fcf47fcf6904", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0xfcb875198c42ea0708160779c99428996f8aee7451aa3b264eaa9210bc4c12af", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0x946e2afc88c61b0c9427c911822138424685b89e6f00a26532f6dfa4ac2032cb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x86baa3ebd88dde3d16a7c5018884041936eec0efac16cf84fa5af464829ea09f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x48a061e4a0a22c96334674b102d10e8d3d1e8fd80b94f3c5b7e2a012813b4a53", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0x8951007de81d6a29872b346f4927f17bca70e5dd7afce0c6f04aeb8106f84679", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x6aa78f02e1e0652e2798097ba616d2f15dd674ff4af65b888c2ebe2a43f56bd0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x572c7e77e7f28fe2e0897244773c24221896fd20bce71ba911b53743e77c4681", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x17b990e6979b139786d759c52885924a62c7857ae1d30a0d16e094a8355eb851", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x618df892cada6d4b743b606b4a85d1678e6dbd80ab83fd5fd428a60a63715d32", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe62e53cc43ff7066d159dd9176a742558cdd3e0801aa5302dd1a91cc811820fc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x752248b2a33480d8972d7a39de2ced90610966baf7238e51640139814f18bfd0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0xc3db4d749b7287c19437cf429da85ea16eb9175f65efbdecb1e2ee77dd0c6a3a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x45467ab80cd5b0ae5ca57fb28b446ce151f176122ed691e709d9b6145dbf702b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x336dc33447157d12721f455953806a0283e23d5a7d88561c38dc0f97430cc88c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x8f55e18cc567519bb4b07b4b757c382cccce4d647a83d63d6cc7c2d58b7be3d5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x68393f2d38b2acc219a1330294bf639ddb85a2834fcacf2370110d317897801e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf71b020048e8c9cc12e081ef5e1bb75f330fb1d1e372c8715e5d3470ac796ece", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xca445ea23ddff0d98b8d1798e39ecf1800d98687d53fae884be27005f317d399", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0x571d6cc9dcc8b5594897d42a3771834b47e933bee80d5122b0775f832028cbac", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0xe134358c52c7ac53f85f80bd612aae7cf9d41cb2be6bd28bfe5621ce1299d7f4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xc18a89d47c74e02b8860f48ef6327bfce00e7e2884dda1606f6a7f3059ec2822", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x2a9922bb2d8012ca31be43144256e2a77d2e30773f2139d34eca90ab3986b6b8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x3a41aea44911f1d837fee7483f5b377e0d157a1bfec3779cd4a4481f83949476", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe4bdbb3802d805bdde65dec17c2ae6547ade6fb3c028b19d11f6ef5b9ddc7e32", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd0bbda236ba94ed344ef3265804ce92606367d7d7cd06dc63bb41eb50403669d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0xefb1d387f370e1a6281c50b4b1f8c9c1f8866c474435a9e091efcb73bd4bd9d1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xd1e75024f5bbbe54881a9edcf0fc09c3d117f6851e6241f0cd346ad4c2f933de", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x44cb450e8e22f7b45ac15d855dd27e65d4fe50d888c0a33e662d715787c20d20", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0xdacf265f9afa9bcdf153d17b03e16f9adc3e19784e68a04da32abe6a90e0397c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0x290739b24bcb2fdeb5e4266ccf24f7718d844361c75db0602fa0563e54d10c1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1f14aea764e984396461027ccf2496b61e4e3d45a558bb6ecf820f46815dfdba", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x85fc1c30af2d091b2a4ba28da4bccd3fbb6906087bf7e8be264c6fb07c911611", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0xec81967d1eef0382a39c7afb986d237ab0ec082ceceaf46dde468c6a8585f19d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x698255e72d76629b301b802bb4008334370d138fea5d951514d1e1bd4fd16f40", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x6f10c465e24cf685bc1050d484a9e14b6635aed15a98e55925ee12344bc91f84", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0xe78b9b0ed930382ea64048859cce509d8c688c2a2f372cdeae5a138cc50c35a6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x57be398a919ee6c31790b9a2624f9d91cd1ee22b0034bfcd38b4a9d919b2b8b6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb5b054077511963ade44ed21404266f6dcb979d09bf57ae83361991f156ed8ae", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf851b224b61a7a9da07a5308bcfcae8a23fc13f854e7186923f680df840c6efa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x97e08d9070e17b3603f1174667f5a4835a6334a59d31137ece57663dfba71eaf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x8508e78d98fbd62fa94d69aee947b7ac491bc440e4d672235696a654e5662e3b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xbf0d1176fb2cc8eb30e4d1d08be871cdbf11e0bbebd3bc9154ea29ac0d6fdf28", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x15c5fd5d7eab0a1367b3462320c9e3b41a643a5a5e8fb68b6380c75ac9141532", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xa1c136144a6c38c7d47b34e91158a78dcdb28c259705db359c5cdb37ead348de", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x4f0d6a95f184106dfd121983e46b9de657bd85f5784533e02771dbee978c4a2e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xaf4ef6137a8aa3592bcf8d25f9fe9e221b61e9e66cc4d476a7ac9f110405a7b8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x6d037ee4bdf769d07ce4df0356eeb4c9d5630f78e941c0716c70db7dfc30bdd8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x6abab2caa43e45df18da2fa0e7695dddb8ac2e42a7b1239f49a425f7b8eb2c54", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x8566ef98644b90fa7eb8484440ca402e96c6ab1e9dc97b0e8b5630936a089644", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0x4ba914e8e461b2e87e967ac68386b47ccc08c180043c79ebb1a694d7a326ad98", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x5998280bdc0e9da9f9bc1f6eff317ac1fd31b7c689e95ef22ea050b1e86f2f80", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1b50141ec51c877a47326835188b5baa4d736f748f8c7b9f7393ce7ac627a311", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf53dba746be49ad40d2861ee174119eaeda2bdc087d93c1792aa783207999d24", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0xfa13eeb6dac249d1e9e49f99e29380ad9e6abf2cc28eafdd38eb8984fb406ecf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0xe08859320dc90b12833433a36598df880022a44a3bce35242912570d378881df", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xa85785d85b0f4cc8cd9d36c5a2101a1ce948de1d2176c7582fb59d9bb252cb0f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0x32459cf2635d49415efe06ef07d0b420aa0db2b3f764d962e818611d77af41e8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x6b0c668dcefe0db47312c0453b02e67875c4d1ba18e652ccf7ed7e11f473f625", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7dd2891172da4896c2797a5b2fc328b1329bae1fe0f05ff0cff3e8a1cc1182ec", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x82f9569941427e0865281e2fa34e9282874e5dffe4efb08d11e48fb6a67f6a34", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0x60d061f1f113a753d5af83622ce4bc38644a8a7f1718c6dcda123c01c60d610c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0x17d9c7afe1da0332ac11a99107d0c2280c3848d9f7b6fb0bee3e534a7131ce03", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x160fed0995eab321d898d7f5eb7a2c74f78902e55baabe5a71b700aa43b2ee7b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0xb08b88827f4e0146590561f7d63939ebb0a51d36293ce2eedca61f00229d221d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x3e18452a60d5d74d3e98712a3ba33e5f90a3cb12924e7e25bfa66f514b67e251", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x71051752241ba9c917d6b353dfb44002336ad5dcc91ea2e705798a9e04fa0672", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_0-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1e2481e405c07d810073ad2f27afec5f502477b0490a82b5edc7045f10833950", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x326272cf3ea39b9a098fdd8b19d5ca31a4895c2c90fb514c59ea1755a976f2d7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0x9fb2e096e2a54e5d6436d2c765b3099d444dcdffdbcb385ccec80e6a21e14600", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x445411a9cfb3d398c0daa063a02fce5f05ae96f9c29832a57271934c4c04c333", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0x8f8f8028794f46032aeb277f45f2e608aca42b1d797f5129aa7c5456b6e183f5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0xded7910a792c26c1c4cebb01a376db4e342784e870256c3ce21530257a147844", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xea4bc2d99ea8678273d0c13bb96b01edab3c1dc6cf6d657dec8d28438af74e2e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x98300a6205644e93a4351b6256acbc54ff6ff91ab2be7d31ef49fbaff0f61701", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0xf66b17b0fd7715f6cc57021d923bf6830e1c44b764a67e42a877423d68c21b0b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0x69669b6c3a217278b52c79aa1212d7b467a1f19b7c0088b64615699b58e46272", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x69a56c96287b17c9aa78db88834a7b6d62decc7c89eb422601002cc7b245aaed", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0xab3bdb1d5158af9a39dac35cf08f25144782387d41d3b6664e9f8170a8ae9c35", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0xdd50c6c141f451f6108688b53cd20444c8732a62564affded3c0aebe4d2fe87", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc67f77b2b5cf9580ed28f72d6df34e008284a1ce4402678582cc93b9315b468f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe7ffb0a124af6c6d2e32314603cde34f49bc52040cda4de926846af348933923", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0x927dbee0a1eb9b55c4f475148c2b3bd59b594a5f17421ef1451935afb6d23179", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x6529d97af69679a1ecb79465f551cb4c38ab657216c97965ef89f998e4d7e13", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x69f58d88e68aeafeb7a2d3a274f80ef59be736e721d422ee41372fa94b335333", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0xd0f40f01e52b81b0b8d52e47ee84b79fe65cc82295133516d929032f44bdba40", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x1af7f3690317b41fe0ff221838bb4ae6b4ce24a9f698ef1e919b3a55a25d8948", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x99652ea6099f9779328678947822b4f2f81446fd2701cdb9413c600d5bc588dd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x644e59a253f9cb6493083bfcd9854c27f4fdc36303b877fa258ff39fe6b26211", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xb02ff1c56573fcd15d777f263fb76e48dd5b6bc90045cc6fa521d1af173c14e5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x1facc8202cf1843d5b85c852ca34f8e00155c9ece9e744649eb3a0652fcb7f79", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xc6d986f3a9fdce3f86ba8cbfd4af17e17ea05dd2a1806fbef8df1b9a353cd0c2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0xfaccc227a215289d17899253e6c3734a51b4da3311b730abeac11e543e0bc343", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x242791459e1b749a047b16fd82c4f199d1a2ad79c3eabd180af298e09fb4ef92", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x75603e6cedb2c5ffce335f5c2f7cf7c0cb2eff977c92693e4505b24dc723c521", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3104bd5c11b9089409e07cdaa34f3ff6bd60ce4ffd9c46d4128b4b936cc45c2e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0x90f5ab6eba78416b5932c66de2ab552e02be6b5c30d3fb6274517945de76fedb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0x88c69318fd7ccb4ba0f10d17e00f77c9b0b0a657ce991c186cb3887c267076ed", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xa24331ee37cae929a89a6351a4ea2e0f70fceb680df6db65bd5bd6cd18ab52fa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x3ab3b1f2a980b867954c2b8f596df5bea09a031948b0488acb17599af322616c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xdfd3624083d2e79b0f3057b39b948fea916cfa1af627def5dd30475ecdf8d8bd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9834c485af56068f175cc99f61e1bca953088c90aca9496668e47181048857a6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe3abb23f95f361928e2165ea1721f5230191890c161a638b58fb1882f90ea10b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0xe097a218608cda08a06d38615988efc0ed8693512db40f0bf665b9e436c9970", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0x12314bd62ce2577667abc434574e2f003fc49c46094564504782c11d4db458ac", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x2973dcc075002f7d7353b0cba6125c0f24d209a92628de9da9a703f36bd30758", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0xa899897eb7264f2ed5b9501a355c66b3c3da1381e7cce20a66536f3a6d283bd8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x955e06f887156adf8cc42045436137211a4b5a7d104a87488d124f707febd317", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2d4ad3d1cf5e30948cdebae8d871b21a2d7afd8a85cada9a84242e3ebfd3e2cc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x8c3fcdf80c03ee4d61b855c1237b3963b81fec39d54523b7c8a1adba4c2834e8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x342e829943bf729cbe6ac98ef8f5c419d08991a18dea7646a1e8ae36d7446fe3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x1b548d4118d97fdbe22516dbc46bdac14fe5f3d5d90bd62f214d8a88a3c488a1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x964404f2b20e7e32cd6913ff41ce07b8bfb95d84c1335f72f5b3bdb70e69e547", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0x8fb514cd4a142d514fe5ef4bfa30efd0b53117fce5fec4b6aece51ab0bf4bf2a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xebbaf52654eccc10f49c6c3e591d9da9d10d0c83fdc92d580330ac3823eb9483", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb29eebc36a17335e001b4ab77d04df18facb360d52061ee0b837ef3b1fd33a2c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xda0897d7e601147c2671c6c5cff16125685abd7a7d85cf01d3ce883198bce8b3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0x6a1d86ede2023524ced58a98b8b98c95c540cfdedf5175b9d5dacd02ad4f16c6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x27d242ed6d09141bd3e9967bafd552dd3d905dbf004bec0c2eb9189f07bbe89b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x4b0b8a659e598579c077b2b91ca9ebd6e178105f4f634bfcb94a3ce71bd43f89", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0xbe03148a9158d1d4beadbc2448941e7c2fda8bfa622b6c063582ee3806a00224", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0xb5ab401d46c06f93768b8d7c553b07132e051e79dcd87322611e5df3c8611b43", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc8f2161ad138f966e4bc70e24f86b98a7c11d53786ec6bea4fd68a9b87e695bc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5e447862dfcfcdfb7bfc70f32c68febfa60ba748be11a6014c7196263556d7b1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x27797e2ca0397a8f644a4f5529eff21dd35516551da8a5f9695a47aa9cc0607b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x78cb00e3f1dfcbbd0f31be06ee68cb7d661cf3f1b65c7ecd23a630adb56bf82a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x45465dab36c5d6ad689eaa94b26abf1e03f54647448ec80d72e2a825c64fd93e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x1fb2b7f1bf926fcefb52dc99b0b0606e9c79103acb4cf8462e8829291b4a2212", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x5862f8373c3e543abba608176bb4c111dee7c10d1fafb60564963c500aa80eab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa428ff8d68972e99065886e9b361f39b75e61694db6c42ab2f9bb795d06b91c4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x224872147b668140926b17a93193c1272d787743bfa32a96ced1c25402c8e502", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0x5eff890f490fe487b6b3e9a93a519a59f679c643423feee5f3e232699181aea4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x5ca2f6e4e5854285fb067a14e5dc7f0c26829a2ce777e4d42c3f2842ef125cc6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xb121810d1a43eaadff35487fa1f690a709cf49c438ca1466d58ffb8f733018b5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x11532723e092bbb390a2d374883b7a38c77698aa0d6d72fa79160e1201850dbe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x4eee7b07d63028bc3b4d62897faf87fcc9b0655372cb98a7504f289e317bd106", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3a4701d329d634d40c7d9d47ee13d6dfd214e59125dd65e6231d44356b53b594", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa0ca05c0f06908c7c89544b469cab893512c5bbd03179cf645194da602aae39", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0xe75477b8cfc3cb81898e517d16308cc21039e0c7e4fc91812891376717c56b78", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xc8f7683a44815241dff313dfb17ee641deec05ca4714692814febd6ac5513fc5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xf45beabefc252eb2b4cf070dc4fefb3ddcda8ce960e3805bf2d6be8db900bb98", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x5c4b3ac04695b4d47e4e7ebb6b52ed4a819e1e4e5d03f462bb4b9db643e009e3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xace25972f45413c92f29fb07f5162d34da203fb1d1be3a69bb7f794dade8a665", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x25d14ae7947ec0480166335eb77e0015af28985f2bb3db91184a7e71720beb71", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xdabc090dd9eb31fe24812cd285689aee2ed40a7c674cb6b6760985183b54a969", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0x8c586fe3d82aafbcb1c86dfb07b9ffb83511d5282ce4b0afe79f8afd495f3d92", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x93a32be1a9fedb3054d9e8cf857070218eb2311e8b3cdf1ad1311bb803ef0f11", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x4f7c25b3c4a45c27575095e529361a5b685b6da52236ab842fb508233e461320", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0x63335fa42465661a4a33d6913cfa297d0a6a5dd4831ff033309c30ac3f9ad972", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0xe7f9560cb8d521941fb2dcba5ee3ec05b413f1bd3ca7a22195334f5780ff7177", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x29b38981530ba089f0b7b196c4d92da2181272ad6048514c1e8c4aa6ba81cec2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe210cfc625d941013e8bcff16020737a12d75dbed806357341f2a0dada1fc230", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0xb76427f4711204e9c8f34f46d8c17b95a0d011bfedcdca3843ff85a009923f4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x7a6bc042000a27413195c60ef66e6194a3f09d6e36a9d217531e5f1247da3d22", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x8cd20479f78a5cfba23d9be8fedd0702b006eafe146cc78b6fc58838abbd9220", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x85dc8c6c2df29839d7c9748f6abc44827352d2fa3353aa65ac6995a8421784b8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0x60e4a9441cc5d4a7f5683b779140ff80ef2e122ce8fa4e0106f3c0d89c277e52", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1881117e03fcbe4c3b924786c367ebfc63538244050395760c2d9ed72516becc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4ec27291f0d8e28e65a333c0e22fb73c2d67f1809e3cdcb0453aa3778a0c7504", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x393706b0e4de90e64d72dfa443e1095c0e8a826efa0990214e1ad19e5791fd2c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x12622f55dd7bfbba9ea57f245efbc0d761d7aeb9eff2d1a323a1a167c5555000", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x14c5ad93dd65d48a3abd11817c1464920f35c4840674eb1463655e987ce4d821", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0xae74503694fb3b90391fdb0dff18bf2b319364ef20e8ca06870be9c97d62e95", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0xcd7e9f0cb73297049a97dcbd9e0146d5f5a4f3beca93254282620c137476279d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf902e9b9a11dbaf20999218f419936b126d0ffaee344403523b83046ff39e413", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1ba269319b1842b44f594a22cd9d105f7ab406266a6d304e729069ae22e2b31f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0xbc97f54b696dce4aea87f590793677253f062bd3e6ac565e7615e2b8ea19f864", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x2bfe5efa2bec3798f977c7c9409e84ea4bc6acb27a8686c4865e8ebe44742f77", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xa9bb198cc9c76f0e875a8ec7f8542487ce3dc40f5b612bbf3a43107d7da1c6b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0x5f88cc2a5a9396aebcb8d06634ffd74f234d58f03fad71ece423ac31c3952f0e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x3b90a969569ea3c583db51d85388d4dc591fb9b1242172561e255d3bc120295e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe201937145a27ed973b5bc29b78a7131b9210112dd47cee23761de0691b751f8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb71c4bae4d07c308fbf7e8cb7c29bbae166fbae4b3355b5f83916a6e4a7bed57", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0x3ea65d9b28a7595a1a506abb1577f07b7aac1a715c46d9a78f2aa526aa580b82", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0xdf91cea7a536d5852007bc366a9885ae24b68daaa3433bef14d0e2bb2dfbc5c0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xa6b5cf4310326370ca89ad182f616e79ef8a4220b5814d4ca10f259a9b83268a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x3a9e07bb686d7c9b200fdf71132353359377c84b7593a23ccc9611e1b5ec5cf5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x2a3a318f8ab50eb5836e62c0af33c4a7f8437c7715416139c62a0be0c34d5632", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb1c6e007f7b682a2a1476d592a616ed385285f76b5b9dfbc9716f1350b33112d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_10-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x122265aa9fa276eecee9ccf0613127465c9675102b87663bb408e465c29f710d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0xa97c94ca7df7727f6a1269941150c858a7bddb5ac690f55e8a9a5ea871713701", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0xd0c9ef74cb1eeaf46e0d0b165dfcf1d086095744b171cfa876b04c9ef29d9ea", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x67c07e5a7e28e211b9fa0e3f61fa8afc5d8f8ec84c05531cc463350bbd1b2ede", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0xb5c7388dc0705f2133f1969d9b5b8c0aff97b68fa6d8d3407a5d963bcdd35590", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0xf8f13a36b541540e594ce13e7484134cd6b4e42768ece5d374bb58df1cf3e462", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6b27ed70dc6b7a04d5096c2eef48b3b117f8c92174db14f25dd23ca9e39c1509", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc48e097ea9cb1bdb011ed57b357b6861fdd0eca4a6d611ad50829c31d748effb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0xb2d99f2c00e2d6f2a4e7bd7ac29f2069e6aefbb077f6986c2aafa224030c920d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0x87bb928db7d0a9b97d2d2274adc8215df196d777a19813871448268065ee6ae1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x38afb6f65a0e1442286af2762bda58977ce48a307c7085a77cdd37cde6556a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0xc9d25158bc3f89519538d24e884ff834bf6a46cffc49e0d603e91975cbf6820d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x4d83a43a1a9a8d1d731fcbf73f3f170b0190ba0615db1396d4155ff9a49ef663", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc761117657a39b7c65c9ad7403b1a8c44b2b3675ab46f000a45d5a5ec7df3649", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1027159193f2d59eae959798eddfc00105237286f21189862ac5106268c01e3f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0xb1ddbe71a7eb46a844e534da3c8da0ee8512c4db9db01db88f66b52a75ed9e14", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0xf816bfb7f5602d39055454ec06ca45eb08a355ab760d87debbe5688e3bd5f80d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x8505c4386c22fabcf5f1013837b436e4a2dedb1bb2eee3fb0eaa5ca2b2ff37c6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0xe55031d89840e2a82f1f787866fe3b8ca57f4449be3d9c2fb3b37c3b3d16e8b5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0xc5c643d40383065241fbf27f07396c5171ec5c6e5a7e0712a21c937c2cee371b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xdcad1aa499470268afed645a1d56d73cef21551604405977b480717a57612db3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd5b70197cfd6f239ff447bc4b501cb3254c1c85a1944237da884efd131b1bf93", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0x7596f20f364295d43928b2d43fb18d76698af8052737c2453e73783269dfdb08", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x2807d6dd4e29326e73b31eb2a7248a87075661440125cf1f2c195a7f960b56b3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xf633ca3dc0e4272cd3812dbd6f2d7b275d770b81ed8647b6d456e8f92980309", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0x5d651feebb12104d88fb3bb00b433a75041a1a6ebef5db9c1bbfe775bde88706", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0xd517974c59dbd61347699dfaf6080e0113ed3300dc039240031fde58c6725be3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x81be501b7d6df702bb38014ed9a694b7d9c24660be3b41792dae74c5f93247f4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd75d009fa34618d4fb171c3235f94e94e5825d9d6f47b71e396d158050220963", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0xf929146520f72ec7e8c1c843a8141bf32cf916bd29668169d433aa321d6d1098", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0x2d69fa906a4bbb74c50758999fcabc0467be2f585826dc1f15fb29e22595c28d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x166fa1a65093894dba1608e1f40200bc3621b5d323f9f54cf893eddca14b6a59", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0xab5ca28c0a12d8ac2754e790fc2e7700ad7c2e15448b9d774951efdcd11dfaad", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0x4f92a190f1105336e0fe473176264dfe9d0300584ec22cc09a714c17fca10ffc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2020bff887f641d4a4ba26d6c8f6bdc051f65e984dbd74d42a23c2be1a9c6dbe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe618b5b5ec6bfa1d52d18643832a573e7399b39fdadf5755d0ec491224f46389", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0xe136624fe96a6584b5ee1f396b693a747a5fc06569378935982ca47cc2bc10c3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0x62958b3c7fe488dbb65cc8a467abd19955d0a5bc03e05b54b48d12473a5f8dee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xe1b128d63113ce42f3b31bc2c9e773f78a6efc716e11ce8813a25c79c9ccb42a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x30aac0b5ae81a4896a5df0bd39e52bde9a71aa2499637f5dfe7295eaa81c9be5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0xef794583a439d77e67f7dc5726b618d5b921b3ed42cba4439e57cf4063d4cd9e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x57e13e3a7a4db902c89f06741a6d11cb1264ced0d142198fc1b5739ec52b8101", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x9009eb71739b7c9013a2e3cae6a3906f5804dc47c630a22172871ab6c26cc0bf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0xc9ac191007a068f2a91ed51b009d39a0869e53668af11a9a12a14cb940cad87e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x382d9dc86c6c72a5316c33070dcfe08d01d6328eec03cd5b6934e235588155fe", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xded171fb27027663dddfab2bb7b282d764b2465b560740d17fe71569f82fa37f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0x484e0881c937668c6847fbbc4342121807cf1a56e2340cd60c31ab22cdbcbd9e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0x5927b0d7e151f432b0118a00ee76c2d6dfbbdaffd9373c989e958ac76108c7e6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x306bdab0d9093c5aba7368c5c6807bbd963e960e085bb811fca884e322b18b2b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc5c2a885e047487af9556674dbec751e267d18a98f2c40d59830c0d829e8541f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0x65dc6a3594a30c275ed3af94b4d6a5fc5e68c4b84dfeec9d3505ce8722eac923", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x283546dacbd26139c64df013efd264358c0afc5c91b872fda719bc11ce2b1e82", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xa33474b3e5c93ba037822cd38c95e8e03a72c707397602cd6f38a9ef6f7000b8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0xed9a4275a45ed2c04a8ba3b72dccb604bf6596067cb29b636c85248486563a56", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x69fd2b7106e298c0cb49d30f7fe43f2bc0c7b6cd10da2980de599924f36c8c20", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x74d56ddf4d4eb583200428e975280311c2a0dbeaa4f12a8768d531b1d64273a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x412059ed94198865fbe63410501a0652bd624607458edf57d8f07ef8ebbc8561", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x956633991f6bd2739d58d55737dbe54dfaeab4c530f4abde42bea683152ab4db", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x5ba5c05def7367c05cb446e57b03865a437a952b055f7b64df79d471804509a8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xe920c340ee3eed7917c9905e64f8eecac11a0d288b04acc33ad53ae50b90a116", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x407d477f8444c8c2fc8bcd7ba6d7d41b8b5893c173c12bf777c776fb376e7baa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0xe1db139f5ab59bd8ae5409e641c6a98f6af638f8c545c1063833b3dd602b9dd5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb471323c7b74d894f0891cc2627e3e9ab26609fdd98b91b6ad331fe184c028b9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd9f2f74d78c34b284e0b14973698705bdccb01784ea3c42e77b38a87df3f1736", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0x26b30930b0d8e3108f8549f1527e164ae3d9a14104acc983884d85d18e87756a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x1603f7baafc39e62304c090b92eeca27162f2307957bb9101c3f170a8020f304", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xe177bcb8349a8cd1882171536aa0d547041cd86320092303d120d4a2e16378ce", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x2deb16079406fb30d33d4c2f042dfdf8cf80e367107574349a9040a284a8b1c4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0xfd153f2dfe955cb9c8051e173804344b84af2e4ae09cb58fab375166d780822", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7127bfb7acb7c84a88a99a9b83bdb1156c8287c4f0cadb874788c66848a7d52f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6c78b6faea2059ca17fc8a9c477dc1be419cc8509eb45e4ffe4fa58df50c00a5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0xaf330b44588fd9c32079864347505832552324c5fac5f76e501570f34dea1ae9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xa556bf5c496d20041c8765c27b645daaaec07b7a25ee0d6a8c942e492303e5c1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xb3b3be047ca9dea905fe8e2bd3c95694e7a98bb823e9a7de15d4dd630289be1a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x14fa88d21e6810adb0926b198aa63f98bde390e3c769afcc76ae425ad1c2dfee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xd61b51d281b44c523562d8a14b892bd3f08ab1409d3b011566caaea5148279fb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd206295cfde00d04a0fd0bd7580190f15339d05bddf873d886fcc85f0be32eff", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe6d3957748273fb4533f4a7e3d7091882ba4f80bcb159c2ffa2ec984a696a113", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0xbf3d8647f6ed8644a8f0be23ace49cac0687bdf1cfa7f35e3b0c438fed25ca92", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0xa3698cab6ba0e1bf33e9ae23f91d264357c10f68e72fe593f37a4e8b8b640541", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x463e3cfb21ecd37c8852d8e358ac64f4003898b255b18c0079418bf2aaa134d0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0xeeeda5c48aa268c6e96432f9b9d0e150d7681065e16f50e6f6bf30390c45b53f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0xd5f629112a9b1a4770262d29e46ac61c247ca3bab6cb6a15080d747af27b624c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3480fa52eeb90ce590f3e08a9aeb314552f57ac5c3e1b5c3716a348dac8494a7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb93ceccc09e17458cceba63609b027a77027298c9d2c954e4dc4843f82c947d5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0xed9e3160af4c3b3821461cb924cfa46241fc1357f8aca738ac91a71cbe9ad21f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0xc87165a4b84bc74d48819df6512235747f1647d09e6a5f5264f8c043f5039011", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x8b29bd37655843f2e9bbcfe4a812a3f2a071621c32ca548e2a73a113662df14f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x851c01c639ab8f201023f8a39b57dfd0febf9d05a8c883f6d5575bacd8cf3a05", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0x9116b0f99c70e838eae031b6c1042563183516808a8eb468f5fa18711d8f7321", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x54f4833e0569a84defe2bbbc29fb62c83b975d55db9481c360a91af35b3ff0a6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x21874af404b2fab6abff00c1f02975882c32ff325d16110713b6ac3160896fd0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x9f6486f383d8a9ed228939495b2386f421b7fb3befd46f9df7d6221d3968b087", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x1516d82ca1e79c1b7a9de128e2f3db4a68ef930f52e95300c573c94ed62729c2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x5642780cce2f69832def2c57ad529dc4ce24fbc6e34bb5d12e48a1a228386fe3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0x63473d1a1da8cce6bcbfd33907b9e62de88eec31a3144e51a53febf74d2ad43c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0xb3b72cf04b4e8635de8025660238205119a534220bcc1e4c45c5887ac48667e6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7670f00256289f419f0894de4dc903e7993e3c7e1c0512fc23ed4ee0899ee064", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf013f6eebef0e45da4e62bc4de002617d8c2c380a1cb52fe1d3e312c3decf13e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x375f0e175955044402a1bc7e96a2c30346d8e0db6e1f83c88644ab7a1c88c49c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x1b5c7ac30bc9fb20179c6f65a8a48d120277ca8ac3e1e1fdff1ee03536210c3e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xb56c5df6aa9c685e6d05b8942f52ece1afdb258bb46098ae7770905909cad423", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0xfe1e31b699721b420084e7b858b88e7751e9744d35c5e21ee83bb10cb1d3117c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x2c035dea5f3212c999148615b99182d82fd0861d66aca7d53053f9abb0ccdfc7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb9ae42fbe91a20575403358a498d013ed630a104adea613d5c8152926bdcccbf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xcac0af3c87c276f1c77da27681e4c3331fc27ff38f2d0632f35007a5c42c38fa", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0x7e382f2f7dc4e191e123642f6967706349034f9bc21575a9dac3c7b6c83c280b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0x31b80ee4caffb41b0e2060e20402b411f2eed266b928288b68276e7ef2be222", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x406566ff07466118e4263480c1613c9c98a58f573a8444d2ed5624476aba8c2d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x9cd58275d2103c0bcc83f7645acb28cc37b98f62209af00339d34da210a2e31c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0xced89ab37f98bc70f51b51071171434134d1c9bbbf727b2b633de74fc27d510f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x607efd9e9d2db7014c946422d9eb70f1553f4102fd08e8fe16490c238d664dcc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_20-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x9f5cc1b4a2f11eb735079a4a3217eb30423a00cd18dcb0b723c717a645d0cfcd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x3cf20cfdd019ee52f7204a33690885d84972e523d27a973d7e66e361ea0363ea", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0x83ce97fc0dc2cd4fdc5a8a185776254b70141dfb2d4557125afe47b2739e840e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xf9cdea90420c53715fd7c70098ec0ebc8e7b5d9ad38f4e977c10e5e3d7cee63", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0x9242dbe48d2f91cdf1b427e8e624346be04eb66d6d03c10837b5552d5464b00a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x34be8ae6fec9c212b82c180902f86660c5afc7debe7a207aea96ccf3ecf409c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x102c25421e8380275f41a56ad1303d2ef02e3666093a882ca78943b69273a68c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x83ad9d5ec5708be67bb724a5cc31988c8de4855c0f32f1250e56aa3175e3631e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0x4e7c540aa570fa1a3f5f7021321620065e0db156ff4363b86f044bf18a79f9a0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0xd91803cfc99f12607b6875d3a4f72fddfd4cb535e13fa9ea9b8d6b565737b533", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xc1bdb700bc2087f035d94b3bd59f6bd8fdd2e7c1496492c4531feb315e9e8230", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x62283917b7fbbf4100e3fe8bc5e98354949f6ae9c237d5a40ece8f2a7e3af31e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x5541673f8666237cd7c65ebc8ef9694d27082186701bc816c7b776a489862d5d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xee242b922045c3ea7420d454f3565e9b83f9bf6a47ee525300420a882247de82", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x84995bb7da5a09796120880f4dd7b257922543b487554aadded4b116d67fbeea", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0xd1e95db4ad51bb1a15db1835e5e53e219ca26f8c19d83ec543ecaf1d0d3e9238", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x5f00f35e064e14196fc7498c99f1c0df2e56d1b6f4b5aa5359fd1f8e4fc14006", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xc2327b62d76504607b82aa338912f68f97ea38f12193cec8bc1cd838ff868b4e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x335c101538d08ad18e18b33a0979c72cea5ff532537be89eee5739a2351e37e0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x1565d3b09b46b97278a9518b88eb5ea06156d706c5bd57da4646230fe72a880f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe870cb2f7573569a99dea3ab4f0e838f46db19e2ebe022b980fb6d7622b781da", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x93f8b39c0bd721182cbc41b6cc35874fa3f5195b44416e280e3e14a121e8c5d0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0x939589dd5cffcef5134fa4ec695cb7ca6a1210d49a5029d83a6a735bfc323ef", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x93189c5f2b4c2001e6e3162ef74087cb291d1cb7fee5eac9158f9dab589a740c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x75610a054ced7b0f35301b24fe340838325a485bd9735a4a8f5c95b622e44761", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0x867963478fb80fd4fbab0938bb32d3015524ba9b2272f80623e3a366c84268a1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x602f5016b3f239a65ae73a7d10c645b5a59d1bff90c54173258a48c9e00968cf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3662af8dbbd8f67a6d16bed912800b172dc77ce810787799be477e6f357f756c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x8d1fc3ba7f298122fd3df77a4322cbaf4e8a7b3b66a70e7fd04393c2ba7e8cad", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0xa234c570b32b3101c0cd25dbaa1379d0d8f9a6646ae56c5c959a9c26139f8b15", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0xcb26c4edf65e0a2dd2c38a4dd9b8be95501c3e41082ed1972e1bdff1ad9178c6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xf250369beffb815c5791dc894d839b09f748c06ebef063fe0d80269d9bb76bb1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0xc60c4cc7d1dc40dafcaa5b2988b63c4777ee721e036b97894e823bd8124fafb4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0x4954778543b8723c1d46c6f4a8551fb44b0ad3dec9b22ca00f8c1f0384f62dc1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x33c956a706379304b73e7e8312681a050c4d809494fcc85478773dac416dffdf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x383502691db54e62027a1b25e99bee196a14ee761aef8de75075ab33313f8643", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0x927e614c386c82e190ed2476a637a2cfe5c9f629bd20ac88f979c2b383ffb0f4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0xc677f6eb8704788011bc75af0c7ecc905eac5cae77629834329e0ab6a8b25170", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xc7e6b69166e74668a57f9d460f2fc227e2ac858699c03ea8910f0ffc6a884a3d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x261ed4e00a66e8c7adc74803ddad371a9148d0edbe8fcfefdf78e9f12bff7708", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0xd90109397da8fefba95b9931faef17e7206767c1ff8c3aa19947db0b32955dea", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf5b295587fd8805819f47df4764f4e7e7ca6997d77877c4c99654ee24c1f632a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3e2dc80dc7aa275b89f2a152cf42521cc0b6f2c46a10b5ca5ef3c88ff3599a2f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0xebdd1b26f1a10c5fe3978a33e9456a6f839a932cd1a7f571f3b22966f141b039", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x61f987e1f41518e3bd52c240b64af03118ad0fdac095c11ea1fba85342f56d4b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x1b38b7890c8415ddfee5753d26d959142aafc3e5aff6caf8ea94cae434e4edab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0xfec7c7a0f70583f447a18b61dcb5de0280ceb385ac0df2ba615c9a4745faef05", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xab70ae78f691f80daa55a1e8438139c138eea9a05d1d178771aecfa2460879db", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x398d9a8912ee5aacf9d6233ba53efe78a687730da912520eca9296b6cf486079", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb3706dde8009d122af8153f655e8e8b997e23ee43401f7f33c131f5581a5c4e6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0x2ad0ad221132bdd727306c3725a6f55391655d437a6252ab1f1877661eba234c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0xec30e79e7c7e108243650d44d55a3ea9ad14106bc6038043a22ee5ce47d7b131", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x9be75cd818ff824587ddffc1ab39d1552aae3fba9ba70048c8faa7cddc942f86", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0xcdc8ebf9346df3fba223041ca161c06a7baaa58f302702ab1738e039975bf666", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0xd9b71108e91dd39258d5cdf30f7e89a8d86073ee3608a7080558d79a87fa723f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2d16db01d31dd32a860d498fd2d8a462d91e4fc1d6bdefe8149398569603931e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x73a8d0d77637f3f40f10e70ae0ccb2ac63bd6fe31ef9081e5f662c4b4bff07d6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0xef36a4b619f3e9662659e59ef7d20835e6eae0e514c08f93058de82756912024", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0xd46fe9ce244ff03facce4677bb6925c5606f9bd5b05c0702f910ebe1bc0be0e0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x47436e0892555551e57a86613b1c883a58f4739ef82769cb037f152187eada00", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0xe616e116fb5f193be135d2f25f36e8efdeee0bac8164c8dd5256a2d9f92cb247", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x68c2d62d0b59499528bbfb605c323b2b1b0c5b00808d4b1d5ddfa8dd87fdede", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x315053729d1d2a339da34694facbe2b68023f891862e98603b4b501ee6ddf387", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x29aa1b3adefd55ead9f3f4fb5feac10438de190dc35947898a9b569380e003c2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0xfd8ce9d871aaa3db57242ff17a0950cfcbfcd0fd17649b42cff62f1544bb86c0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0xadfcc8b50f3db943472e35b1bced39d7dbe8c41388179ceddbadc5ef0761dd25", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x31d5d9571f027c63b31c081cce6d103d9f528d19e3e5e4d6a0e09b26da9fb27", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x9345d867da9240d69126f453bcd20e578e2095c5026655ccf0ef13aa5154e285", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x7e43ff1189629b4d1f8b40afc727c94b3a2220670e8b176d66c2a18c461f509c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6d721a25631ea6c48e25e64b93e1e69658a2472e4ac53ccfe4c97af320993409", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc793c3ae74fac60dfafd6c906f3802ee91cc4cd62aa944faeb70ada7a90c3a8e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0x4c44f50a59efe3eef2d28dbe615899729decaf442baf83ce2eb69f38983154c8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0x8d8ad871702c3de26c81daab424535b6c7a82f95a543440952ea33ec4b1f3da4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xbc8e453d85189e65fd68a650154931d916489558f2b0d370a2173f0ae5cb849a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x27a9a7ff2ae257be5ad53c2d2cf37372ffac8b6ff0f1350572a8b30508165257", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xbf2534507b7acd5ac1c87d5be4251211b5038fb22e9f9496877b2cb097c3ef47", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa5758edaafc4a41d089dcead839e01f8c042807c1715c54776c6fe08d0838f27", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xfc87a509c39ecb4ed7e4aabdf6b17d6625cc4d2902379ef91802ec781bc4d53f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0x57b4e0863bc1a3b3ef94ae186005185053b864ed7669428e8974bfae43ddba2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0xa930890a436ddfb455b1b51688d682699eff5557d2c1524aee74d3b86993b9a0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x91676939f3f85644523494e893a1631d81eeb29ea4af8ae9accc197388340c33", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0x1a62f0d5c218342c6970b06617bf3e48756f7c95a53ae51d66fd51102c9dcc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x146ff71f79b0fe76ceda2cba2b23738a05457688720abcffb258b52d102e03ab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x33cb2b680e85441d2dbb875dd3c7d32d9dab89fffe35725da6a2a22865f3cd02", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xebc0eeefaba2285ce365663fbdcdf055c20df2903aa782c2fc12bce6ea4c7e70", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x73951439d3580f29af12c9550a47a465841ceaf03c8aa4961071c8980ac5b1fb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x8e7bcb9dd795a0757c8ba99911a1df75263e2c48b4b4724f73d9680e2a90db66", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xfd267761b01706df12f5487196015c244c111d34e2aa609d2bc3bc535cbd7f69", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0xd58f0bc4e4ecd34f7872e6a5836a188e0e20853119e4b9e10e5904459eb3eae5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0x5d71391ecc9833184d0d0fd4cc9ce932709a96dd458e100d31b06c70cde2a804", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xbe518dcb96fefe4e0b393015c1f825a1e187830fddc1c8d9056ef551085c5d45", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x35861c255781f961cb01e297b644d1c601cd80c56da9bcc383439d01bc8cdb4c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x58f270422d2fef9e3441d5069c7f544d6b37612a1e7141b393af8e399159ee05", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x37a8ad7ca526cb9edc1bb33350dd2331f726f7e67a904a7912c699eb13457eff", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x9b0d944f34fd56aa7e4c8b7d60b174c19e0dc2479158bd2c11cf0673717feaff", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0xa373b4da048aefd61ad81f0177b09286799dfed4a917b9aaf773cac5178adab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0xe7a9f607fa1696bcdefc97d1734218df34cc9d31d65c8a57e51246ff4a947ec0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1c2212ac5d6f7479f48c4a8310c80a3c2a43739bb76fe5cfd6dc9de069409947", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x97ca44afea0f9e8e6fc9d648488b673cfcd38c5256634dcdb88c8b6ce8918712", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0xa9ea0404dad813a3a8ce4b7354640637a1cf54a4b7126928a9a5df2c7aea815e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0xe8532fe901b4cb7c50e615e8b257baefeca223520c576489cb161a988205de52", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x81b6abd8ee2d20f5d98cf072b0a6060123fc34eaf9fced5be9bccfbd7ee192c0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0xb8a219340144ff0ae16b61d9ef75f3f3767bd082a5f338ea77dc403b8153b908", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x58f43586854b9b2f2b7aa97c43068a7333ca86005e77864ad0905dfccd5bbebb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x71aae99fb3ead6db642869e9699c0e8370bff3dbe0914f10f75e736a1532ba43", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4ee42392913b10dc0fd7ee68ae179d23c214f817d783195b8bd8dc32d4fad017", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0x29716002f13d633f1d4b1e979aff7a86e428213fc46e7b514e59755cd64cc4e9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0x1c916754bb3952bcc5a6f811235c65d43b2f378ba418fd02b4bb836553084fe7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xc1953c6f35cb31a71f1250646b307d04c7c545f3c4c2f9b49e0e9ddc0e195428", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x2b563fd02f8153484ff2c786c710f7683983bfe06cf1fef32f8c8d7dfc688598", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x1e09382c22c53780d2d89b9c4f8b75aa64aade5a78dc4e880c71799f9a9ffda8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb57d4c919410a76023bc106624d5ee747272e9cd3c039286241aa639ee81fc50", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test_engine-size_30-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x57099e1c10b84ee6397be282685b733747207cd7f90303352c285d5405f9a8b8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x16ecd63f9ddeb95438ef6059fd5088f7adac266f414b1ae08ef4828c064df6d7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa5d3700323d230bcf3256c0cff513b87166b53d0e9d257cd42da3c6f676cc98", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xce54ddc0e37e16bc7d911e7b0732b3d518941077ae85b8764f431f28ee69cb7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x6ee9cedc283ecc1c1cef5ac29cd7a6a99089d679af670c136a3d99e7ab749430", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9d60ec0b0959ee7fc3943fdae8a48c711a9e404c696d84fe513755f5b026af9a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x20f6284225319e9ea06c41c79b5ae162540209f38469e0c60627b5ff43d55f3c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x5f29563d36b6b96aee062463be35d81e2dbae6b3964b7dd756b6d42d6454b328", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6777c0e2a1c6ba3dba60997fc21f8f5211a366c1985b91c93234bcfc67d5c47c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa5e86542d9f025dcebac78a51bd6675ab2ecb27d7ae32ad165bcc756dd584031", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x2829c8e9a949f97f772834db716fdfa789c73e38cbee55c20c1f3f36e9d30b5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2cf6b7f553f9112e7ee0269480a9a3e8c3ff9702851ce90cf3e543ed966dda77", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xafbe14dfbe1efc6b85d5d004fcb61e41172b0033e4ba4f9192e00df10927db43", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xe641a0e073527e8f438c634410901d786617f1e74ca20f145bba5925f1d29d2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x401b1b5f688901b5472e6504946d95392e72bdef441b63c2f190ad5217aef402", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xad2f7a91fe9efabadadfca2acc0faeae8e1414974417b646349d33aed2816bee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x861747b6eb75bea3bbf838e87471066b5121d750bc798a63b7735561a5792a33", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xde9a596449f25ef2ddc673e3def5493cf1677caffec734c29d6f4a32184c8643", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6af9d42052f3e162a69125142c18f26e7fff479e6b5a580e1d5b5bc1f5f68305", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0x5e0d0855bb05764a811cde2788ddd842a297be3bc3e84bcbcd450f2971dc10a7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x152a06220e525f5d6a76c3f82cb37d80f6fecdd55923eb2a0a00523574e7c553", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xffacdff6c194348d598cc29429ccea3cfeab1268183a6a6931386bba3342bdab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0xdac234c8219cb08813dd8fc40f1f2706b7d9b032a75b25b0643a73da89487768", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe83a209a54ba1e50a068a9c5524532b1b9daa36c0115bf53bd6796e26e01f1a3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xcae1c7fc2207bd0f7548b9d411316792ca62b2a4cd9d556dfd03ab9a9c3a4859", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x12e72e8ad3c16cc6857f629dfa5e09acbd9384daa5f06c8a606d49a53c71baed", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe8d913b9aa5b0ee4a0ef45d82acdfbe1ae1025148204d1d5b5913a6f9a5a4b27", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x25d5ad98d8f19e9f04966cd381fe1df1fbd6e3940eae47a60cd4745717d68419", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x49a7655169632d9953df59bc808ff0e5adcce0d9962be766f11fac68ee28ee7f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8d07be774344a8f748c8409837d83675e94d31c26a13690f324319a697e71100", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7b8e2973e4714529c273ed9e81baf626042283443065328743e37578a1cc13bf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xc04341046d39017aee9cb4ed9097732125f8099ae73974107b336b6fea15cd8c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa3fd1bd44a1bca5c1c5dcccbff95e91d4df4ab2137d24761dc6f997bc3028caf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x47a3afcd1ed83395ab615c37b9813a687a6b26f2a7605dd9729c27b88c62ee3f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x6cb2cabdcd477b0c6566b213d3a9a242c6154ce8e82922bb58374fc572deb9da", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3f69ffa085f6168c71b6cf9a08d7b038de757e77f741cf3bcc136ccfaff8c12d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc508c4d7252d513febedd39b4e34061f5df818e29649838aece0601f8cea67b4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0x33234dfc8a48cb566766aa8f49001016936eb2b410f55711cb4a0096c3916f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x635e316ce233598e71ba351565cd92e007ee6b60320a5ed980ef72a18ae3d73f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd1674c598f041a14c5bba98efb1557935901e60068eb445ad895c86ba49d105f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x87a28540d3a8b1dfe756c98308962ab2ec3374d3f0a18459803da6b8560c1914", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5a882d1b64e7e2edd700a71733ffd18d1e8eac190fdb4ffcb078ca626a9662f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x76ebf4144124cd1e856c3afe6399f3d8ccc377558d32f9c691f4a2955c8ae87a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x1b6b0c9354d9d3ef2ba4551a6ec47250ad8e20495f89116dfc7a5c18f7e024e1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xde567b1eb4af8fef4d9d2079336d7949d87084f6ebe8e967a334f4ecd0c79aac", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x633c1b9b9bdf19ff1a1a1106dc7c2673b3b4e484d6c096e04bb2cc1fde21a725", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x40cf52016681e55509e86979bf8f39a1827b01a39b265858246ab0efa095033a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xdc5eb8c99d20f9c25a69f7f0bfaeef4a2b08eeab89d744f03c36a3d1bda18872", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test_engine-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x57dc92ec1ef62a8363dd3accf88a0eafbb6243b8fa9bb35d8cece963c41034fb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x4571c3a6ba895a4aa76f260a556f99266173e0d7c9962e106378ffa023a6c9cb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x6defb2686ace8fd4c80aa63dbfcb28d4d71dd5ab77e4c92ff60e7deac840c83a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x8f1944df867df75ca4688ed9dd06883719f298baed3fd67ff82a040315e824b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x7fd708cde98fd9e90e757c6148c02b8e4db3da6f0d4680efe6f92e0ab02f4abb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xc632f2aaa315575b91752a7d8556f308831d268f45aa88dadad74c576df04abb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xffd334f55481759c3f0815d0c6601125c8dc23d8c188003394e8dc0ab8b802a4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x1d4fe3feb7f65db251488853e9496593a2ff878dc3fd5c04bb76addfa2c26b75", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x2f7e42f279dc4b633418dcd857530d617b3b415282bd7e92160fc9ded4e0a81e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xe847a8db86bb90fb3ee7eee835345986d7d6497ca630ca7075b83753ab293abd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x3c183d4349995e26164c6ae6ab7e4fd8cfca15156b0d1a0e06807dc7d86b5b83", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x471270c3e6ffb852b331ad494d466f923d4bcc4f34065be3cdb78afc0f581e1c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x5ca940790435600a8451586a326416258b86b6ae6e0f3c35cef0f507c7990a19", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xd049a4666df14ab963939e09f72375ceaf6099ff2bbd99c579b6262bb8e27924", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x5a34324b7f80e8260f15edc034b465cabe51df489635fa31189a2f8244314066", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xfbdf01a3eebf8bad62b8e5ebd33bfbc2bf28e35000707c9f3d95b95b1fb9be85", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x9ad07907f333ebc1bee606b268ffd3cfe1760b368f9b499cdbcaf1d33910a12e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xae5ad8235f4af17ccc80a29d5b0e64becc2e7a6905753b879b5457e6d67d4cb3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x5b457bc45f1bb8fc542214257d13b833b8f066770b763ec89b92db1d61fe1bb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xfbfb00842dd32ce9e09516d08ec9469274ff31bb780919efa1098c03f516f6a0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xcd60e95778f83a997f2b0f1d10838e71655598d4ea0143fb51a6b8d783a69ab8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xd6fcc0cadfaa3cabee1307c21c0736eee08c3e17ea4d5dc6113472c6a38c7d71", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x3bb6c9d2839ac17c4e61cbaa8ab65fa014ab7a84157c893dc64d3b4bc35cb0fd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x197f26418de8a25b5f71abdeac4350e719c4ac0368515d880e8d7bab3262aefc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x52937991e869004cfb5c5becbea7dd057a448ccd5ac8e56aecde2a10f697eea2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x25cb0e26dc88440113214beeea3435cc3f76d9124e3968f5828445f64c2fb381", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xba551395d30c8990f831e08b6de70507e09fac8911b1a38dd7e91daa2f4daf16", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x1420e56cf7cc136a1532dbf905446984ff23ef218ef2d2a7072c39528de2c7f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x10e4b4beabf6aeed7ef5a29d846885820a2f109e95e2899bcc176127f28d64cc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x278570570c8e83b49d57cdee3de0a65c733416f4638ac213a129aadac9ff63d7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x5b802fa2dd12771a32871cb1315c2a6da31f2842d11b90692a9ebb81d6ec55e3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xf55f26386c065028c50c336640d86b115b319ec741d4e3301638ab8b5f728541", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x92b2a43b2b129e2ebf64bf60a09650ed278772141f587b99554a3968a298672e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x6c6e0bbc20356b464964af7ee91ca2177d685cce695cbe460195f4caedb6698d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x146813ecaeb60aa92544e49352a4ce1b0853399fd5eb8f68e4b1477c8af7d40e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xad044e8e02ef59b2899ea9aa3bf1afb1ab887c4fabc4573c308c07d7b1aba538", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xf46267d3f7cb10042ac8490f7504bb97add2ac1e12272f6250bdbdbd4c1661d2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xadfce2eab55348431426cae0a87c6373e115e922eee815db2a6f397c09eecfb8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x55642de27baf18cc0f41447b5ed1b8733ec105564daf54afb8230c35382dfab3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x1ffe13bee0fe709fbb442fc1a2bf4918d74671221421809d65f0a74fbb9d5e39", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xfb392a36526a2f63228ca1b9a95a569b4d194a2cc6354c4d60355d58638f8dbf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x1966de8a2a75db7e15f4d978af052ac53660b6a9b3e91e96716dfc05fa5a85ee", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x7aabf2b053c6d15de1626f3f032400a9406c1c43e827026f7d795c0a1701f8a1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xfdda6ac8189735171a1864a40350dc0a06a7a8b73c24ab61ff754d80fb854b2e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x9371fd755bf0a479590a0e4b4c7b46aac07f5c9942432c89eff02e9f14910954", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x3effbfac8f71ca142fea99c9f9374dcfc4d46472bd6ead76c71ba4265c58909a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0xd85296afaad49300f0988f8b5f2fa0acb0717dc319880b9fb79b884761caadc7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x3dac8f445c528d07624b221b5981b4cd701c1a592e69c189b9e23d0e31fe00af", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xf0c5ca616006bb27f9a4405ceb56a44ea24089db66ffcb00663953a1883203f4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xe4bfd95c24a7cbf68df3071ef37967f1db1b82d17396ebcfd40ad7825919105b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xbcece1c86808d7e5b00575b58fc0f594cabf1e989dc5fde55acdee770eb54ab4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x18cfaa5b8caf26c4c2cb7d38d3cc08ac5853ed4b7e998fe7cb983bb3033f2f3e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test_engine-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x84a61ee1aa1d31fdcff8c5ba8d2fad39d2c76d1104bd612c2e4e1932f8e7548d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_zero[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xa855dfbe1ad0d4ecf25435774eb734063e9e19cca2247dce2769828ae2ab2028", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_forwards[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x3dfba7adc5d343907dce0af55ba0feeee3674bf6ed648cae542f803576d99248", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_forward[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x8c4ac6a9a4d9883499115c0d992964db316b2cee377c741b6d61e26264da0374", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_backwards[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xb51a5787753fee14818f61da5036a9ea0714d33c2ad56f8caa333388b724207a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_zero[fork_CancunEIP7692-blockchain_test_engine-False]", + "fixture_hash": "0xdda8f71de86ba33aadf4a06e4246872fafc701c2b7b0a8bec4dace151e7a3f6d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_zero[fork_CancunEIP7692-blockchain_test_engine-True]", + "fixture_hash": "0x7960c6388384277b73aced37451c307817fd3f89d7eefee02a8c65acf0c46aca", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_backward[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x2f6e511b936b8d4db2b981d75afdeb932e47e04d9c5a022a075feb27b438f6e7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_backwards[fork_CancunEIP7692-blockchain_test_engine-False]", + "fixture_hash": "0xc4024aed706e890e7ce582d634e0d3aed06a0f2f7ab94379b5e4a07521cc6655", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_backwards[fork_CancunEIP7692-blockchain_test_engine-True]", + "fixture_hash": "0xa8c907e2e9633d2101c5623bda75e98a488119212989a206b75ebe456cfbbd05", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_forwards[fork_CancunEIP7692-blockchain_test_engine-False]", + "fixture_hash": "0xc77ace4287f1b6cabb41716309218a1a8b7ad1391684c55e539c34f64f030343", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_forwards[fork_CancunEIP7692-blockchain_test_engine-True]", + "fixture_hash": "0xa3ffd37d1378fe71c52a35d9af43fa683909360e9685424ac6b2dbc88f9f61cd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_maxes[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xc3d99d5458b671d5d014ab6f73bc782f164b4bb60d98fb23a5777c7144f2d874", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_maxes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative_with_data[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xbaef932de5e73072793646db1a3271bcabef506f346a0dd7c8c49d12e091101d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative_with_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_zero[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x50b01aa99b14d5fea22bbff8bfb043250f730ea6907a9dc2c383618782ec376e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xc24978151267e531e466fdfde453a45a7a127d31af7f2450eefa82cc76da40ed", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_forwards[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xe472282e0061d94f0abc57c3b3d010ea02449abc55fc9219d927d63d74274074", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xb30a795f656336aeadd83ec6f6633edb69b92b39beea7617222943568dc2b2b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_backwards[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x4188bfc087ce54050379fb818cd0378889d5c1c2ffc885723ac5703422069dfd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_size_3[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x6713ef1274c726fc15494c1c589ef17b3bb7d3730fb3458c9d8f5fca4ad0378d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_size_3.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_last[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x376fe7e439490957db79ce8ea2905f26d36679e0ee8127b2d895a721f7f0828f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_last.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_mid[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x10353948669f911a98793480fe0c32e25a4e3a1ca0f273396a19ed1f0498a0ad", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_mid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_end[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x7ab11bb6308e54f3639749de757756a4247ebde5e1a93552f5ffe1ecb221c478", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_max_forwards[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x404af43968b062cb556bf51f925d801b5b9e2e0b8fe625a44b51a75ef8aef630", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_max_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_zero[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xd6ebd42235ea2cf0627542d082e29a31cd589fa6b74ada1c37e3f70f90f03a1b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t1-c0]", + "fixture_hash": "0x56c297bdae5d2af9bbd7c18f70fe11a4f03ae6b71a501bc404ffb0a2b322b77f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t1-c1]", + "fixture_hash": "0x91c0a7def5eb092a3998f7a0dcc9f415016dc306d86910d706dc1e38b7f516a9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t1-c3]", + "fixture_hash": "0x3ed9443787bcd179cdd8b0f9e905f320a17a75077bd05d13b663c7ce58275dab", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t1-c255]", + "fixture_hash": "0x81ec8d004243ad64d39eed819817709a7427638c4564b16c576f419077552409", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t1-c256]", + "fixture_hash": "0x42ee356c77b2be7db490148b7f08fe059a2b5d2b5f6c726ed1dd6599de60a62c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t1-c2^256-1]", + "fixture_hash": "0x9edf40d91eba527940a8caf752d875fcb17a3364902513850c4907bee6c955bd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t3-c0]", + "fixture_hash": "0x60b46939378985873d7af34edf3df809496ae7498af342b120d9b4f5d9a2a92c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t3-c1]", + "fixture_hash": "0xc426746e861ed10668af415d3c5ca62ae65bf578f22e0591bb4891ce2c26af29", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t3-c3]", + "fixture_hash": "0x9a63f273308a5b4571f9dd145be65cf986519e91438405abff87027f871b66cd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t3-c255]", + "fixture_hash": "0x96059bb62c423e4b045398a77ffafead5ee163467db2fc8530393ee2eba66fe4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t3-c256]", + "fixture_hash": "0xbb0ca1751eafcfa2c2c244ff2b1726c5fe6593fe6d615562111fdd10fffe46a5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t3-c2^256-1]", + "fixture_hash": "0x9ecedf03eead8355024428fb761021dbcd85fdf4bb8a53b565600da4905ef57b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t256-c0]", + "fixture_hash": "0xab315458e922af61b8123d87edbde12ca7fa4f2ac1b95040de68165b4ace2baf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t256-c1]", + "fixture_hash": "0x4fcd929962b3afe3c708e9f37f87654b7fa598c53cfcf9a3d464c92a86e048e2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t256-c3]", + "fixture_hash": "0x17c15ee71e425db6e4ad7ddc7268d51f5465bd84c2cdea2faa31340ae94bc383", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t256-c255]", + "fixture_hash": "0x39606f651e50158e96bc89b12fc6bb79e0147132690aae023d3f50ce6f2dac4d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t256-c256]", + "fixture_hash": "0xa2ef8797ae67a1c5e3374f4da06211e08678278339b8d17aeb05381e36f65a34", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test_engine-t256-c2^256-1]", + "fixture_hash": "0x48a81dbeda92611f0f36819f469f8e1fcfdc7d26a009c01ad62a8ec6d7565d42", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x4c53a8a08f442bdad1737526a7cc54e2bf5ed5b72518fc8fef76a85d8a5ba694", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_overflow[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xfe45062965492efc50cdea13f30055dd27d253f493572d0a34290cb719fbd09", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_overflow[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xb3a13f7484b4c639daa1aaa73cb9c999cf2199682000c316c449a9efd63f8796", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x948a61a121391a3bc1a787da425792ceaf09558a0bb8d96a907b91335c5b86c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_callf[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x16a35a08b461ed2a40cf585ba66f0f10e7f61310f1cb0cb8507bf459536f918b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x10fac60288e5ffd8c93f481e4118019d7d79d8ff3eac4f54ac44f3889eecad6f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xd0be95e52e6beac35d4aae04cc8535cb951e2dad2b824bf7c4988a675e1c2a70", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_within_deep_nested[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xbc8f560a7989395aa09297a069dcf351ec335a5a7cee73a6e82dc040f3c14917", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_within_deep_nested.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test_engine-invalid_opcode]", + "fixture_hash": "0xc4df5f305f1a19066f3c1acd30e9e94aa224385ba121503b2c0032670893b952", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test_engine-overflow_recursive_callf]", + "fixture_hash": "0x825798669f7d47c3ab07bf12755f39321da4b24dfdc3600c6106918dbdca6e54", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test_engine-overflow_recursive_callf_sstore]", + "fixture_hash": "0x327d87a2edf2aaf5941ccc14c024f6f56a1f6d19ba7fdd1bf36d6dddfb04c2d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test_engine-overflow_recursive_callf_memory]", + "fixture_hash": "0x1196f26195bef2f4e3b34a1db42a3cba56803bc68e3311d6d102c805dcb0a9d1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test_engine-function_finishes_contract_execution]", + "fixture_hash": "0xa61a8e4b5f3588b4258424c7ca1175adb7676887a99859664a9de08555345e20", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test_engine-max_recursive_callf]", + "fixture_hash": "0xe8e702f755900f5004f28352deeb928ecdbb1643880dcb3659f3ad06bfbc4c2b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test_engine-max_recursive_callf_sstore]", + "fixture_hash": "0xd49de7959c978c1cc7dd7b93caa1601d4224a122b25c2f3b2563ca44eea56eff", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test_engine-max_recursive_callf_memory]", + "fixture_hash": "0x65814939feb9d8b394bdcef7dc4a43bfb2036720d5324b436ad02c593e524ef2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_extcode.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x7908de65e5382aee864f235f681e597209d699ce0202ebea24faacb3553c0adb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/extcode/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-DUPN]", + "fixture_hash": "0x96cc7551a91ff047f4ad034cd09b160f70a0956870955a30054b1b6a5ff65812", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-SWAPN]", + "fixture_hash": "0xd5199d9aaa3241d1b3ff6482e190e33b9df49f564a0d0e0aa540dacc1c5fabd1", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-EXCHANGE]", + "fixture_hash": "0xbaaf5e1e4194cd96f8b2e903fa7a6d7c599f44fc23d12c1a6b4c72da8964b93d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-RJUMP]", + "fixture_hash": "0xa77f3657ec33adf02abe88208b2570493111d403334e8422e62bc9655cd8692e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-RJUMPI0]", + "fixture_hash": "0x610ef929efddba1baeff83b156d6a5724d0febac42b2b50ca158baf490cb63ca", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-RJUMPI1]", + "fixture_hash": "0x828e1103add642a2638adc307cb72e7c9d9d23794343157a005dff10a17c17b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-CALLF]", + "fixture_hash": "0x29c80ccf105acebdacc3c3dab7455327e31549308cbee5d31a8bc929160051b5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-RETF]", + "fixture_hash": "0x268346291038db64809a9ec51870eb4c4f23c4f59dd1c2192bf475bf3ab0f74d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-JUMPF]", + "fixture_hash": "0xbb1428edf03e8c2ec5f3e095ccfe14f15be61d9bd7e489de0ed9a0aa97273a79", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-EXTCALL]", + "fixture_hash": "0x62a587117b9a2f6791100d08865593e61314f299616f1fd09367dbdc54750a6e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-EXTDELEGATECALL]", + "fixture_hash": "0x534301e35a5dd68b2f9a7cd387603ac374743103d714ebeeb4f763e8c1dcad67", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-EXTSTATICCALL]", + "fixture_hash": "0x8e9167c28307655ac8499f854d4cd780b2aca6c95d57efa539634599a0bff1bf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-DATALOAD]", + "fixture_hash": "0xfc0d9019139b4d84819cbdb1aaa2dc9f265786abb8deeb48b66d73197060dd3b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-DATALOADN]", + "fixture_hash": "0xe1db4e18f17d25268cfc1c6c2eeb9f1dc02d5545eb6ab8a81824e00de96c469e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-DATASIZE]", + "fixture_hash": "0x81ff47c91f77a113e880f93f55821338e0505769ab321d1c719b46a77e1c8772", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-DATACOPY]", + "fixture_hash": "0xd54e97bcc015baf2259e0c97c35946bd858f014d1b53b1fe8557b81bfe67e6a0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-EOFCREATE]", + "fixture_hash": "0xb691a5747db7b3fbdbea23c3eaaa43ba970b93488736fcdec15ddb10e4aba648", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test_engine-RETURNCONTRACT]", + "fixture_hash": "0xae0a9fd1c9a3948cfb51bb0ca4b0d90f2b57739802193b80fb5fbdd28174a31f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_all_valid_immediates[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x2c62dbaba7169091d456b4b5c64b56c1d6110d62d6a7192aac7b998f2b282982", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_valid_immediates[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x749c291046220906e47db2f6f03a4e4a0484e9df8ee85d4d8f3e962050cffacd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_all_valid_immediates[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x72fbe7080090f9ee525c055df445906fd69f9bf5e3029612837488f26d716eb9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-2-to-0-so-0]", + "fixture_hash": "0xca05eee59d63cb02656fa6fc535af43e32c5bd3a2402ad8661a2f6e8ea9aeef5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-2-to-0-so-2]", + "fixture_hash": "0x9dc93af71e2db6dd4abeafc9b67b1fa3f22c15bf19dd695de1af53e27b89f481", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-2-to-0-so-4]", + "fixture_hash": "0xca285ec93f9e4c42ce26ccc1e2451699e7da040a43a29b740b2d8eb016bfc43", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-2-to-2-so-2]", + "fixture_hash": "0x5ef5edb1f8aae46ab4e562114f050e99b4aeb7623a11d93df8f697e892b3b774", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-2-to-2-so-4]", + "fixture_hash": "0x575d14fcd2ae454b39119cc92e27edf7ed56931d2b952694e12cbf5e0bb70640", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-2-to-4-so-4]", + "fixture_hash": "0x6ebaff499a3f5afc18a2deb7dd62c9e7ab1d77758053ec34650ce02c7a398b51", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-4-to-0-so-0]", + "fixture_hash": "0xf8d6ad99e092029afbe62bce1caab671fc843f953168eabcf670950e1d009559", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-4-to-0-so-2]", + "fixture_hash": "0x2d8dd4afafd7229bd8c9b5fb7ec4e03d8a5bf3231659c1d07c6139af95ab1c3a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-4-to-0-so-4]", + "fixture_hash": "0x263e86584a95419bd352aae162e82af166a6632acfe91d910ef515e3f2a079", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-4-to-2-so-2]", + "fixture_hash": "0xe674481a5b7543e4892e490db841f86989a2ef4ae6f644bcd93b7ed0cc12b028", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-4-to-2-so-4]", + "fixture_hash": "0x96f532d88861729cd589146856a133386edc3fae40ceeab2d5fd577f98fd1d89", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-less-stack-to-4-to-4-so-4]", + "fixture_hash": "0x8563bdfbe8095f7fbdf7a083ad841e0c4374bddc64c777b36ccbff76120dde34", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-0-to-0-so-0]", + "fixture_hash": "0xbfaaf04275db8a552663af407f5f4e2d3afae8f186df766d4556234f36a1c33b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-0-to-0-so-2]", + "fixture_hash": "0x469d625645c7e03ab24d6113fbb1c16743d445c658fd3594bcaeb258c77b7275", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-0-to-0-so-4]", + "fixture_hash": "0xd7de53b8be6e6fd170db0a0e9e1a4a99e8df5db97195f7322efcd7ccfb17f0ae", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-0-to-2-so-2]", + "fixture_hash": "0xa3272e2f50c5094b14fe30ba86bc9d79db7b450bb0704f722ebd40f85e1e51bf", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-0-to-2-so-4]", + "fixture_hash": "0xce1e8f78ab48ccac9bc86d5af42ee553ae27fa00417733b81a97762635e554c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-0-to-4-so-4]", + "fixture_hash": "0x7a7c94808766770e8c35687853f2e1a04c5399660f26f7922bfaccbce51350d5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-2-to-0-so-0]", + "fixture_hash": "0xd832ee0b7fc349267a8170fd01826e69e1a184ce34565a7b103ed1af5e39ad92", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-2-to-0-so-2]", + "fixture_hash": "0xb60351145b4c3771d7d7958aef7b758ec0688c97852d2df8cdd378c5100a2dfb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-2-to-0-so-4]", + "fixture_hash": "0x1b56e5600ab0281f1a64a28f068b6d1612e08ed7168a779849a141df776ab7af", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-2-to-2-so-2]", + "fixture_hash": "0x64c42ed9501b6f1ecb997bfddc5c1d94c9387f3dd7594db19a8c9a6b95f186e8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-2-to-2-so-4]", + "fixture_hash": "0x78abfcf5c347d954676f8c2b1a6df844f77240f3a7c3c12a3cabed9883731131", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-2-to-4-so-4]", + "fixture_hash": "0xfd8a957c0242c0f135d2e954968a3105fcd6e33aa88a9c3e7366864b15344772", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-4-to-0-so-0]", + "fixture_hash": "0x58b50d661233a91a728ee846f45f96c1b0bb1ebab83e682feb6433f3b3ef8a3c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-4-to-0-so-2]", + "fixture_hash": "0x5a981b264ca7490c8e6cc50c115afca187613cee025444e2e224bfa53bc00537", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-4-to-0-so-4]", + "fixture_hash": "0x9f27dc238831d83f4234bbea624030f08c30bd2c295e68f75ffa381f2328f491", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-4-to-2-so-2]", + "fixture_hash": "0x9d36e395fa472703f88e3e10e9c6c55ff46f0b3af4bdec6c67a46779b8452ae6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-4-to-2-so-4]", + "fixture_hash": "0x6eee31974732fb039bf91408387a2338faa1940b70cd15885f75d4fd09ec8013", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-same-stack-to-4-to-4-so-4]", + "fixture_hash": "0x5377ab4d5530cdbd5ab35b99105c583d43c61ad73e6a0a960cfe0535a523ba5c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-0-to-0-so-0]", + "fixture_hash": "0x4a58cf7b672d0ea3260bb653bfa8fadcbc98168b9f71bd6f38cae34a066ad04", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-0-to-0-so-2]", + "fixture_hash": "0x45efaa9b479b0ffcd6e89977d80e78efb5f7ba5f7d8e10c6faf7ca014737b81a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-0-to-0-so-4]", + "fixture_hash": "0x65fb0d52306c9cb44a6a90e6977138e4b5830d3cca95f674593f34c4539c3dd", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-0-to-2-so-2]", + "fixture_hash": "0x10ae84572ab6397328c713d07a164f536dd3375f056e696967edd246d0ac7220", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-0-to-2-so-4]", + "fixture_hash": "0xe8620409bb417fcd22b7fc3d8dfa038f4b1bd031ac5cf1ef1d21999cfe44dee9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-0-to-4-so-4]", + "fixture_hash": "0xfbe6cc270f0ec8851a084581f26ecd6c583269386622442401b4d9c6e8f01ba7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-2-to-0-so-0]", + "fixture_hash": "0x4134a58fc03a8dd03be5c253851e4d9adf287978aab5157756e3430d29033d13", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-2-to-0-so-2]", + "fixture_hash": "0x783ab7c1e7dbfa784dba862c4e0a531bc7576eed8a900ff8eae13bcb7fe097eb", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-2-to-0-so-4]", + "fixture_hash": "0x54a42eeebb602934003059a79239df41bc2c3218d84967ba84cb164ed18725b0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-2-to-2-so-2]", + "fixture_hash": "0x537983c705e1f03fbf7203a5020ddab224282dddf2f0d7b6b421d8a81585af17", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-2-to-2-so-4]", + "fixture_hash": "0xc906b6d73836fa576a5bb3bce898973d5557304d8e4b0230339eb685b089cdb6", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-2-to-4-so-4]", + "fixture_hash": "0xf8944afa13385abf84e4349e79ac4bbeb4ffc5094baa160eeb4310321f14ca5b", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-4-to-0-so-0]", + "fixture_hash": "0x44be6b13f81a0f4420d749e31579673a56cebec48f86fe26f90902a3c9bd4f65", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-4-to-0-so-2]", + "fixture_hash": "0x5dbbbdda5c1389ed4e4b03207b9001d11d06bf5d855552cf821307d980ef66", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-4-to-0-so-4]", + "fixture_hash": "0xe03ad8a1383943cd8f8b72bc99e3ad588751b76c94b239f500058fe341aa494a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-4-to-2-so-2]", + "fixture_hash": "0x57acadd2677b7f055ad97e4cd10493c723812edb02c4874b14246db977f6e750", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-4-to-2-so-4]", + "fixture_hash": "0x85b041a7f3c26c9d3476be3a377ff99448332c820a6a5226d488c34a95a8cfbc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test_engine-more-stack-to-4-to-4-so-4]", + "fixture_hash": "0x3a52e85dc60c633b49a49e69eae1e5d6f516914259a9cb29e5755aa5c5b8116d", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-0-ti-0]", + "fixture_hash": "0x7907d02551a9e391558c61150855515046a878cb4b815a4f1261575c4ebd0e41", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-0-ti-2]", + "fixture_hash": "0x95f09bd78402b1d002af9b62038371e608bcb79a93d9781cde575ac64ff870dc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-0-ti-4]", + "fixture_hash": "0x4eae2d0e05b0feae7cd925775a32fd9d30e2603b033d3b1032ec0fb2aec34375", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-2-ti-0]", + "fixture_hash": "0x2a41094d2193d1cdb1ce207bb4653b5e7810219a22bc2779d375f7a6ffe4b030", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-2-ti-2]", + "fixture_hash": "0x683b7fd2050704f94ddc473c1ab68b8af27e97f5c90b96a763ab420d907ab200", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-2-ti-4]", + "fixture_hash": "0x3dd77141aa7dd5c42741abdb2d842fcdf98a2296fba4a11076c8c5a0b2aabb0e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-4-ti-0]", + "fixture_hash": "0x386a8e65c873d537636e9feaf13a6891399ab4c5905c6b67c4640091f3006545", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-4-ti-2]", + "fixture_hash": "0xbc39fad17d15a39d59f4b508049aa4aa38279abcbcb83f34f22646fe4dde2e75", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test_engine-h-4-ti-4]", + "fixture_hash": "0xec39f3680294203586b315cc394c18374d4c69589106cf5b84644364a8f9ddc4", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-N-to-N]", + "fixture_hash": "0x19d66d32616a738834f36ca1f9e32901d68194a12bfb89fc863dbd6db0b08709", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-N-to-0]", + "fixture_hash": "0xb3bb3e06e0d02ee42f475ba998063bdcb6052b34f048f44e5bf2baedc84d83df", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-N-to-2]", + "fixture_hash": "0x4f7eded9c80b1882cdc00ab9687a342e6e9874a40d31fc5906a69aa08dadae1f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-N-to-4]", + "fixture_hash": "0x54207c02c208e4c39b51f345d85eba50dbc3e27ba93553ac6988f7b58b1cc4d5", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-N-to-127]", + "fixture_hash": "0x6db330475d7676df828a2ece2779bab89e58f043b0ae92861cc689a3fda0176c", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-0-to-N]", + "fixture_hash": "0xc7f3baeba1403acfb04c888c6c4964fe6cd46735cb416467484f0d68911be2d9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-0-to-0]", + "fixture_hash": "0xa9b1cf4e89c106fc716aa2acfe2e406f6f567634d1dd5ce45976da1c89874850", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-0-to-2]", + "fixture_hash": "0x4166d20e98c319b65c8246b24835e0ddee30a9dc62d709dc77d3330c3cde9977", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-0-to-4]", + "fixture_hash": "0xb55ef4021d38742e3921f6b2b77873d3bef6e7e5eec06c51ac813769d9a810c2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-0-to-127]", + "fixture_hash": "0xfd52cdd888f03c265d405e1ea8b463d4d1a08655349d5e66b69a14d0c3c22bc9", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-2-to-N]", + "fixture_hash": "0xe4f736a3691cab8fed1fb560185b105cd8018a23ea114d7698cefd29c90e4cc0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-2-to-0]", + "fixture_hash": "0x88af4bf82c00b2381594f87789f5d67aeb7a0d571e39c4f88f14921179471ab3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-2-to-2]", + "fixture_hash": "0x9fc836b6b32dc975cba3d7399b37f5c4bdb498be502edb0068f0cbc919760fbc", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-2-to-4]", + "fixture_hash": "0x9f37ef101606e6dcec0e58d32089a606962a30459897893fb9bb718f3a8a53af", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-2-to-127]", + "fixture_hash": "0xff9fee344646cdfe1f9cfa38d2fa510c0e16e6c663b063000d713104a72428d2", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-4-to-N]", + "fixture_hash": "0x1324db3b6b340c8f3b9ff8744f6f49dd1d6536a86a45ca29fde8567ae2a0b157", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-4-to-0]", + "fixture_hash": "0x36cbba7a771a52a6a1fe4a5b16fcc97fb2a0112e17f1023158b181ba0ee74198", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-4-to-2]", + "fixture_hash": "0x2e5546e45e24b9f7696390e7df8db30dd42eb5ec0cbed11ba9224bd1da7c28ed", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-4-to-4]", + "fixture_hash": "0x1dd9773030c6557441e350c5ad305a5b2874e562dcd8e3ee60b5f96399076f1a", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-4-to-127]", + "fixture_hash": "0x9e5bcbb53a25b48729e4f8ce1ea6e6517d9d8273a2bb01c0590cca1a17ec62e8", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-127-to-N]", + "fixture_hash": "0xbbe16fe09137d6dc348a503442f2acdce3c6357ed0d950243c0006105ae373ae", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-127-to-0]", + "fixture_hash": "0x585905349c4eb9287fb500d51995b07b91da939c7b3c474c338f477b4439fe27", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-127-to-2]", + "fixture_hash": "0x6aa02c6b503abb8d657924a5dedc4e41564cacc723249681fff53956da617675", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-127-to-4]", + "fixture_hash": "0x6502753fe7eac2ffbfd4c301c5f052781797f02b91cdc56c638a7a92957b70f0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test_engine-so-127-to-127]", + "fixture_hash": "0x92fc6d2119d3d573feb632bb26da7537f8019551395f0698903d0177102c6b29", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_way_too_large[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x476b6c76479d60c57f53facc4eb95bb0ed30ac9dd26e28d572640d6048d6020e", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_way_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xb7f408fd1ed0f6bfcac4703f05ed42eb51f89934f80a6f9a968aaa7a9b67563f", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_forward[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x8eb2b5450c86182d6f0431694fdbd83cb5c8863c9964c9a99bb55843d4cd1d20", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_too_large[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xd837b5bf70f74a37c0aa5576ad5006acccad3b18d7bd05578dee8d38ae8df6d7", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_callf_to_non_returning_section[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xd51400d5786a62d1fa5dd474f09c198c2ff748967597c82df6685fbee4485ba3", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/callf_to_non_returning_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_backward[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x735f3292ca4265b90b08d3f72637714b92d684f2ab7550bfd0ab320a35283e01", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xd9e7c665f7ee77108cbb97c463ed91e56fc57e8f9f1a8f57c5ceb8aeb8034c79", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x9af2a6a14652652ba117d97022965b5e11f6e2d79384e56e6eff4d1ebb2fc468", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x3f64ea9cd7730de8610c7581a94340266ed68591974eb1a8bb27bad796f23d22", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_nonexistent_section[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xa9e38c4b1725deaf538a1c0b93369759764ece09c61d753b6c05ecf5e585b5af", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_nonexistent_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_overflow[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xe208269488bb643290e32c2eee6e0752e24e72e82e7d56ac07cb924abdc55a38", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_overflow[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0xbcec7816fbf735952febe873de1094fbd8452653bfbf67d6a97bdff0f0c9b1a0", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_self[fork_CancunEIP7692-blockchain_test_engine]", + "fixture_hash": "0x21414e46ecc11a44b85732a70a64aed9eb19b683b290ff737a92ee61193f9e99", + "fork": "Prague", + "format": "blockchain_test_engine", + "json_path": "blockchain_tests_engine/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xec7855835023190db9696bd6d5e607a73482bfb9d0ca97ff6463ddd48a0e72ab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xd464db9754b629bc418dedc2dc73c6d1bbba1f51d8736889f7da68c04b6f46ec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x10943777ee6a22a3846e8aa6100c63804367302d9bb6c893810c4d1572e1e2c4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xd667f44022b07efa07863787fdcee460016ae436c997d28db77bbeb37b14227b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x63beaf83b12ad46e60d2d2f65ca228198a8ef8afe7f690feb77a3778bd12d64", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x13f76496226e77df073ab7afd709a3cde0f6551e46a406d22db42a8711ef0368", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xfb927ec48418ac63d5346f47a895e6fa9ef1fc44f6045d1925ea9e54c846c980", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xb5c6548ba15dd14a6621cf7883a6c24eb45c938ebc1259bdd1f8dfb3ddd6c98", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xbc23cff3d3c0fcd978e7f9f5646e58f73a10671554c7dbb088f21af2c0555fb6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xd417fdc6f25297a3a95112f6f8397c702b2eb3685d81c965fb7e21c217233d35", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x7d71bb49ed66f243b43483c2d5f8afdf0bb2e96fe69a523635cae3cd38852ead", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x95a2345a793f4955a737abe3eb7906b88081314f494327086d02810c67fd5153", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x54114e26eef85352ce64e53618f3d9ea5b0244580b5348367db5633e15e3c43f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x814ed9948590c7ebb438e9572e235c5a09ca5d71fef7594cf832c0b855f2909c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xb0604e7e52f022c86f464b5ea9f71c3f9398b3a8a4ec76c4fec3f9545387126a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x852e903a9c53420cd7388aa8d26e784c77e370524026654c8a317b883a27c0d2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x925fd43bbeff012289b3e5fda4ced1fb544c0e86fd67a7e24b54dbd7c44aa12", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x8653839865fd7ddd2972067d813d3daf194d891b95809d0830bd8c66fb58fb57", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x9796d0190cf870a03365e62d0d5e6989347320c753230ba908aefa76ae3cd903", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x26817e6f5f13a9882a5320b12ac94bd227effea9a291321e123936814779ab7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xa6f636d2a5ea0de452b5c88d9d2f1cc5ad59ebc01693d28324314d46ea76dbe2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xe8f82d9a543f0385f102128707a9bbc66a83a678771d685866f5ff804f5aaafe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xb5e12be8fef689a6e41217effb23bfdcc82a544c0429484c1418675ec6d021b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xad788156703480ba47fd3f06f969201738a6191bb4d26bd114816c37a19ae16e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xe01d22436562e9c98dcf55e15d38f385d972340f02f15c7f9e8a6cc19e01e9b7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xa5a1d082818780f550592835c40936141674395769d18bfeb2f087ea4d8f59a6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xb31d6e794ec6f277a2a1fd3eb44a4de4dedcc996273dc16b042ed9badc277042", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x5c15933b602e9b71e4d59182b5c4251be843192857f77723282a9e53dce71a81", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x3dfc130ab1fb6c7c87e75b065b2492c12fb185a647c9ef5bababd47418b68e87", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x8ce6ed9f10341a20532483f5f8db0a6ff6ec15745b10766f184f3f6f3bf1b649", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xdc44c55cc943d30bcc946f082cb14c019a0ec8fb710a4124fa448904a154258b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x41f3418b04a6ed0f1f92883caeea5e5d19b51d989876671c22012b4601451855", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x5eb5e897566a127afec21605e008ad509b3535f2675e74c2afbd9dd2c29f05de", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x4196851456afb081a754e8892182082a8a854a8a72d53ea56d9aff9283d1ee04", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x2dcdcf3e4dd8e5e1f24da630f7bd3a8055970b4bc54ede2fceec6e06fca17244", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x1d1664e81b397702d5056db06082e60060584b6b10fbc72f12122cb93a78181f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x66729ef1050fdc4d3947a62f60781758a9fd51635a693fab442b214f51d27482", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x36697deb335a825d3f059782d2ed4769d5c0b4c205311b95e2b8e3bc572f1063", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xd10115b3f586030a345be9ca07b83035d8fb87d37ce5445e68d08ddc54626b62", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xbccf33d2d35d0d50483fe519eca1eba0f2831e64bc0a4132b8f1ae9b072c2425", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xf753408e04b48391ed9a518653d07d4315d7b16493498ccc18446ab1e5c1e94e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xb40a883f35dd8821c85beaf316cb1d8860f2f72ce667062b8ebe95f1b478db84", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x9d6962c74fcdcbd916e333d3a0d9c862610d9cbb8180c7cde1852d798289d9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x5acace86cf64c8e47c29b5f8ff48040814027ac53c552fc39c649f3928e13495", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xa421cd819fcb0d532cb120aff150590582f6e25101886a2e94b3a1dc12e6954f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x88103831e666fb01c098fcd80bb3f5c4edc139e0fec0d509f7c6902ce69e8eb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xae46189bbcfd485ebaa79f9abd03619c8ac2d32e2660622c301f7a78d8524baf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x7e2010ecc49f5020ef3f3a8263e96e38003888cb69492e22f45bf16bb6d34481", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x4610da6fb2d75caa1bea22523c27643884c774c3ed497d0aa8c8296a093f2386", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xdb9e6df5b85a0e5165023a161dd65ded36a505fd6ff90f7351e395bdf6809078", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x362620bced2bc5d363193f8648d574cf7ad5feb3e8aef598e93ece2f2f4aeb7a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x5a8aced6e03e973c3a31b54b21d9054c02d4ec2395f55e0911c13c135cbc5787", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x8e1a1f0a7075a2b8a69a54cb918dd32bc091c2d73bb21d1c1e88965cdc3c4782", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x78f160abaf209b0d9dc45b8b9b2e01439001f8e90f337841d955d29733bec5ea", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xb5e7aaa5758797fdd2b7fac1502c33dba7cea45849dae51dfab932456ff5161b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xa4353210b5fc84ec67f5e2f74e521642033b9aba4ed97304ddf8653cd060b5f3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xbdda5e8d94c1fe6328d09cf6d3a7bd548a3ed81d6c7b6802110aebb5cdafafd9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x6cac9c6336e57df53dcac77a98b18c1d3632c0da1e681144853bd183d354be93", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xbe8780653f6fde8c318ed93a968c5579175c8c4dac84c76c70029f2cfda45c6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xd073e347e51ad9c24f1590123237f0b4acf2ee7ab4a46c08dde6081ab689ade2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xc9398f7dbd4eab4f1486e708d5659024ef1fa8deefce2c01e62e61347ff9ddab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x6c63e526acb854f52e74ddbb5acdc1b1fb3dbef16d180df93e03c3626dae4a8b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x874e82aa70bf4c3a7516d4e803b8b57f08dcc4718e56f4ac3951af8316021fff", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x8e99688f081bedf0ccada2d8bc7af818572d0b53be21941999a2859db77140af", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xfa531d683f5187a6079f659dc23e99ddea5f5a43f46bcf04537ea464726c61d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xee303142293c84dc5d1b19fea5f47259c7ae1c1be5bfafe926c730d372585634", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xdd331b5ff07ae3c36a34b79cca76144788334858bb17ceb9896a6ee6c08c7045", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xb4e8d86943ee82e6c1f599fc26ee165937ea4d6bad4ca7e49331be55fb5649fd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xe92269f91c417d85bea9d516cefb80e7edbd8d0af4f4c7d118659e57273b27e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xa385c1349598e0129ae0db6b592be68ecd914b0d43ec8b6812c212d1f992f813", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xc071196b4f418bd7026904492919c876631f065250d0b101c62d2e22a3f705f4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xabd783b8fa4e373c7474769912f257d9cf9c1694891fe2a24297dceff8438bf6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x7a578eaa8102311bd110f6a4b058bb40d4837e3a36b12615c3856d7e95f5ff16", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x4537eba2d05883b69ca2f0132696a8fd0c64969b48057d5924fb0ceaa16c0715", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x545d926adf864744e30d3e1259e880b7a78d34993f21f0c1cbded72fcd3570a3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xcaedaeec965f988c243e93dc591a8fd39f296ad91fa3dfae3ffc83d66eadfe20", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x8449135c85acd18672172d804ece6db594db9f6637b7f17c7a2fd37c7433483", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x688b82820956c89efb79a02dd0c417252e46bb95c470682bb20d54932f1c1647", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x315e83ab9e4640b8a56aa1adf801b14591b5a1f66a2b6f19fd733508251d1a2d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x8b322a572141c98fbd07be68651171115408ee06df23389c59f3d6b7c3d04e78", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x4a3ce566cb4c76dbab8f6ef1323d55abb07240b8af93b70c40197671cea14b98", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xdd031bd702d3308f8b600ca1872570095ace10c2224f332779dc7d85d70ed061", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xb90394f17857fbd36b2b3d140b3ec65f962338c1fe56701716dbee9c5935e2e9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xcca7348bac0f49236d5c904e3c0ac1fd85fd85bc2ef4e1eebdc8b18157432db2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xa502df60587d6ae92ef369db16434ece46fa355a534d4b11c3a1832eaa15d959", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xece62f681025e57966392c98fbc06bdb2412417066592d85f0fd38e180677b55", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xda6ab395644a8cfb09ffeedb2709276704cc0cc399feacf7941bd7db4b6b7961", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x793d0adca80df1858574fa5531c83abb86be16b50abba27a395a87790135745b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x194528dd1ebfc79df5390e7ddbadeb0437085f60e86524b4a655525bf13e1634", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xb40848746808cca180f6e50b9a18d0e93a183c625eb24b96944a1d2fb135741e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x4e9c6da15982070071ec15e41b64b4c1d5cbb28b9ec8c176b996ed8121986c89", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x5d4b08900e67c0bd0e77a1b31d040ca707f733e1e6dafef33e942f760be5dfab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xe8d0796eae1e2e45a789443a509f8ee33952c1b077aaa91468ccd6ee45f6b5b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xe59e16732ddf8eeab6477ee11cbce5d66e0e9c672e96eb6f12deec01d99544c1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x187829b47745df0ebf4986f6ae38396a8036550c895bdbfac790097b997899f5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x4bd4c473f4a17e6a181d8f1fa4949916997ad34ae1f8fd52a5843186f41dfc63", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xc02977f82b357be97aac870e3f6bb694b15b35b3d274a21d56f994f685c54b63", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0xf58345ec85f11b718a3c3120528831a159a6ec0897200f286528c8f5263380d6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x2f96786277969f942b38b51e3ebf26eef0a0f6d41302b9c943ce9d748c91d35a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xc1efbd55138c0d76af25a66ff92e20969e08b37e4ccb83f7325b785d1de127ef", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x505840fc71d0af4a329b3ed941bf09e80f643a97d0befea69518438308bf411a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x3a6c1ab3f646e6ae34b690bc9a5ef297cfd171bcace40cf567d8bf0bd53ebd76", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x3494d96ff8e6cf8935ce4a4d52a0dd9a4256c9065175d2607f64ed76dc6923a7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x35ca7ad476f0552ca351b881827744de306069277411d2b3f95f26ae9f0df1b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xd0f75aa56005c5ec0eecab0dffe2778746a4a7c6bb81d5dc4899276a0514110", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x8f88654bb06602657c22953c0dab56c229b0ddcb9c5f39848d1ca22acbe3ef15", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x41e98280efd0e52cbd67d79372f7529ba8485ad20059bd71ca86884b30a1264d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x5042767ac02442390c159c7bfd5cab8d621c4727906c334e5527ec2144294144", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x2f4c8e5d833f01c20c1cfa10223c7c2b7ba800f35db062c766c2bfcd95a16503", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x5f44e3839c5a8adf4e05445e28939b2e0d0ab4e6b3d3af1f64e66d37fa7be662", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xdba3edd5d385799aaa036e01947acaa3157f7dc60386ab173bd67d11d08236a1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xaa03f6f4e5fd444145c32c745bee272783c7953aec767c0613e4fff93321057b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x1899d779369b57157fd5eee8cc19f3d65e0bf155746f7c7bd1be1959f2414f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x16e850c539d1202776676262dc113773fdbe07082236dcb49782cd9bd9aef3bd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xf89d6831d00cc3bfd28c89e63d47f833c0d7d1213f7fb62aed9cdeb8a936673a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x9fceaf340647aff4e0649bfe4b502d3aa7040c254d6af77e09fb8dfdb759c40d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x45219983ad47d4c48cf7b43bc6ba120c9faf386ab7b5c714c6f7ba32835d8f81", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x194a22a2b48f802646cb18e88628d0bc6ac56b9651cbaa1a6165ce791bfd1039", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x58589d47e6acdf1fbc66c2199a8bc9eb7757e84907afde0b17002f6085caadf5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xd27ed4861025e7a76c31bdaac170170bc0df5eb4c3b42989c23c66c912d7d02", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xe4cc1a66a25a5327e4254eb2d86e695f7d1cddc8c48a4c07dea9b365fd814058", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x9d513a6fcd4928841213cc7aa62d0610d104fee4271e295490cc46f8f42fa74f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x38eeda3489d4de6271b4e1d9a84affac32a99c42c4bb35101bb764f58f6ab0c1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x24ee390bb8724fb7e06f9380c6a1ac17313cc14fc390934be11554d3b3b70289", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xf99fb9b047406a0635aaf063cdfe93ddbd4585330736feaa31d5a31ce708c9dc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x8bd83d159a8d91ac7b4d165349a4bbf0218006ac42e4420d9910db3c015b53ce", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x1d1c58e408a1212aa49e90c278ee549f9bd069715a25ff8ec9a62c8ef7f73d97", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x2e8c10e997f19d960cea75c81edaae73dde987744a15137377e3431405a6ea1f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x4a99a142d151ee02cfab76c312acd92cfe7ebfae6f34f3b19fece632014a93c4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x989b9968fca6018bfda629b3a12fd60de386ad4889a3d7b36b79fb50461820b5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x43cec7383cbee282edd32868ee4d010f7e69b9d65bbbf5f36dcdc6b5162cd64", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xc284a9634ebe714cf7eba939aa19f771f5c3092c9855bd5e518676fdfbab7141", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xa3b965c8bfc88aca50e4ff5cb975aa55839cc2d769c8eab34a76b226630c3cb9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xd80f25ca60c15cd41227ed561043369e8db7959298355cfdddbd5359eb9ecdec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xa7f736634e778eb9bcf0b060001f902eb86ef23284539aac114ce49289879fec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x1bd75a7b8408fbe6c095517f2be8a68ea2ba6cbd0334a227d9f916aa43cdde84", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xbc1b8f72507ca44150ed146daf6b2999f904bd63513bfeead76029eb34dc8542", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x373f4fe3257de3014130378b1ef50621aa79b4abfa0c25f05b37a0647a158327", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xb3ae35a8f56fd0a9b4627b312ca2d07a044704794b57fa4431b9546b616bfd76", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x7015ec51c040254fcecdad9e3cbc77f15a1b42244b442aee50d0d6555b5e6fba", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x3939ce1cbf15eaf4c79ef880aa195c7989ba0923f133b8fc621eccea7968aa5f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x44e92a2d158b7878b23e106fcf1533b3af970c23c2783a85223e53a6fb58ab2c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x829c70dc99d4e5b9d67c624b746eb6e1eb22feb36febfba468d34a10b056d511", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xddcb2e51437cd7f658ed0da5c752f2d7862d1c762f0c2f4a8e7b51a48a3b304b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x7bcb4c6f4a962b0473d9d26e21c0fe0975205e7c4339b55311a93696e0769b53", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xbcbc12e9f8ca866179c11f00738ec4f346b5827d9d901032c65de77c89086fb1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xb289f9d464fe16aa9ef46e2b502483e6303ac6a3b05f8d5133a9c42968358a52", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x9434ed60757471cb127e76332d485a161abfc253caf006df2a4beff2eac59f95", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x7db191c051fbcdb2d99e1d17d748de86be5e7c64436a4166e230a7fce8cfda5e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x5e8a465a50fa6da1bfdc4a57cd72abe794ddad5a72e53c0bae79b9d0fc9ae458", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xe04c00d05a25886499b0f3da9464d612471289c996219af25a32f16c395ffc88", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x3f9a6e13e74e2dd1de778d2756b963cb44ad434cdb0cb937ea10b2b3243f3be0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xc90c4c11729f24a68a4ccf2ae85a248b07f8225e2e0e1a83ea47bb01fc454774", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xf79f5f35558b2b00aeaed3fd15d8b0f925288b88cf9cc3b8ae09095d1fe65dd3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x2c652c62bf72186139f5b4a51810672695d1f2724043f5062df24a5368b47e48", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xdc77bd9fb8e9f0e7965dfca7bd459803b191e02c27f562025564fc515c935f9c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x87cfe928b131ca0e383cffc441c85545f667ed6e5122c183f6b00cf50f42efcb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0xe81cb8b88c205c77a236a40b7ecfa19064bebd80b1f3b05a1971274d65d5403d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xb2563b77ac2fc3ef1cfef1a76c726e4f5bf430d0e48f9dedf4c6764717c16af1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x3a7da4445753eeaa5cd2f0568f67ed3038715c8c4f4a42916e7c0bd375995989", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x5961d381a7098a081b00b3ff868b4a4e36c240960f3d4686002905883a1c5932", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xed22b5b02016ccfc4820a6d176f8699a32fac1ecc4950ddffb5e0dd0aceb0895", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xcd336f26fa4db6d0c71dfdb26bd592ff1baa00eee99f486c7a2c1f622ad94449", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xc7b63ae44c7de5ed639217d65f10d5c635d0e80ef474cce9a858f5c70e5e2260", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0xf04581c4bdac249c03fea7812176858c5cffaa4fb5c5cad57ee5c205f9a62b28", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x465bded3dd49f46cb3f2d12c0819f6b6490daca63019e2ab03914cfa57c035c9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xe8da5d6c8349eeeed0c0342d736e9cf34185b27f7fe96b416eab3c3d7a3e93c4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xa84b691e2454fc9815cd3a0472e39ed1971a41d60c4d892f26854abf7e958f82", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x1d8943daa77ba38273694a30078854ccf4728748b0992a27f0d56190a8a25831", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xeefe6f70f793eff35e8d12c9f3196e3b76a755aa425f7287f964d21dc7e1d367", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x83664dc94f1165356ff6160d8374f2b1a2f5da19d2f98b8c63e79b07e6a65cbc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-empty_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x965501ad179fbb53fc7e3731f5b4ea60cbd0614d55e15b0da80fe37ce2f8c674", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xcc88768781eef75faa4db8c0f140554514d7d59062ae46277a9bdea2e83e3c85", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xf4e3785b5874d23923499cd2044e3a4444805687330577d70c8956a71c6ad750", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xece77cd04b74ff882eb7b1cdb37d8a9315a0a3faf58ebd0ef40bf634ef7abf0b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x9ad5b0c8c8252d7b6645079934f7db276534416211d3b49f63e5e62eca31c058", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x49e973da8b78316ed6e6efe11296aa91b235a160963348fc10da8611f2545583", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x7117eca915b2ddcdca9623fa73afc541d2e4c8d3063b97d670c8a48705a7592c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x82ae2e8bd56b847369c84b5c0d62f45d94620a03c9ed2dd747979d64cf2ed03b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x2c78c5562b3ed870348883728342e3bdd123bb8d4626a64d3c760f2f65a5fe20", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x2ac37bcb1af74d7a426d223828ca133c8e826fa55943f3d34c6466034d46dd11", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xc65869cd4bd6b7e4a7f809e22dda689f814d3cb826dfa89f3d6f37901f91359", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x283038ce18ee08f334b6ba747ae653ae8f250d75f01e17e20b1863eabcdb7a47", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-byte_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x52722b229c34b87125aa7e5041638bde5d5e8e29ec14afe08f2a67e45741fbfa", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x9b11b757316c085bb32e4a692565ce393860b98b224531e0e19b30fc9a3f372f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xcfd901d0a401bcb4cfd147c62096210b3f4d2314cfd3bc86d8dd600e4b4a8083", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xe412c2e6c2d2ffcc157803e88e19ae7dc201636bdc37339a96d4fb12626e6419", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x691257b6f5eeb3a0889f21efffb55a4cc2397eede3b130b8ae690cd27f34af7c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x5c3877cef5ddcd2a3e1415aff94c025844b22dbfac11cff24b80a885bc7cdf95", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x68e693b701622186a1effaead6a1a169996a31cbb570ba8f8e3204195f9ea305", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x6a7fad38d90b921f0da3f12f88e2a08cf22e59fb2e4a3dc7b2d6eb809f021ef9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x598f00e3489af3e21cab8104ad5797dee88214db1e49e98a5f9860e3c6316258", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xb8a05cc11066d2c6ccc2706dde512fb2b2745c57e0dce88d023303986aca0642", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xc5d8f58ae15a8765095baf8371e45eee1b835d83cad01f478e0603b525ca4d51", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x81987e6feec883d1a8bbc319b82a24e0754c992627f4aec21c050da6155536d3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-word_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x2c6eafce1f3c34233a9c892c72f217c5e641454b87d61af0b4f51a4571aa2a25", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xeb3f58f21c8a4e433bc8b972fbd6f6362abf02db165ca27524c9d0c5cd09a53a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x4b0448c4944a368ec7fca6646d0b798f1a6132d243e59c170811de7f59f91843", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x9e5cee63a10b6ad7b666b4c6f1e8219ce570bb0f08889cd0d99b1eac6001f8c3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xfcfda620f760ae729ca2289c71b9edf36fc312ac24a198a6a244d857850f5a45", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x99ca1c1b67a567ed0263933398f335204eecb76c14c12e6296abac49d7c56d32", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0xb4b1f4233a0bb8dc1e4629d1e3d644cec6c619fe732518682a8134aaf1ac36c9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xb71c2b9679e9bc991c74a3257fa71c655defeefd230812f3d63c11a13943a750", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xa049899eb65b2a35e2cac2621e2a33249df20fcc3991d6878b5c12a5a067499d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xeabbf196a14d92442c797eb395e3fcd771dba1a7e134d0a8ee03439ac6604d22", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x668b1d7b0e9be226d123ebae0c4e4cc198afd1aec5f917526386374cb540476b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x28e1c2da7471566eddce0fd74ecd1a2062cf716138c1919c272417e3fdcdc1a9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-large_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x70f4aecc3add598fb928f2f0503a5b1b585bbdaed56b54f99f3a0e7e802e2d3b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-empty_zero]", + "fixture_hash": "0x334f9221bbbe921624e8135418fd29b7d198a9e3f8eb2f2a07ac8574692e6c39", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-short_zero]", + "fixture_hash": "0xe23dada71d298b41e3a75f9f3720dce1eaeb6fd4714d4db2ba3e72d54781add7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-exact_zero]", + "fixture_hash": "0xeffb168df680f0b6986f783209393477818f54b5b33a2e72ad4a049b4c115921", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-large_zero]", + "fixture_hash": "0xf6210788743499de2e84b74c21dc4ffbab23eceecd4f745891fe8f4614fd23f5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-empty_32]", + "fixture_hash": "0x9e06c32ecfd9c1dc82408209142ff24d0fa58406afbde0f31197f7c57ffe13df", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-short_32]", + "fixture_hash": "0x640985684315cd56493a00e953c4082b9942252f25c841ed8e81c208e0749172", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-exact_32]", + "fixture_hash": "0x860b60e2e24e6ee2647788014503ddee5fec902587f7ab43bf7050527041d9f4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-large_32]", + "fixture_hash": "0x175900d772347c6488ba3734b9120955438a7e2a4058d2e8b6d6960421fd5c2e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-empty_23k]", + "fixture_hash": "0x69995438824cdafc0069acc9d540b344ad5c2b66a499403687640dfcf9237b9a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-short_23k]", + "fixture_hash": "0x7943bbd88b4d3df113530acd828b1faa22e121b7b45e7d7ee55e12f0a05a5ce9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-exact_23k]", + "fixture_hash": "0xa810dea54c6f4081b649efb3db721595292328c8399bc2a8a73e29c1ec9418ba", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-state_test-large_23k]", + "fixture_hash": "0x980f24a1ae2f9510e0ada12c21a8dcef8b72b4e528d164de7561c446b207c85b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-state_test-EOFCREATE/RETURNCONTRACT]", + "fixture_hash": "0x9137a57ede7571372c002cb4f7402a49f01b689a2068678ebd7d245580cc7152", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-state_test-RETURNCONTRACT/STOP]", + "fixture_hash": "0x1c9fbefeca173455895076875b5b7857b813402bb1fe1bc551c8367222e98b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-state_test-RETURNCONTRACT/RETURN]", + "fixture_hash": "0xf5c6af4ce8cf46c48da446e24b96ced3459734c4f3e6272dc4278330caa89629", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-state_test-EOFCREATE/REVERT]", + "fixture_hash": "0x463321ef2673c5d4a29dbace9db24daed87afa82d53f8bccbb101ded7325b667", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-state_test-RETURNCONTRACT/REVERT]", + "fixture_hash": "0x5079a0c0fc35bd7f85f09dec17e2603df7f4e648d87a535fe7a6bd8029b53b99", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_deployed[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x9137a57ede7571372c002cb4f7402a49f01b689a2068678ebd7d245580cc7152", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_deployed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_creation[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x1c9fbefeca173455895076875b5b7857b813402bb1fe1bc551c8367222e98b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_creation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-state_test-eofcreate]", + "fixture_hash": "0x463321ef2673c5d4a29dbace9db24daed87afa82d53f8bccbb101ded7325b667", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-state_test-returncontract]", + "fixture_hash": "0x5079a0c0fc35bd7f85f09dec17e2603df7f4e648d87a535fe7a6bd8029b53b99", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-state_test-deploy_eof_initcontainer-CREATE]", + "fixture_hash": "0x5972a2f8c3d9f7cd4340e4325541495080f942e962a628a0048640f147007e44", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-state_test-deploy_eof_initcontainer-CREATE2]", + "fixture_hash": "0xb6a38cade21528a0892704a6113e132ce30cdc8e178953a86ee48fe6fa93577b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-state_test-deploy_eof_container-CREATE]", + "fixture_hash": "0xce7aea9dc3201ce2ee9a66098afc8a3b35973768396b961ecea1de23af628b7a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-state_test-deploy_eof_container-CREATE2]", + "fixture_hash": "0x56086fd238f543d1643a6d457c0cef3b155cdc7dea44f9f14e4136e8a24b9a04", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-state_test-deploy_eof_initcontainer-CREATE]", + "fixture_hash": "0x7797b654c5898ec340b06f8ff5a374576f85dba2390dfb0947cf693b6044e5b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-state_test-deploy_eof_initcontainer-CREATE2]", + "fixture_hash": "0xb615f1d0b11d66a77269570c7bbedb2bd5871fbea0368f303930e248eb541c77", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-state_test-deploy_eof_container-CREATE]", + "fixture_hash": "0xa0ae1148588d5473dacfc0dd5234c9fb14499a865c75a710ab0a2abb0f29dbe0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-state_test-deploy_eof_container-CREATE2]", + "fixture_hash": "0xea5517b8d252afffea8e290bfd72ef356c48d7eb6d9a9543e6856aea20e7f77c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-state_test-maxcode]", + "fixture_hash": "0xbaaed6ba77433a1fa973a367a94e654316317e4575ff97959b72dfee60a1a324", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-state_test-overmaxcode]", + "fixture_hash": "0x78a78c1caf8cfefb5038dbb918b96d02257eea20cece6da8f0068132f1c541a3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-state_test-almost64k]", + "fixture_hash": "0xad3bbe083c802f8e085000b92d979edd8d80e3719c0c8c489ea2ca8fbeba4f52", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-state_test-64k-1]", + "fixture_hash": "0x8a7c9e80b77b6766dad4340da7358021f68f447b489a162b3a7de31ae2fcc1b6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-state_test-64k]", + "fixture_hash": "0x8ad672e3588e7f5419b83a32cbba3bd8f8b19fa5ac1f917da799c27524b8cc9d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-state_test-over64k]", + "fixture_hash": "0x617a2810aacad5fd0cbb26f1e5fbf57648d3aa37c8832ceb9979616a215736c2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_revert[fork_CancunEIP7692-state_test-empty]", + "fixture_hash": "0x655e10b0b34e819a665ebf867ab87b56b16ea24d13b03742c65981e0ae27b99", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_revert.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_revert[fork_CancunEIP7692-state_test-Error(string)]", + "fixture_hash": "0xdeb24cb12fffcff36f0aeb6c74cbb5e936fd12a83d860c39c145948f1731bb5b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_revert.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_initcode_gas[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xf0f1131608a6fc46c479499429684ee280c6c63f8eb64f778b46bdf7f286ff58", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_initcode_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_aborts[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xc0f48d955da324e0ad47313be6cbe4f56be035c0bd23fdcaaf8d3e09a3ba0c26", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_aborts.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-working_initcode-endowment_0-opcode_STATICCALL]", + "fixture_hash": "0x15d320556d593419fa9a6f08ad00c8dfb5161407557d020c4c195a2a549c1bb4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-working_initcode-endowment_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xcf9d0f13a46d17f95fedf8e5286c9f8344b3d39379043d6006682e31f35303b0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-working_initcode-endowment_1-opcode_STATICCALL]", + "fixture_hash": "0x667307fc5f65045d1a5d17868ce547b1d0a8e940acc0aa2d52468f64c5e7b950", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-working_initcode-endowment_1-opcode_EXTSTATICCALL]", + "fixture_hash": "0x812df5165e55ed91166064a1e3e9526d1abc19ef575e2f71dbaa51ef0ada3c0c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-aborting_code-endowment_0-opcode_STATICCALL]", + "fixture_hash": "0xb315c1be16130457e913c3f5cdf1af8ee9c8e53fff81202c73f82befbfeacfaf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-aborting_code-endowment_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe64056c75ad2d12ea3f8c4010ebec29c6503a0a562b24cf791c42a42f239712e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-aborting_code-endowment_1-opcode_STATICCALL]", + "fixture_hash": "0x16db88ef70a8001603e2e6b4af5f49ee47e429f6c29ead364719095298c97ee7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-state_test-aborting_code-endowment_1-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5af3c0f3daf6d9583cd8d5748812fe5923f43173698cfe522721fe321d12021a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-state_test-call_fails-opcode_EXTCALL]", + "fixture_hash": "0x9745135ef83d96d1e2c9d8b1874246193bf181821bcf1db4a315d724b0616a5f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-state_test-call_fails-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x301cdadadba200667ba97b9b72016de1025f5710893e823e9681f954cbb3fe3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-state_test-create_fails-opcode_EXTCALL]", + "fixture_hash": "0x5a32d847dff44f8a04f089c09f1916c7411b9b7e88a235804d7357614b6584ce", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-state_test-create_fails-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x10fbed12d4b6c576368d17b00a0656dcca4543e47a1d73a7e6c4afba54fc4217", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_insufficient_stipend[fork_CancunEIP7692-state_test-1_wei]", + "fixture_hash": "0xdb0a49e5346c45dc8e0e92b8534407c2c4f3f402baee4bd90f5ea5a41266ba73", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_insufficient_stipend.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_insufficient_stipend[fork_CancunEIP7692-state_test-1_gwei]", + "fixture_hash": "0xa0d47d034b9ac7642cc54c643d9cdc5a8f2bbe39d5b5eb16fa22e5d99980bc55", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_insufficient_stipend.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_returncontract_auxdata_gas[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x78e2f5f88e4815c5e66f3e2beb24e9d96546f7976869a010c124c54d3ecf0160", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_returncontract_auxdata_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-state_test-large]", + "fixture_hash": "0xee47ef7a355abc39e428076a1a3792dc999a2831a6c17eca549f33d001243563", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-state_test-max]", + "fixture_hash": "0x4bbc9aa3b5f176fbb85f85f16c0ca5315e3a24e828db6219239f3b032d514713", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-state_test-overmax]", + "fixture_hash": "0x27f5de1959c3cf2a351dd58cb50df6484c0b9816a683e1a61ceae68aeedcacdf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-state_test-initcodemax]", + "fixture_hash": "0xf2ae6d4110626477dfcb967c7e8c9e7ff76194bd046d90693116f72b6a3e44be", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_gas_memory_expansion[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x6273b228802ee2e20a421f47de153852176e4b783b437034b745523ba53bc125", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_gas_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_then_call[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x11311d2f5a5fe5b8e6ac9ccd7913d8e28337195895d86f5e984e67b2716e1b9c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_then_call.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_calldata[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xc49cdea5c4305a483b1dcea561df82b56d2ae5d79b4682dc3698849b13aabd38", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/calldata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_address_collision[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x6a9ac5848f806ee75536f96f22f28b07e955dd5ba39463afc2194c1e7919f045", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/address_collision.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_in_initcode_reverts[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x19c114780894eb7bd2ec778dbc3d8e9bf465e2946616f0671a2a6bb252d4ef98", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_in_initcode_reverts.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-state_test-zero]", + "fixture_hash": "0x4ad27bf10604b11dc19e19fa8d9d4daef70e3593051d8fb494a29090b8a755df", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-state_test-short]", + "fixture_hash": "0x7e03b18a4b298057512732f59b2f3832403a04263dd01087bea80dd572cce850", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-state_test-one_byte_short]", + "fixture_hash": "0x2926f0c24f04976c4f6960f950bf8f098a49cde1e1d975c5f26a3d53d3db4645", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-state_test-exact]", + "fixture_hash": "0xabeb0642ba5a2a1f28c3785c2085461957b416dd0c868cae0e070da83f0ff3a3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-state_test-one_byte_long]", + "fixture_hash": "0xffef03e4b3f2c2cd633ebe1831e97096723a55556db99d6c24d4d542712e5bd2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-state_test-extra]", + "fixture_hash": "0x17f4354c451116c0376237b688cbce0e8b862ad8490f919f0666ed264c650e66", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_return_data_cleared[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x5c07774f8bd77d22a1cbb4de949091c7a65968be0c15ed8f348b3f1e004e2a22", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/return_data_cleared.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_in_initcode[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xcf58b74259cd73e0b114accb676ada0a6d9dd876cc461517aa8b75ce5fcf2779", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_in_initcode.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_revert_eof_returndata[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x3efdd3db59874c752b6ffefa0f5e42e581a442217df1a9c075d17b83dd05aa6b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_revert_eof_returndata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_simple_eofcreate[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x5cdf83ec52c899baca86fdc254597067f754456024da51a4267f0e7f7826a28", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/simple_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-empty-opcode_EXTCALL]", + "fixture_hash": "0x2993ebe31a21a1ddf3174c5426dc2dfe9b7f7c198d04838a069817db4c21ec45", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-empty-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9dd91d308603c5f7e1817a58d079b796a871ae736e5ce3ca35b2491fb09477b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-empty-opcode_EXTSTATICCALL]", + "fixture_hash": "0x391deab75621a78b320e397afb6c6a7f3c099631e2a5b19e73cded83f6d21cee", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOA-opcode_EXTCALL]", + "fixture_hash": "0x9d8b117d7d3bd3993530f04adde7253bce2d3cb58c790166c0fafdffc2155214", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOA-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc4a619e55412eb7177ee7cc1fc88f592467c89804cdb4ae5e127d0a88df5e3f9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOA-opcode_EXTSTATICCALL]", + "fixture_hash": "0x99e347da1638abe7e7ed1ab5fba6909db10644e36c28099ab883bf7c6494656c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-LegacyContract-opcode_EXTCALL]", + "fixture_hash": "0x1f669f20dae885fb640d2e0b3a0a1992438d113e130a6b5b26069ed91b0fe4a2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-LegacyContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xbf04eb610876cb2f664c93ee1add53ff9848015f42b980c1bf10441bda3d0e0d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-LegacyContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xbaf16d6d969750e09badb2278487b94ac43d52f862595787af966f9755ce706c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOFContract-opcode_EXTCALL]", + "fixture_hash": "0xc4f014ecce35686bdc6c70ce9225a49912b2b3d0aa1bfa3e692f40f3665513b0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOFContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x737ae88d2f5d34d82a89554f06dacf308cad583bac3154dcd304a932cc492991", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOFContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7038968fa84c1b69a055439b0fc24d4919c30fc0cb431c6c3bf758e81320c950", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-LegacyContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x865054d22d61966cba74be2b52adf6c8aad96611232a43ea71930c5fc868fad4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-LegacyContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9a7e6826dd4dddfff7fe7282adba70811a3e95f254c0f56d708f0d40e99a37e0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-LegacyContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1e0af0ec219381eaf10ec140174c8fc5267921f9f4e470845deb52a01606e815", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOFContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0xa6cddc27cced6a7c43cfae9da764d53d6b5ac38504e7c1ade017d009aa33c8f5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOFContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x14a8e500c144e6b8cc69b2054d0094903880ed12872c1a74d14586090a1c1d71", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_0-EOFContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xec59fd7c56bcafe747b4e209349c9e91b35497ec539396763c2fdc48798c75e2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-empty-opcode_EXTCALL]", + "fixture_hash": "0x54677976c39c48706a5e0b8d8c2203ad742eba02da1ffbced20a9e1c00e4e116", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-empty-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9dd91d308603c5f7e1817a58d079b796a871ae736e5ce3ca35b2491fb09477b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-empty-opcode_EXTSTATICCALL]", + "fixture_hash": "0x391deab75621a78b320e397afb6c6a7f3c099631e2a5b19e73cded83f6d21cee", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOA-opcode_EXTCALL]", + "fixture_hash": "0xa2fc5ea6e485200c7671331a7cb53cb008277490d024a032811c60ae328c70de", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOA-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc4a619e55412eb7177ee7cc1fc88f592467c89804cdb4ae5e127d0a88df5e3f9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOA-opcode_EXTSTATICCALL]", + "fixture_hash": "0x99e347da1638abe7e7ed1ab5fba6909db10644e36c28099ab883bf7c6494656c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-LegacyContract-opcode_EXTCALL]", + "fixture_hash": "0xcbac2b741cef8b19f5d50c26f1b87cdee386ecf8f64b031ef21419326457eca0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-LegacyContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xbf04eb610876cb2f664c93ee1add53ff9848015f42b980c1bf10441bda3d0e0d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-LegacyContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xbaf16d6d969750e09badb2278487b94ac43d52f862595787af966f9755ce706c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOFContract-opcode_EXTCALL]", + "fixture_hash": "0x9d3cc0c083facba1f287510cb48f83a9601c026473eeec3f86efaf1f220a2ce", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOFContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x737ae88d2f5d34d82a89554f06dacf308cad583bac3154dcd304a932cc492991", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOFContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7038968fa84c1b69a055439b0fc24d4919c30fc0cb431c6c3bf758e81320c950", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-LegacyContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x85b50d55b0becb57314afbb333a66d162d55339eba7a4690551977d143fc0c5b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-LegacyContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9a7e6826dd4dddfff7fe7282adba70811a3e95f254c0f56d708f0d40e99a37e0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-LegacyContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1e0af0ec219381eaf10ec140174c8fc5267921f9f4e470845deb52a01606e815", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOFContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x7121988ce17a5f28ac1ae1e45ef7e354a73497963ce6176761757a11a94c510d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOFContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x14a8e500c144e6b8cc69b2054d0094903880ed12872c1a74d14586090a1c1d71", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-state_test-value_1-EOFContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xec59fd7c56bcafe747b4e209349c9e91b35497ec539396763c2fdc48798c75e2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0x54225442640f7008b803ccbc84129389e24764c918ac21a4d56e5ac23763125", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xff8a3892de7047a4cb299ef181556a15a1e43ce74a8796694763b58fcde693c8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTSTATICCALL]", + "fixture_hash": "0xbb866acb6ae6b716c2451db408941768d76ab4f59d9d3c588c59098b78ed4b4d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0x4d027de10dec2911bf3c0eb17eec39a936b3e1727ca746149e256ce849e48181", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x42b700a13616d3cf5e6ca6a2dec722083c7fe3dee2acac46eac193ed3de75210", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTSTATICCALL]", + "fixture_hash": "0x28a67c31ccab0f59cdf933529ddc8559661e7d5ff481ca7d60ba02a09ae9578f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0xb65e32fd5fe17c05d51d27d5e4cf8dabb5b7c9d4f0a32e33df516aef37b7c1c3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xac38ae31787761a1edf4e8277d06b7fd56e2b6af7643f9a31edbf684d191d39", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTSTATICCALL]", + "fixture_hash": "0x162f133fb05c42e77a0f5a08e52dad397cfee839635577d47bf56d49d9ef34fa", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0x502c5e79dda9cd2d3f39f002c9ba07f271dd4133573525c356114cc476dddcc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf2ac5c7655baea42bdaf8ccd163bab23de8f7593f472c3505a927121d033469c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-state_test-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe55441310b799aa4506d878fc71d065f54011e67a2ef5f904eadb83a951e195e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-state_test-fail_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0x8a801a319e65a8f61c8a7886e0e6d9df4e71a0b2467157dd4d657f438f643299", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-state_test-fail_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xdaa09ac1400094af8653cad16cdf034d60fbbee13b3fcf793a66eebdaf4d9ddb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-state_test-fail_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0xe9d764803fc629e25174c189b550a86285851ff13997b60c24cdbf947b0cb89e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-state_test-fail_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x501e36338e29e08562b494945fc079237c9fffdce7cc1479c55045732902f092", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0xa040c545a6973419dc493c5faf80990e2d956af0158052ce83869ce4ec91650c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-state_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5c9e20c913b0a0cf06cb005a3d8759a94712f83d7cf7b7fbbc38fe2f7add305d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-state_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7a618c4d77187e08d19868149f8dd2262eef1ee76f842b8e0f530d803df3b96", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-state_test-opcode_CALL]", + "fixture_hash": "0x7c8971aecde9c0d56b226a979a8296e161e7fab97fa4f125a18ff9a05f977155", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-state_test-opcode_DELEGATECALL]", + "fixture_hash": "0xf56a2ee6b8ec6361158706f7e4017caecc6325f46c6210ec84fcc6ef9244e4ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-state_test-opcode_CALLCODE]", + "fixture_hash": "0x2f15b2e56000ed36efbf820e88ac410a53c234797ecac6d7b77d00fed69dbf58", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-state_test-opcode_STATICCALL]", + "fixture_hash": "0x3382b9bda9d335760d957daf6873eaee319879b6ef4f49b6572cda6094b04be9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-state_test-opcode_CALL]", + "fixture_hash": "0x2119e149579776dc3453faaa50ea88370e37a6f40d64d6eb7a866062c8917b1e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-state_test-opcode_DELEGATECALL]", + "fixture_hash": "0x288dd7d19c68d6fa856652a28a3e6bb9d906c474404ea8fdf5b80bef676ff4e5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-state_test-opcode_CALLCODE]", + "fixture_hash": "0xf90dab63bfbcbd03bc4e72e29f8335be34dfd4b7a5ca458121b03697b7ddb7c2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-state_test-opcode_STATICCALL]", + "fixture_hash": "0x59b5ba97e0bd2fd8299694f53dc2a53afca6c21c9b67d45dacaa072ccce2dfe8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0x42b4b6088b4fb0642266129f861310972bdab3786616b95b9f3215ce2be0e0c9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-state_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa02b9943cf6b9f45bd0fd0ac39e275f8cc220d8df52e1191eac300e96dc613eb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-state_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1900c32ade20388519d6d537e22f3fa423aeaa04a68d5dd7d0e5ae049c496e70", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0x22af274c9721f1e4cb3eee6ebb327498fa3b19664859865a2de6b8b69b56837c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-state_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc576a7f293c5921e1550efda90cb721203e2aeb6719ee4d8f1c9c9c3da06234e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-state_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4aa0feefd13c63f20c37d96b46c6ef4ec7c368661ae1679e67263a310ff16e74", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0xc719dac9fec30edc2934c3178a1cb14f70dfdd89bc767aa7ee5870b722c45da", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-state_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd0bf2ac568999b0a2df0df3ca524d8de9e7b4e3cf0e22f528b4b02b81b17736d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-state_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0xbf5c53e2f96816ba64e0dc804da344c7220d41f3bcc96f9a0432ed40085af25e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-no_allowances-extcall_without_value]", + "fixture_hash": "0xee9e32998a297a72beb99195298d49dde51db989b0f89bb1b48234aae12b90fb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-no_allowances-extcall_with_value]", + "fixture_hash": "0xb5cc3f9264d7b6a2279eedb7f099df1d0a522f22d78f4ba8c50127e57428cf4d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-no_allowances-extstaticcall]", + "fixture_hash": "0x4d364b77c10a50db4979e53a3f992d2d572645572ff92b7bb2b07435ca5b7c89", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-no_allowances-extdelegatecall]", + "fixture_hash": "0x97dadadb8d937d304029165f8828f9f1c17c6ed9364323e107c2d6f3d56e64a7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_retained-extcall_without_value]", + "fixture_hash": "0x50021a0d237cbc9ed2dfb228ea383ed29cdf2c1d3da4b8b5c0019cf9cf38b6db", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_retained-extcall_with_value]", + "fixture_hash": "0x5d113a81408ff17321d8d7c8a5434daf8c725bb15fba5f4baf4e66ec5efd2c5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_retained-extstaticcall]", + "fixture_hash": "0xac1749bb41ad9497930c0a31638ddc5311332e2932f8dad33cd5a85f8c164ed2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_retained-extdelegatecall]", + "fixture_hash": "0x2c583ea2f5f8d0a992b7567d0dc1798cc92faeee2ea0b866c4aad91b2a342f6b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_callee-extcall_without_value]", + "fixture_hash": "0x4ab22e0c8a117d2d7713099d14d374b766537ac7f39b9677da3758a7e1eaa49a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_callee-extcall_with_value]", + "fixture_hash": "0xf37ee5f3e21ef99d9143ba2f037f6ca929c925899dcca255953178d11c03503d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_callee-extstaticcall]", + "fixture_hash": "0x9b0d55e94f93710f51a54ea9a33c1c6e52697a90e66c4616a393dc101608438c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-only_callee-extdelegatecall]", + "fixture_hash": "0x8336ae4dff8e78a7ad4d21b3c99d90e57af70a53e0fcceca51efad318a18bd1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-both_allowances-extcall_without_value]", + "fixture_hash": "0xf76b911568e7b9d2f98b9da75b80f4f323bb098cd55f358079a35c27aa85862f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-both_allowances-extcall_with_value]", + "fixture_hash": "0xc6c0138d95ff8d9ffcc90a0212e6338620672396404f54fe7ae9f7c3ed985590", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-both_allowances-extstaticcall]", + "fixture_hash": "0x5b6f817089749cf8eeef6ffd8cb64037641f2338dbe7f473cd658d956eb89a5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-state_test-both_allowances-extdelegatecall]", + "fixture_hash": "0xd4b4d1e36e35d085d93593b51f30431c2f942d1accff597deebdf6a0cf188075", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0x28fabeb420a977ee2aadad3deb856d2ec2994c6813e1604dd88df5f344873c81", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-state_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x556a28d898dbcca6290fd3fd9a70325b3d4ca79f9bb341b82f0f7650b63fec3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-state_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa307d7812560bf51a4898791c9274f9c324f151919d24aa0bb95ffa71f3b73eb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_0-balance_0]", + "fixture_hash": "0xf0d1c973da8b669febb73a1d8467abbbf069ad253fae7b0e44ac10b6f0ec0bec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_0-balance_1]", + "fixture_hash": "0x8e8688bdbae0a57af1a9769ffa6667ff35f5283f2b0fbc909920ae9e95219176", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_0-balance_2]", + "fixture_hash": "0xb8bcb1fe00334840f8b2d7b9e6678900c15b8d2b302e0eb9be942538a57cfc4c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_0-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0xb7307af4b836281b312c66cff7c49078b38bafc78925634d686e99aecd8624df", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_1-balance_0]", + "fixture_hash": "0xa1e03bd22ddc6e873c0a28fdc62cf055bed084e115717163da37f15609a78cd7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_1-balance_1]", + "fixture_hash": "0xaaa0745b06964ac79885e0c76cf5192159bab3d9af540ddcb4ea93a262a39b72", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_1-balance_2]", + "fixture_hash": "0x45ac4c1b4dcac00db73d5db55d0a63ecdcd045910209ce46d11385fd6074d7bf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_1-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0xc2985170614ce6d9663c5a8c30d57e933dfe93c0286abcfa8d32d2107fb887d8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_2-balance_0]", + "fixture_hash": "0xaba279cec2788ca43f0f6b7ebe8ceadd4e57e0de92ef41187947bc5ccd4df420", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_2-balance_1]", + "fixture_hash": "0x93f84544f6e414f78b6c0e1b20e217b5fdc2119c9f1a6594b2df0683690fb7b0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_2-balance_2]", + "fixture_hash": "0xfeaf042da920b7603583ccab229432fbea612e195c12d8e93b3c1352406ebdb8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_2-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0x76d3535cfcccce39bdace4a36fcfb1084346e94cf55ac3f4c888c42a98c44d1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_0]", + "fixture_hash": "0xaf8f9f9ab89bcdc2e7524d9755a2e5c696fc008956836c02d36cc1620bddd292", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_1]", + "fixture_hash": "0xc122a1ad3ee01ea4430b760ad603c47d3b44603477c8f76b83bfb4356ea26e65", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_2]", + "fixture_hash": "0x8d1d22c5da65efbbe6c79534bac7ec7f5e1eaf3a9d98eb7c8ea3afa7b6128cfb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-state_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0xbdd40f9719eb8cbe7c4d282a60f0de3bf84cd55a8e727a2a4522a1b3fefdc171", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_static_flag_with_value[fork_CancunEIP7692-state_test-opcode_CALL]", + "fixture_hash": "0x634b6d9e392b377c4bbf1b07d610201a69f66e38d488faeff8468e0cb22834bb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_static_flag_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_static_flag_with_value[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0xf3e7de82cbfe99ec3ea97014abb6488735c1de8fd4171e6de0cdc3410af76176", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_static_flag_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-state_test-EXTCALL]", + "fixture_hash": "0x36261ee971863eb1e4c7110270d94a84a55e1d957ca2b110822ac8eb5e53b926", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-state_test-EXTCALL_with_value]", + "fixture_hash": "0xd9cbe7907abff38de794c06c9d78370e71a5d6677a31a3f692a76b0126ddfb0e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-state_test-EXTSTATICCALL]", + "fixture_hash": "0x27e65bd790405086cfd44c7c39546ffa56b506768105c3ecc80ff2455f0834fb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-state_test-EXTDELEGATECALL]", + "fixture_hash": "0xdb1a56e1cd00d254b4b85eda231ab6538a0637181c391bd873a0e66a770dc8c3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_0-value_0]", + "fixture_hash": "0xe4924f6c90afa14d96b4f30d702c596c2eb612cb6beea35669c4847d3e0ba359", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_0-value_1]", + "fixture_hash": "0x8047a5d2e255955a1394f58228e51a3cf15ca29bbdff27e1843a36d12c3d186e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_16-value_0]", + "fixture_hash": "0x6bd8d4fbf8a872683d903b71e9c24e6e4f0f9d2c43ba86bf81aeccc874b0d68d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_16-value_1]", + "fixture_hash": "0x3f08f3c7723bd597ebaf191e81a92360bcb8e10bff2063ba14d71228b2469b1b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_64-value_0]", + "fixture_hash": "0xad13e15dc93222f155359f5845d3ed55bfc4a6bc8caf533812988ae13566cef6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_64-value_1]", + "fixture_hash": "0x197554d3dcb42924cdb41f8eb180e4e3b42e035163da27f60bf326c72abcfc7d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_256-value_0]", + "fixture_hash": "0x50f08fdb687e6bfc9af18b2906f260a19489bc39eb48af01952e0daa09b91b8a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_256-value_1]", + "fixture_hash": "0x1d57de4b1c999bf39978e8ff186adf212061d006df25f2dc776fb84b425c14c5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_0-value_0]", + "fixture_hash": "0x60ebfcfc236e4468097ca0d2d09bd67d2cf03bb6388429844fbc4b3aea51b4b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_0-value_1]", + "fixture_hash": "0x144ade56ef5fe02387d5e721e6b9e48a4ffe6501371c4bfcebce5550fc6d7dc8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_16-value_0]", + "fixture_hash": "0x375fd0826c33d7cf13bfcd36b2ce526738a59306676d0016a0f880eafde8c051", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_16-value_1]", + "fixture_hash": "0x4e775021f8228fd50928877f3d7c7526e75de33c40ad87d9327b5e161215eee0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_64-value_0]", + "fixture_hash": "0x959814c3045ed7ef922328b32fd0681760354ca2ef92032edc112f9c3cd49bd1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_64-value_1]", + "fixture_hash": "0xe0d2466faa4dfb0ecacf6bc6b8e182504ea7f719ca005d1ec6751e0171811c9b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_256-value_0]", + "fixture_hash": "0x5b9e175642ddf98b34b6b3d053a606257817ca863d7ea3fee0c9bd70291fe773", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_256-value_1]", + "fixture_hash": "0x20305d1d4766c9ea12989e53911184dc232c8711fc52ec14eb71792394d56815", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_0-value_0]", + "fixture_hash": "0x6c835d5e05b53e30fdbde931b9e1ec38d35bb81e2ef429ce3d67f356cfba6200", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_0-value_1]", + "fixture_hash": "0x1c5f8948658a6d066563adcca29ed881b2ee65694341031ac1ffe624580d1fad", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_16-value_0]", + "fixture_hash": "0x1e3ffb0cbd26924fbf164b1c658489698dbe20c17f769b216a4435e03760b8cb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_16-value_1]", + "fixture_hash": "0x2b159922b950160188503e5ed399897282583559eca610766d13800644290618", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_64-value_0]", + "fixture_hash": "0x9ab1d8e0547e3843d367fcf20327909fa86330ba93b55c29808bc86e206f1c6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_64-value_1]", + "fixture_hash": "0xcbd2f3c991053b18fe603a5ecc54b6f6c5a671081781fe34349fc4dca2f7da8f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_256-value_0]", + "fixture_hash": "0xc99991315ea08fd9b43581f1067b4794d7b421b95b1559877d57c703e1dbb5fb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_256-value_1]", + "fixture_hash": "0x25ef4746c14704c8c21322730727389d3a8a24e119b0e706667776bc63a0d3fa", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_0-value_0]", + "fixture_hash": "0xc6bdd4b2cb86a2cc217497d79ffb1220ef9e2372243b2649553dd61f53c12429", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_0-value_1]", + "fixture_hash": "0xb9596117af4a1c4d5b2e229e79ac7deb0e2be76bf74140e1dad66062a06e3246", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_16-value_0]", + "fixture_hash": "0x236ea6775705509a60a7ef02ff78336a0a70dc9effa62711e3997bb61d479934", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_16-value_1]", + "fixture_hash": "0x7ad5bfb68ef7d0725b0b90c6f5ebadda6cb668076a64a814a5cccedb95435a02", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_64-value_0]", + "fixture_hash": "0xec018d243ae270df48e99526aaf477f0176d383924368988188e7ce1ca16c7ab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_64-value_1]", + "fixture_hash": "0x635be1b4ecc734afc391a2b20f8d455734be093fb0b32ba01aa4bd129b8e26b7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_256-value_0]", + "fixture_hash": "0xcc69f415c067906048ffb81722706e549704955e6661011aa3e562387126f624", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_256-value_1]", + "fixture_hash": "0x10a57e34fb158bc9f063595bf3f00318704bb86f2e72228607777732668d7c31", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_0-value_0]", + "fixture_hash": "0x4906a6d53c111fd2564843e1defbbaeaa599cfa4746b47887063f03dff8c34e3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_0-value_1]", + "fixture_hash": "0x1898b42ea504d0a66ae57db0f3e6d6f173fe27078b4e224439e3c38230b456d6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_16-value_0]", + "fixture_hash": "0x488506cc85a06adc7b28831ca68fd49ebb7fe0fce812619a4017115b6d015850", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_16-value_1]", + "fixture_hash": "0x4aa11ca574bbdb919f50f49c1757d4520d9cd56489ca6b383cacf86a9e5a2f3f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_64-value_0]", + "fixture_hash": "0x7309df82a37f8ce7465f8694985a28e880d053f2f65c5b219c36a2a73b14f955", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_64-value_1]", + "fixture_hash": "0xca9416a7bacc790862bf8e37ab6876be979adda150c1a48867dcafe8ad1146d8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_256-value_0]", + "fixture_hash": "0x9a2995f3327a71156c6a8f7611ec0315c57f0e087d4892de1f51fd407e48e67b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_256-value_1]", + "fixture_hash": "0xff9298eb3b965d8b216cb15c6ff5c811bd8611e004db8a8f23dabdd9c5631c8f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_0-value_0]", + "fixture_hash": "0xece1cd4e54ab4f28e33aafd3b57616f70ff7477b704b6e98e37b655f1d12a2ff", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_0-value_1]", + "fixture_hash": "0xd1be302d25a6d257742ebd03db24f4b890837e2274143e604ab4932d51675f0a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_16-value_0]", + "fixture_hash": "0xce774b30f5fa0afece7390ded40ccd456942dc302a537c92a6f8a2f250699ec3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_16-value_1]", + "fixture_hash": "0x1e5289d1905f73d7770653ce194fe38d128a807795d9e5d3a3c7fcc2c45273d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_64-value_0]", + "fixture_hash": "0xb3e870adf0078a82b8b1318ebaae2bee6aa898a186b8b4fba6f763fbec32e46f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_64-value_1]", + "fixture_hash": "0xf2625617471c204348ac21764070bc33ff7268bcf394bd55abff8c29da04c692", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_256-value_0]", + "fixture_hash": "0x2d068977b229dac6d1a534f57a7bb96ea5d1f3c2511889673ea04b166adcc960", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_256-value_1]", + "fixture_hash": "0xc13a2c0a0651329cf645e61365fbea787774f304642d12ded7775d5efc2197e9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_0-value_0]", + "fixture_hash": "0x32601a7900e5ea54abd8c2ae930fdff5c3c2bfd3c8529e2d492a606f1a1bd05", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_0-value_1]", + "fixture_hash": "0xb258d2a5c081724b4922b71bb36ba75136d4b47bb883b12939c0aab57500826d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_16-value_0]", + "fixture_hash": "0x4698d15cfd96bf43aface81f4e2f553b7668c630858448432b852ef56ef282c8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_16-value_1]", + "fixture_hash": "0x345e02d8dc73fb67b391903b495e1e359608d0075b810ec1b600c3a57b00fbc9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_64-value_0]", + "fixture_hash": "0x6561fe6a7c5cdfaa8734e9bf64d0739f1fb0160da3185e121fff04ad5b2abd03", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_64-value_1]", + "fixture_hash": "0x49914d79e247022eab296ea6d94fea23a0856214d40371e6df268a5524d95e85", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_256-value_0]", + "fixture_hash": "0xd1a8a00ece554a0a64486f0bff9edc226a40841cf06b707e960bd72129b5debd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_256-value_1]", + "fixture_hash": "0xe84b43ba6dc8e447537666b1dd34fbe40a4ee8f0b582334fa40768693f6e8fd0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_0-value_0]", + "fixture_hash": "0xd3d3921b0c074b900da2a7d9da578dc23e31e7067e94c2d42e8403c2a4de4fca", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_0-value_1]", + "fixture_hash": "0x49b2efa486c93aa02c1a76d949309e4858cba04a2b499f4e31169bf5cd8296c4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_16-value_0]", + "fixture_hash": "0xc770e45d24d56cad3e9fad44156a9f145fbdf4160ec20017d474f49cd0505ee0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_16-value_1]", + "fixture_hash": "0xa73e266a2aab8641c5b91db635a4804338bc9df756f51927839ae1b2a3c9ce68", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_64-value_0]", + "fixture_hash": "0xd538723a4fad73017209ac26ac0ea69614e7edbe7e2377c11e736491a6b2ea75", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_64-value_1]", + "fixture_hash": "0x7efcc59957c46f47b0e4cae2b803187e2d4ec6a24e48ab1aba385a1bfe2f6a71", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_256-value_0]", + "fixture_hash": "0xc5335e1f5a5ed4d26a3fd41f8083ee28b35ece66b728285ede00668b94067001", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_256-value_1]", + "fixture_hash": "0x9c0dd1072ba0ad2aab8ab44d5a26d9750f95bcd456f70403121d72515889cc33", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_0-value_0]", + "fixture_hash": "0xb19f76a068754c36fc48d5884151721b640f7fd09d2814dfbab51f8b79b635a1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_0-value_1]", + "fixture_hash": "0xd851e4ea3a222677778e06c151b8a1d09c14b54774f3c2b8a0aa0c790a49b41e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_16-value_0]", + "fixture_hash": "0x34c427ac2b75ab1601c83a815a7468bebd935ffd29785f437d62a5fe7d71e541", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_16-value_1]", + "fixture_hash": "0x1866571eeb386e9d3bf72da57212878adf445eca268111eb6708c45bc9af3610", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_64-value_0]", + "fixture_hash": "0x7a086ccea01c308d6eb6e350e38625a4ef9aa61119690d9809dc4d5558442e30", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_64-value_1]", + "fixture_hash": "0xe810c2823882c074a3e36491e7c2be1a502048cffbff5f8128d399b4a384bcfe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_256-value_0]", + "fixture_hash": "0xa4bf449bbe34ff756dcd48219caee40810fe92b83603648989a84ce43671df9c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_256-value_1]", + "fixture_hash": "0x8d870aa29467e0972859c12c145a017f1503326c17bc57caae034bd8b188b7b6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_0-value_0]", + "fixture_hash": "0x5531a53e8a455c92ec2bbd210032a08a9c4372397635a736625373d9ba3014d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_0-value_1]", + "fixture_hash": "0xc1e70acd98fe4bc34fdbc70e441ed1ecaa995ddaced7aa79a369b16536710568", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_16-value_0]", + "fixture_hash": "0x815c6bc596289f6ac629a96c6922357fd38645da580a6c43914e470f65c18b21", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_16-value_1]", + "fixture_hash": "0xe248c87b418f0b5ccd75f93defae1f68842f42d61c4868aaf2a55bfb381c7a7d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_64-value_0]", + "fixture_hash": "0x4bc2d4a256ad748305bbd83295b3dfd17c9c07c24a0c7b7a6fe17dfba1bf687e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_64-value_1]", + "fixture_hash": "0xa75c556375ffe770594f04e7bde1d76f83bece80fca37a42ab02a249419e7ae0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_256-value_0]", + "fixture_hash": "0xc8be704c14c92a297a0fe6d1c51bbc27928ea7353a3f7ea73e9de628361081c6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_256-value_1]", + "fixture_hash": "0xdf5e06418b06036af068521133d13dab4cc79133268463cddf4864d19c488898", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_0-value_0]", + "fixture_hash": "0x53f32c6fea3ee2a71b621883033016ca081822daeef85ead189bbdc33c7013d6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_0-value_1]", + "fixture_hash": "0x86b5fa4fc478a82eb6b1118c3153d26a40a37c6cf5a85f56239c7c35376704c8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_16-value_0]", + "fixture_hash": "0x468c48a69fb2cdb9294f5461eae8098d04215b7fd7e26fe7d560afe4a216075a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_16-value_1]", + "fixture_hash": "0x410e85f90255199671f12262ba057cfd8fbf6c0109421ab914d9596cb0474392", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_64-value_0]", + "fixture_hash": "0xab100116d04e150df5877118fb4cdaf9b8f7970ebd9b676fd8fa56cec77585a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_64-value_1]", + "fixture_hash": "0xa27c97017bba62b326e43c97d460fb5e7159f76c80c6a013d9be33576d9bdfcb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_256-value_0]", + "fixture_hash": "0x607051f7e2902e11b8035d1b128554fa2edd47f096d830d11705ddaa42f39d8d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_256-value_1]", + "fixture_hash": "0x128fe002f53ef46ab1c24c4065483744f26de944024343c2cff097313e42b8d9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_0-value_0]", + "fixture_hash": "0xd2b28af48da663d0e6855bab07bdc8b3f645ca8de22d8a525d18fb25cb2af1ec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_0-value_1]", + "fixture_hash": "0xb1669a2ccf3e1b549802448e274ccd7c15e27157e088d138b044bd178ce86bcc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_16-value_0]", + "fixture_hash": "0xd62685f277f2a18ae56f7836b46ca94a8c65adf7495b23c55318b3fff82be49", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_16-value_1]", + "fixture_hash": "0xbee6aa587a54dc2674a54bd021cb194b247398ece9a6a01668a2ed7d241c20b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_64-value_0]", + "fixture_hash": "0x92e957465f49162dde995d943569df92d2e0f8fa20aaca3e48eea32a09e70e49", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_64-value_1]", + "fixture_hash": "0xb7c6e1b08cb7c6a6abfb46df9f636aabbc895ff1bb8da96ad9cb671a22a7f5f2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_256-value_0]", + "fixture_hash": "0x6bffaa93f13063fe2fa2b16ff54bb541708cd6f910bf92bdb44ab2d40a2aca5c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_256-value_1]", + "fixture_hash": "0x47941c2e0519792257a0580f156578e52a58376f2dfd3ac41790d30d0b137882", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_0-value_0]", + "fixture_hash": "0xa8186111c9c30748ea7b518688ac898939711086211d79d394bab97f3a940e13", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_0-value_1]", + "fixture_hash": "0x6c3180d7bb97c48d380bfe9dd8f34df5cf1723cb4138dc3a83ad50c8e9a6340f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_16-value_0]", + "fixture_hash": "0x5de37a457693a51dd7f4657259eaefb195c0727bcc0c2ce64e08d68955f45938", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_16-value_1]", + "fixture_hash": "0xf9cadef87efcfc88a1920e436ca69fd2db75a245728fb2a385e82067ed26ce91", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_64-value_0]", + "fixture_hash": "0xff677dde7ce2e9f79c5711bd17bdc6696fe821c6a52a766a87cfaa7829f6b1f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_64-value_1]", + "fixture_hash": "0xc535d149a6803a56f7d353e941cfca14098124199f15c6ef56312d7d492d6443", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_256-value_0]", + "fixture_hash": "0x589264474e6cff1cf095a86c13bb4eaa4cfb2e27a3af31ee1ebeea13fccb7c8a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_256-value_1]", + "fixture_hash": "0x625db9678f40fd65945d73b96f71e5e5389000cdb16d14c9f8550a038f317129", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_0-value_0]", + "fixture_hash": "0x69c9706ec8b6d79e39d9065ef3b270d383a471db45ff3a0c41083e27fa011837", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_0-value_1]", + "fixture_hash": "0x657681a7b1aa4880049ce4fdc8337157f648c250fcb8461cc1bcb46e3ef38cc4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_16-value_0]", + "fixture_hash": "0x60e83dc574672d8b5faeb9f74bd95e0fb22e1d4d35479fdbff5e0ea6bf040afc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_16-value_1]", + "fixture_hash": "0x14791eb9dfb8df9dad4c672915cad7705f96b29ba2085f9a82bc9625e4b5b6a7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_64-value_0]", + "fixture_hash": "0x37ddab83d0563b6ffe581ca42fedb2fe8abfcedf285f1bd6735d91122c55da72", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_64-value_1]", + "fixture_hash": "0x7c6786e4dcdd7808199b8042d7a6a6661c8f4bfee131740c71afba99cf521281", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_256-value_0]", + "fixture_hash": "0x48088f1e2850c4fbaea5bda8ed151f9ece580e547a94a66f4e267501988a9197", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_256-value_1]", + "fixture_hash": "0xab34698ef73cd38dc392aa616d6a3be38f06883e3dfadf1160ef44f08965239e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_0-value_0]", + "fixture_hash": "0x46326e8a09630c90e611f029c7fbec81e2d1399c72628de530da3eb9c655f543", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_0-value_1]", + "fixture_hash": "0x361c374af5c96a5f8b14dc47ed47187812ff17cd566d18fccca2e9ca3282209a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_16-value_0]", + "fixture_hash": "0x42fe545b88a181b31719e6ffc413fbb53fe9ea40aff1e209a64086c71be398d5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_16-value_1]", + "fixture_hash": "0xdbecbf6b4c232582b6563e6c636db661c8c4eccb5baba2a2bef2e90c2032e0af", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_64-value_0]", + "fixture_hash": "0xa7b58187389a965e1f88387b8460b8025a5731fb73bcbac080881d1c79b0b143", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_64-value_1]", + "fixture_hash": "0xfaee8af7345d8fc7a6a75d9ca4645da410fbc079c64e3eb78bb65f04bf8eab0e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_256-value_0]", + "fixture_hash": "0x3235b3d38f2ab92b97b49410ee28d83ae3bfe8416e5272724ed15428ed58bd40", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_256-value_1]", + "fixture_hash": "0x2f4e8afaaf0e6057e192678bc470964ced288991497ceebcdaf4ae8169bd2821", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_0-value_0]", + "fixture_hash": "0x67c26ce715016ef9f713eb6d03f909a44fbce4eda4fe524eba132bc290547fa0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_0-value_1]", + "fixture_hash": "0x4fbc82605d38fee13938cde50e6fc0d3416d45c2ca63834d7862d34b7d67e725", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_16-value_0]", + "fixture_hash": "0xd67d508af5b850949dcea9e9c285dfccb8b335d0a549e6a6216c83acac05ea23", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_16-value_1]", + "fixture_hash": "0x41774a9f00af5cae987cbe1a541671eb38b8bcf12aed5a86edc4f43b577188c5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_64-value_0]", + "fixture_hash": "0x4eae8e57049d6c94508b876873c17044c1f517b1f38402b6243159e99b57ad0e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_64-value_1]", + "fixture_hash": "0xd9de62be8e5f92cc6e00b13be858d786574c480164509e40239c6138e930d1b1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_256-value_0]", + "fixture_hash": "0x9a6b80ffb3c63eb7eb0ff134f2a4e529add936edc4a01166f13881ae16f4583a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_256-value_1]", + "fixture_hash": "0xfc537aa3cb9afcf00d2eb74019e4cfefb49da93a0954ea1d35784c3a8ee6e8cc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_0]", + "fixture_hash": "0xe91ba7942c7bff613ee4304be8f4d145d0c61740432c6548e59b3f47fb413cf6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_16]", + "fixture_hash": "0x7d1e6c5020d9c67c57e76423cba4eaecb9bf126f68cda7536ac94bc60744fc93", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_64]", + "fixture_hash": "0x7ac3b9111a0725d7979326874eeba5f4627adbc272c543fee2df16266af4acbe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_256]", + "fixture_hash": "0x658294e2cae6997552b1e8902c62c75c4edb1a698e7a3a8e5e507832d6148322", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_0]", + "fixture_hash": "0xdc3b954977f067eb8bafe8c06967851f5f48ab2d1af519b50a6fdadcb4e2872d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_16]", + "fixture_hash": "0x2ac084051400da3d53e755556d8b529777222204802c97b4900b2b89f8289353", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_64]", + "fixture_hash": "0xc8ffb26da8802163c769f98f6b3db85525bd0a0dbf7beb070790c3e2774b6d62", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_256]", + "fixture_hash": "0x1c92eb3faa0201a12cdd2e4d1143c0a0265941acd6f296a97b673444cb52a6d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_0]", + "fixture_hash": "0xe79c3eda4d13890a34f2be8ab45d4f7f4c962f6f8110c3ce9a8882163136a92d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_16]", + "fixture_hash": "0x3774893f28d56b2cf43d66e1fb9fe66f600b6b65d5277a06dd5cdddaca4b8267", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_64]", + "fixture_hash": "0x3ba8486fd7ca0d688c78f576935adb2bc41ff896a730c5522156e45be14facb6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_256]", + "fixture_hash": "0x63e6f4ee59c0204b829c8cde0a1683014bd7d6f6813e404e42002da9b875e300", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_0]", + "fixture_hash": "0xbf115842da4c91aee013eec6c7a928420a153a9fad094252a27b68b703c56922", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_16]", + "fixture_hash": "0xb827fc13de709a9b5cf370f6abe17736e1820c0c2a6d888136d2275384a66ce0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_64]", + "fixture_hash": "0xa9a6cdec085993c40883a69dd9d4cdb18eeb5d1a4c7df250da14b73810a20337", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_256]", + "fixture_hash": "0x857976fb567d372193ee94ed35f57ccf8c4825b9374060dbd7a5838e6a419c4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_0]", + "fixture_hash": "0x2b94d1b863716523e8966eecbf8e023a00a5c3bd493fb4ee443636e17bb75a7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_16]", + "fixture_hash": "0xfe8f4dcc2cbd926f995a15e93386e1ac34e76a14805f6ad7694263da366cfe1e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_64]", + "fixture_hash": "0xf8d14c0ddc14d6772c72730c7ecf67c7cfa783271a0730c79ae50f540c45fa17", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_256]", + "fixture_hash": "0x57933cd7e8d59effd15240e26ef920626a111bdb2e97607ea2c2da48b7532866", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_0]", + "fixture_hash": "0xd3177b79193348de182204d9606751e46fc53306eecdae99158d664e3253c4e5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_16]", + "fixture_hash": "0x639097da402f9fa3cb200276388a29ff4bd3e167c7503054ad67c504ef4d937", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_64]", + "fixture_hash": "0x44c70d20862eb76a5e144ebd5253f9e998323ad465159d3fc3c7f297fd503be7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_256]", + "fixture_hash": "0x6bcf9ff540ea524ce4804dfd484d9736ab3d24931cc68a395b3033f5385ea66b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_0]", + "fixture_hash": "0xbdbe5859e7814f23bbeabef1c9798b435f38eb9c4755eb43e1c5a418ae77f380", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_16]", + "fixture_hash": "0x42a1100ba95d7f95ca990caff3d1856d0ab0655e0934f30e1e50f50cec897aeb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_64]", + "fixture_hash": "0x5ecffc02bdc35a159acf7fd3d3b4083f2e08ab6d136424e4836e2f15211b72fb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_256]", + "fixture_hash": "0xde1d6d6e15c1c47cadc546c59c059e8e7d594f8f3687b8af7763e30ae6fabb53", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_0]", + "fixture_hash": "0x3749ecf5b5a1d87cbaae9a0eb04e7b1646a5dd589cf98a5d247f1b4c45c62d1b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_16]", + "fixture_hash": "0xdd1e8151cb38781b8cc14fd66e2fa9394a8078e65dd784c22919bf58fb8bbd7c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_64]", + "fixture_hash": "0xf37399f54370b75ab36e37a4d318ef3da43d971465a5b4a81577c22055a8ddd9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_256]", + "fixture_hash": "0x14593c5a8bfd93ae35ca08605a7d0e8c33a55cc88c4a6c5a2b7aad631eeb591e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_0]", + "fixture_hash": "0x8d907ca3d77d6323b971b9f3df7028709977ad4455bf2d7ab3323e200e66553d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_16]", + "fixture_hash": "0x65c2d8ab6e8423d44c3661290e29603478057561835af4c031825f739bf3fce8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_64]", + "fixture_hash": "0xa29cf037ecca5e4661a7972adab55351b68b931b021ee23b6a39d66123ff997b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_256]", + "fixture_hash": "0x50a1ceede2c9f648d53a4c58b0308565a728e1188cd864cd785e964b5a1997bd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_0]", + "fixture_hash": "0x9d2493fde765d4703258e93664d5bbbd4c2126256240fe5ceee64d9179e5138a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_16]", + "fixture_hash": "0xba8e46641ee2b588d8c4f2811ed0d3987ee346f8d74870953a1e40b700b5eab9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_64]", + "fixture_hash": "0xd3e66d937c66113f688bf2dbab79d1ca34381ab020f86489d657faa00bea0508", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_256]", + "fixture_hash": "0x9bf041d3c5cd8fe4c232d6fcafc09a9b8781db81466913a7e46f2d09a9d4fb55", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_0]", + "fixture_hash": "0x1bf727aa0cb85247108cf1bba35246004e6283bd0342ba235aa01478b7f34834", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_16]", + "fixture_hash": "0x63646294a73a42db942ca37a5df8201059d2d166225001ec959f6b2053dbe821", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_64]", + "fixture_hash": "0xd484cd58b3d26b9da5c964f926efc5d7b08c0c3c5dde0f32b144b5981456da36", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_256]", + "fixture_hash": "0x25db6465abc473e58a2fe6ba3d314167558f8cfada99a4e577678bda422fd1b4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_0]", + "fixture_hash": "0xc29d6025aa4e2d89eadda7fff1825bf1b91ed3e04aa43034abb7e7601075ee84", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_16]", + "fixture_hash": "0x415843f8922b5100e0a55b3a7c4353f2fbf23488132a4e864cf4de9825a8f821", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_64]", + "fixture_hash": "0x32c582337ab0db889f6876afe0381969c82d70dd3829c902adc6ac5ae3489624", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_256]", + "fixture_hash": "0xb2967ddad7a7397758ee9ee3640781be1669ce62b77b7c8313cc5b059a00aa64", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_0]", + "fixture_hash": "0xef28e7cc448450c7ec9fcce18518a377df2b20e5a693db3d7ad4b88371bc9f47", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_16]", + "fixture_hash": "0xe45e442a4d203aa2a9182c621b0b0916ab5926306bb308d41287f5d684511dbf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_64]", + "fixture_hash": "0xdeef067e18e910034946809bb6a980cd91a87b2d94153d2af1f96512a07f2cf1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_256]", + "fixture_hash": "0x59285f62722799899a9f3f07f6e207699c9cb7bc954377beaca1714666610e67", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_0]", + "fixture_hash": "0x1f95c5103b931fa2bff586f3e0de522fab64fb0f908210e83e243c535f7477a4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_16]", + "fixture_hash": "0xdd0d90e19f86b5ab1e11be45cc41d071f7fea3a45e518cf88201b1f9ef862365", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_64]", + "fixture_hash": "0xa0bd5f72b458cf8d7912434909245680694a7490850032e652695a2bd93df906", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_256]", + "fixture_hash": "0xf76c1ba90d2f5005f9477ff2445c5994c6f9bb0291f9ade7e47d70b63fe59557", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_0]", + "fixture_hash": "0xe22e86188d5ad53913206b6a617bf81dd65a8f625ef357297bcb79290130dbf6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_16]", + "fixture_hash": "0x131f832623912479515216a514755dcf152cd32e3cd459cd46ba546b30fdd29f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_64]", + "fixture_hash": "0xf07abe5fcc769fa4f0f9aa5ab109c95ebf67bdd032120e13c954487195602300", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_256]", + "fixture_hash": "0xa0c29f7a391254f479933e322e182b424780085d1344e38d3a083e2178bf0645", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_0]", + "fixture_hash": "0xef551e073ffb7f1aa818d958add7b51dd84e2ca0fc8360f34dbb23bb9c249cce", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_16]", + "fixture_hash": "0xc92028c2a3450236e48fc3980883414aeaea69df7a3f274fa741ff6cd97f92ea", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_64]", + "fixture_hash": "0x79d274d59c72fcedf16787491ec507b6e8bcdbbe6ab214003d368b3176faa726", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_256]", + "fixture_hash": "0x69de5f32e85f2d8ced20370612153a78034ebcfb175f879cd61a4017026a5928", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_0]", + "fixture_hash": "0xad811e839a1b5e3b64acc3e492d2d85f4680ae3eb31c5faa235c8ef0d0e5514", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_16]", + "fixture_hash": "0xde8b4788e88328c251a81b96c9991d952a4c4f61d398f2e96b235a95e80bb892", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_64]", + "fixture_hash": "0x94683ceee12c2eb0c7a915dc4a28c0f1b65b97ad5a0330f9857e9dfcbea27ef3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_0-size_256]", + "fixture_hash": "0x8f3bcd256756ece8872356bc31fa0d6a434705e3b56c8d612ce59544b71b554d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_0]", + "fixture_hash": "0x3dec534e8f9af1665e6dab642fed08789ea7ff8419c7787b60e46013ee78f959", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_16]", + "fixture_hash": "0x48946409ce498c7e0762f14a0dee268c3ff1ea97420529618403b6584ec93770", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_64]", + "fixture_hash": "0xc486cf8a543e0d0b987a3bd98027e92bdf387e47b97d8b763f5b2688a0442f72", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_8-size_256]", + "fixture_hash": "0x46139965fa0b77b48f5c510e527aca120984a337196872af0b1b600978bbaac0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_0]", + "fixture_hash": "0xebdd4a27518eaf3657a3bc6112558ea760daec14d76a4478d33477cba64232ba", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_16]", + "fixture_hash": "0xbc074bdd3fa315e110d2a175f56bc98a2692f9958f3f7da347b4261b3b3898af", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_64]", + "fixture_hash": "0x67ff78c1245fa91977b93e669ceb011578778946007aa3cd7d4ddedad97e6dfd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_24-size_256]", + "fixture_hash": "0x92202441fcb90d8b4bb59372fa442f5669f976fa246a1ed082a0b230f2ad18af", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_0]", + "fixture_hash": "0x24c03e05769f0ea803744ea27fe7ba131e71af8ec669252febc19f5b0271aa63", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_16]", + "fixture_hash": "0x3193ea2f2253c652bd9e3c481abf5975a453ffe585f83dfe1df2391a0866e57f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_64]", + "fixture_hash": "0x8066bef974c30314e3e100367813955dde0ebbed915471201f6f4a0d50e1a4fc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_0-offset_80-size_256]", + "fixture_hash": "0xa6230e23bcb3bdcee84064c5b0249c1f1e5ffd0e825b056c34672b6a4b7c89d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_0]", + "fixture_hash": "0xdc330c1d2a524f874d8fb2475ab3190eaa91a8aba41a11dbf033fd7439b8c162", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_16]", + "fixture_hash": "0xc7d6786b3e9e7dc3a98320a47d6b6badff614ee62e6f59190c1347a9b292a303", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_64]", + "fixture_hash": "0xe996db897160756bfc904cf5844f30d19e174566d06bf2244297de5566a21622", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_0-size_256]", + "fixture_hash": "0xb125ba68904d75d71e70c70fde2f0db461fd21f2c367314230c69689a79963f6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_0]", + "fixture_hash": "0x5694fbbc3fbb471674062e58ef74ef0ee02207c9d234be20c63de998f539bfff", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_16]", + "fixture_hash": "0xd3e178823e637bb68cf9ebac9c30d08420a947a629952097a3a851ee01edc593", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_64]", + "fixture_hash": "0xa2f507d1c593babfd4eea232fbb2b8e5140eff3f7068ec2a3c4c47f201cbaf4d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_8-size_256]", + "fixture_hash": "0x657eb396b0dcc2117c40c57b8e0c2920a3a06c32eb1317c528acb4a407c4c61d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_0]", + "fixture_hash": "0xda135c100d9e1858ffbe44531291e68cf8c6f7148448917d8765cb5bbb52dd17", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_16]", + "fixture_hash": "0xf7a02ce647ac279483a14524c40eaf837fe247397fd9f942d2c181d1b370c2f9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_64]", + "fixture_hash": "0x12df480d246ad7bab6a4ffc79d46f95d3e475fc48bd91bfe61d14d9e6d981b02", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_24-size_256]", + "fixture_hash": "0xa5969788fef9a02a45f4274ffef664fac9b11726707a4bb7fb1384b22787907d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_0]", + "fixture_hash": "0x642b8a56c40548ec8759698b981ed789bc426d96b5cb47a1ddd2fc7f9f6d52d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_16]", + "fixture_hash": "0x70708d8b6c71b553971892daa037a737b2971f057a714c8f6d669984ba74f56b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_64]", + "fixture_hash": "0xd88d2cfe9ef9f6e06ffd38d21ad8b22a5616fadebeeb6614610154219b86d28c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_8-offset_80-size_256]", + "fixture_hash": "0xc49320f6fe78b53a0570d66ecb7ad949ae9b51b84b14304bad9177bc5464112f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_0]", + "fixture_hash": "0x190d31ac1ce2206adec96a8eea9e2b06ac632b85847677eb85309b82c8e44eb6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_16]", + "fixture_hash": "0x9b26d0830dc4c6a0f35b9434565ae5465eeb76eaacf9643be0a7b572e99996f4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_64]", + "fixture_hash": "0xdc852f364ec4c49d34f26b04df9a8a93a7cf2063595c2354906da34024c89d2a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_0-size_256]", + "fixture_hash": "0x1b6d6927242adf738fba4d5775ba4b2bc5c8a5598ec5e9833f02eb46d5df8d25", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_0]", + "fixture_hash": "0xc3667e6753f97ed5c115b22c4746654a19e8e86b31ef4b3684dfdff1f349181b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_16]", + "fixture_hash": "0x85d7afa1dabb3367763d712ccbef37a7076af162dfa5479cb502dce4d5bc3865", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_64]", + "fixture_hash": "0x7cd792be6ed03fe9eec94cdaf3c7c326f8815f3056d4f4e2e9a491ef057cea1f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_8-size_256]", + "fixture_hash": "0xad0775316e384be2e9e6cba774834209a634462a20bc4c815d85683d8b9792b5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_0]", + "fixture_hash": "0xe564319bf95f6fdcc8cad424fdc3f6265a5cbd34a3a7aa44cff8f8e89565817c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_16]", + "fixture_hash": "0x356faf94c033372f6d1d578cfecc61103a5c75821406538130547d511040f001", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_64]", + "fixture_hash": "0xcb193baeb9a6246651e632df2547f7f0b669eb8561dd36d423482c14c50ce743", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_24-size_256]", + "fixture_hash": "0x36094580cfdad398abcc60b62c8974880385e3746d4a5413c42f270c009e5022", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_0]", + "fixture_hash": "0xed5e429dced659c3828b8528e02be58172c66069b3a9bada4855c5ed40b5b8b6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_16]", + "fixture_hash": "0xfc3430cb3e5ee86df6d336d68405d5b2702953326cfa84dab36d3f89ab6f8359", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_64]", + "fixture_hash": "0x879b0879640acb493e95879ef4f31c86a65b96a499776bc0b29b27c54ee03ea3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_32-offset_80-size_256]", + "fixture_hash": "0xf9c25a7200ffe9fb70d7456da40d02ce1c3c7ab0a86ee524589a70faf2f5ad79", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_0]", + "fixture_hash": "0x800030e27b187d6f9a11c1faebf5a73bfc4f0de3761265c9511201e252ff26ef", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_16]", + "fixture_hash": "0x6523631e75dbd3d11a561bc89730e6bca391f40617d7b99647f7f67cdb83e700", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_64]", + "fixture_hash": "0x44514eee798da834ca8aee2d645e9677400afce48b1818d55faa16182c9e3193", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_0-size_256]", + "fixture_hash": "0x6ec32eb68bf6273129c83c249eb65821f6a812fb0104f9dc696047127ce5cc35", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_0]", + "fixture_hash": "0x4ee0d824655f75163499a2e2d3810979222014da29515d74e5b32074023f005e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_16]", + "fixture_hash": "0xb5c40cff24ecd96055faeba3487a15c8e3c2068a498dfcfff2ec11ca3b5843a2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_64]", + "fixture_hash": "0xf988eb1bcbb34c34f10add4a66a2a975e434e9de854311848e01fbbf15947c26", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_8-size_256]", + "fixture_hash": "0x69adec6254a8beb3ede53b7fca5cb350d3e905d9bcaa5e86c30c314e8a5e58b4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_0]", + "fixture_hash": "0x93da2d0ee7335907ef79fd70636ba4b377e375dafafb50c5a7c69fdea6e20b30", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_16]", + "fixture_hash": "0x1324c1786aafb48d0c5788b1bd879065488e650eb4351efb6b7c4937c03dc753", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_64]", + "fixture_hash": "0x27ea3ccfc19043cf38c309c3ecb61dcd5781343e18dbe7fb21ae8c9f4249967f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_24-size_256]", + "fixture_hash": "0x667176577e0b61578f858872fffe940b8e2f8fd8a2987c667855b0fb3e6ee76b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_0]", + "fixture_hash": "0x584c4bda0ffee8be9b3565c39c78cf225dd494c736df1e5b19ce0c1eba1ccba", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_16]", + "fixture_hash": "0x507747d1c298ee9420278b6adf7bc2ae8a660f0e8c1793c158e94659c2428ddd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_64]", + "fixture_hash": "0xf011cd20cee052f5846ba27908ed1ff19526ea811c08db6dff060539ae6399f2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-state_test-length_48-offset_80-size_256]", + "fixture_hash": "0xa35fc666353ba42a952872ffd982d13aa1002532494db25f0bb7b2b24cd21192", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-state_test-opcode_CALL]", + "fixture_hash": "0xae9241f21ad6f80e5548ec14d9949f31063e0978a0b00d92c4ddcef93b6dc6e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-state_test-opcode_CALLCODE]", + "fixture_hash": "0x2e4aab1113af54d487f662255075293d5da535db3bf302f49d2b8a2cfae9594f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-state_test-opcode_DELEGATECALL]", + "fixture_hash": "0x2363cb9758c777414e108a05d5401955c9d27052ef15b196b0ea9e011e13f34e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-state_test-opcode_STATICCALL]", + "fixture_hash": "0x77891b80ce44077a7f12f7dbcdca382905e6f2e7bea93b83a43c9fbc2e5d8f4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0xce69c3a4b727fdae27e8697d72c9e56880fd584573e5dde68175be47c5568444", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-state_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x502ff0ded12e8b89f153bb72f59125a4fe235e6b332886f8440d84bde8a5509c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-state_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7630073c387114817eefd2d11b5ea8ac56f0f5ac863f5885e435be3e7bc94e1c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-zero]", + "fixture_hash": "0x400eafcc49063967225aa481d4e708513b310a34e0a8ffd57512d51f7ada5cbe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-short]", + "fixture_hash": "0x5d26a6696c4c09eeacefea0156f187e4d363c63014667876a7ed6f5fec1f9a53", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-mid_20]", + "fixture_hash": "0x32e6d6b0999e4f663ddc57d19111d7f13c76aa5fde908ae33b81771a29a38418", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-max_20]", + "fixture_hash": "0x8c920d7f0a781c1cd92e335ddc56c75403bdfe82897030607689b5687b1f4bfe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-min_ase]", + "fixture_hash": "0xd1e52a1f1816414ecd539b79cff47c14a8b013fac56527dd0f2b5e9b4f55c9c8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-mid_ase]", + "fixture_hash": "0x8082678f8dd082a0c76385be6a1957e4802568f1f1357bfd156448c2bf7d17d1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-full_ase]", + "fixture_hash": "0xbb08fae014818df8e87ceb558a164a6b3dd19d533ea60a42e419b09a5a5295e9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-empty-max_ase]", + "fixture_hash": "0x97a1aaf227d7c2d25f5797b33df6c06a712a18b3a8e174b648801de4f5439289", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-zero]", + "fixture_hash": "0x757f9dc8877c96fdb765221d58cc1c1fbf82445d615efa09aaa995a91f017fe3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-short]", + "fixture_hash": "0x6acf85181acacc791452b8bbedc22ac6a5b39ac4869b20a7420eff4372ae6518", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-mid_20]", + "fixture_hash": "0x9ee93499948feee09b6da60cc81c9db12ae12aa6907d1b57bb65a4347927daf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-max_20]", + "fixture_hash": "0xc576a39e07341e0ace3692d0845c4da43dc18fdef6e119ae5a7bdd0ed8c796c0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-min_ase]", + "fixture_hash": "0xcf31ac9c49fa30d272e23ddfb70cd7238838046b10dcc1a4d0ecca3e430cfded", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-mid_ase]", + "fixture_hash": "0x643cb5f6a153a3d7236d2cc3a0faec68498caaa488fe080d75889fc6771e905a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-full_ase]", + "fixture_hash": "0xbed3e9398765255cda548917bff6b605202f553f0f898603d9a212b4df8ed280", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOA-max_ase]", + "fixture_hash": "0xca2eb788146053a3013410eaef8818f4201fd9b539fd770c3dc6b5493667a6c7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-zero]", + "fixture_hash": "0xc093f82b3cf75dec226b317e82991c69c3f2056721d2cc30c7585d4260814f4c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-short]", + "fixture_hash": "0x69f37f1d9a8bd8d3695228730db21b143846d18f831b56a9b0de0f8b1b31ec66", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-mid_20]", + "fixture_hash": "0x881f10474e795a121ee5486d21cd7fafcd9537bd06def605e6a7aed608e64a9e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-max_20]", + "fixture_hash": "0xb2adbf79ab86f08e48b20c15aae0bb34a5668a8ab71012aded11db000c8cc111", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-min_ase]", + "fixture_hash": "0x894448a373f9c551f9b914537715ad3a619437dae46a6753a220dc4497588797", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-mid_ase]", + "fixture_hash": "0x1743e34bba1d6732ffb66fb91fb439caedce5d52e39470f082cbac66ac744e05", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-full_ase]", + "fixture_hash": "0xe1b803662c80b80e5460d9405f8ac77584fef5bfaa32970eed60c73de5a9744", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-LegacyContract-max_ase]", + "fixture_hash": "0xf54fbacbe3497a8e0cc835806ac45bb829aeeb0620183c2c830630a77f8fbaee", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-zero]", + "fixture_hash": "0x5397c1c7dc560ce13ed621b6ea107b68e0948d05003896af6c1e61a13c2d84c6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-short]", + "fixture_hash": "0x926a91f527ae38905460bdf33148ad40c733471dead0ba1b73e638366c8b54c9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-mid_20]", + "fixture_hash": "0x42bc4269f9037c377f81b6aa32ee3981cbb7560f2b29ddfb16449b730b29a868", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-max_20]", + "fixture_hash": "0xf756c5e15e0cc2dd472cd0ce92286abab02052727b63eeb1e5f8c928cabc714d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-min_ase]", + "fixture_hash": "0xdb87f7fbbae3c71a83103e92574390dadeb36a0560716f03d6d958db4a9dcf91", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-mid_ase]", + "fixture_hash": "0x1b5f8d7ad1d178f9742868d14111801d3020dc514b9b207b184564dbdc1ac752", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-full_ase]", + "fixture_hash": "0x8780bddc619f77a765ed2836a181ccd1d71f7c0b8db94e037f0cab29d54870ca", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALL-EOFContract-max_ase]", + "fixture_hash": "0x39c73328373139486d50742ce9e1b5b0864d0f272ed55dcb05b3e8e4a3f2c327", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-zero]", + "fixture_hash": "0x39845d482dc7d55f9ca3b0a9002c70e7801751867d490f49ab046091beccde0a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-short]", + "fixture_hash": "0xc905fea7ab369330bbfd15b24612d11c942b4cb4bffceabb7964dd58170f694a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-mid_20]", + "fixture_hash": "0x9b8d59ecf92206c9643d1676c0ae07c63b70f22907ee4db5f7c50eda9e11649b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-max_20]", + "fixture_hash": "0xe382460a9ba03318ec33757f09ac80b69ca9f8f91d04e1fdb70aa0e23031d1ea", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-min_ase]", + "fixture_hash": "0xd4f6efec328d097a79b0b9fdbedbc3ea72e17dac84a1ab348c516d2d201d7b36", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-mid_ase]", + "fixture_hash": "0xcfc580c98ef2a45075eb84a577c7b4efc74c170072026a51daa401c13324606c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-full_ase]", + "fixture_hash": "0x55cc180735f4db8e9df232d457d20c465a3a1224e035c58b7d5560214155475c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-empty-max_ase]", + "fixture_hash": "0xd0c607d2faf6106101df2968164eb7c4d21b7d04182194d504575be4964a2776", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-zero]", + "fixture_hash": "0x191b6cbb6e14813d8c4a153736bb528ffeaacc796b318a2bfdc054563519d97a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-short]", + "fixture_hash": "0x560f31e614db5c90d08e1212b4e6b67e4fa1feac03a040d4d76059010f6b9354", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-mid_20]", + "fixture_hash": "0x35e08bea06cbcb240b3638c8f0cf891a74fb48774ac25b938d0e7013d9cb9056", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-max_20]", + "fixture_hash": "0x286725dd25be7f78c75463861629a0a343ce666a82b685cfb00eab7a22754518", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-min_ase]", + "fixture_hash": "0x9ce3faa5d4ca3d4c01966750dc046e772a679e6ace7c12be1595d8d4205f9d17", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-mid_ase]", + "fixture_hash": "0xcb9c1fcf8a08117de8e13d66f2a5afd47f67cd991f57a38d72ceb7688e507402", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-full_ase]", + "fixture_hash": "0xec2f3ca9c32b6b282381d42ea1dc376dc288c8c4a9c807f870c0a78043a39944", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOA-max_ase]", + "fixture_hash": "0x4ebfd1a553cede0923576d5c16dca63b3ad641af14ad8834435670ac0af2df69", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-zero]", + "fixture_hash": "0x8efaffb0e1c8439808823d793f83ceb2d0386f9e33247ae8f457656eb7fd3188", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-short]", + "fixture_hash": "0x16fbac0db6715b1ce26bd88526b61899f8ff7a05894aef7d87900424d39116d9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-mid_20]", + "fixture_hash": "0x6b326759078f1f0c11822c2143bea8c93e06c0568c876020819e2a758e62086", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-max_20]", + "fixture_hash": "0x1a2eb20fb04a498f15d2782afab6d17967a9d0af3df58dec6deac2ae938b00b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-min_ase]", + "fixture_hash": "0x2d0cbeb8bb7e0e7622893d63e5bf5c13b4021112e9e1f06c1603c58ac921898c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-mid_ase]", + "fixture_hash": "0x8d28c5bb1161d390886eed4014e9e1b4f34754b2f74153aecc7956c20bb467e9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-full_ase]", + "fixture_hash": "0x6af6633ec97c4d8b495e339caf04a5ed9572b40b91073019d2e1d80fee6bc4ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-LegacyContract-max_ase]", + "fixture_hash": "0xcb933ea4d266781b0d48a44921e72845b166bb2eed3779cd2a40ec8d4ea19b50", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-zero]", + "fixture_hash": "0x1f0939809a0b200bc388e10f795dba29ba909bd044b2353d6a4b08619d934455", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-short]", + "fixture_hash": "0x96ae1c91e53e4c4b2c951c48f39a31ca1a52b36a0e395d8ba3247eed66af778e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-mid_20]", + "fixture_hash": "0xc2b14950c0de1ec2dc2386075aecd0f8cb6d6c49df5a37417f4c8f9bb22d6d77", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-max_20]", + "fixture_hash": "0xbcd2481e4690753baec856180235ae197a3c407567e76927eed7f2daf612377a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-min_ase]", + "fixture_hash": "0x37e47828c1bd5192f65288fc61a3cf26c34fb23f6ce3a3da089803697c09f8d3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-mid_ase]", + "fixture_hash": "0x96424bd460d20af82637e78509e272fb74cc059e0ede2d15d041087aad45d7f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-full_ase]", + "fixture_hash": "0x65e931f4648e8f4051a7dfd9196aaad8467d6cb7449ebc31d310c665981da0d1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_CALLCODE-EOFContract-max_ase]", + "fixture_hash": "0x8c749c71b56772f303eaa8e10cdfa2a128a643ed4895220145d9930718614146", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-zero]", + "fixture_hash": "0x7ea2df66b277fd8d81e8ea2255415e690e4b835e69c1fc17ab4bcefb72b93378", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-short]", + "fixture_hash": "0x38cb55148be86f9685f8c739ee4280f5213251d6fd1f34be144e880f4b34cc4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-mid_20]", + "fixture_hash": "0xa89ff4cb682d2069fa5b260450b4915bbd1b0278f70effbc3c34dbb22a5823ce", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-max_20]", + "fixture_hash": "0xfe6af5052896dc031c75300a426e349303b9cd08504c695c49b615cfad1a3406", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-min_ase]", + "fixture_hash": "0xac8aa2968f134237ab673568c89dbdd85ea2d5c4d42af7fa95885a9ff4f55e67", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-mid_ase]", + "fixture_hash": "0x51f605780db9daed1e605f39fb0dbc4f2f990967507f39b22a399107a28884a8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-full_ase]", + "fixture_hash": "0x475afd6f5d476a4426937d23ee95826f0e033d3dfbaadcdd43d04324d251a04c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-empty-max_ase]", + "fixture_hash": "0x2583387c5f6a8d090189298847a05fa834e1d66438e107725c7804d9a72e0738", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-zero]", + "fixture_hash": "0x478e100448a4088d12132eb2843a926d550f1aa5d85943aa1d8e57420f2422bf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-short]", + "fixture_hash": "0xaf455effafafa7b75ba7c7707098b3596ed7ec30331a0987f56d466f23666fbd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-mid_20]", + "fixture_hash": "0x4aa33cad7c056121659e9b565449534c4dc8e9a208af71e214886168bc4f05c8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-max_20]", + "fixture_hash": "0xc21807956a1279f38a072fd2b36440a41faccc46154c799cb23462babe5fdd67", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-min_ase]", + "fixture_hash": "0x6726e81268dd3bb95f0d55377c080cb5d7fccead58dfb3ab9c96e3c2ad38af5d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-mid_ase]", + "fixture_hash": "0xd884d855c712b0577b66b561d4890425c1681e325c0f435cfb67d76242d9baa5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-full_ase]", + "fixture_hash": "0x5d7e4c04d4ec3e0999b608dad60ce295deeacd256a488a04d8b198a034bdf6b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOA-max_ase]", + "fixture_hash": "0xd21ae703674358055ca4ca477ddf0de707279353249c169ebf58327499428968", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-zero]", + "fixture_hash": "0x995f8cc3883d303bc4289680544b59f3334a2ff1d9a0d016060edbf48d0049fb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-short]", + "fixture_hash": "0xbc732d43625d8666a4fdad8baf06573c83e1c1b7aa51ddb7aa0c4e294a1a1c1f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-mid_20]", + "fixture_hash": "0x190539e1119c3f65119100ee9a5e3a14a5862e975b28bdd955e77d562b2ed239", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-max_20]", + "fixture_hash": "0xaa974543f45f67b46735aad8d66516af6d66b98b21731442065e83f0fec5ab66", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-min_ase]", + "fixture_hash": "0x45933014dbb0fe655a5b64aa0f6f3eeb5985f7e147ac92db8c89a0f4e9ad5237", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-mid_ase]", + "fixture_hash": "0xf167e13415b5e8932b4629b6e15b92ef17092e7a63a223a088f1f5d383651a1c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-full_ase]", + "fixture_hash": "0xa1b3e8f26c53302454330cb8de5779d7a6ba478ab2c9c1815698831ca50e04ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-LegacyContract-max_ase]", + "fixture_hash": "0x8bf7607f6fe729942f6e8f46666c33d19b919283ee7ff8a0966161eb8703e0ea", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-zero]", + "fixture_hash": "0x1940ba4d31a72d60738341308d9d0fb79e4130db5df8db5743132960dde211e3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-short]", + "fixture_hash": "0x6a9df7c6efcf6476b4138dd749b3db105d6811c6807a1bc00ea93ee2cd8153dd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-mid_20]", + "fixture_hash": "0x38ce3dd2045b08a1aa7f5d81677a518d0458a300919c7c98c9025327315c326e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-max_20]", + "fixture_hash": "0x6bcc7fb9378050103ed23bc4f854e42b150b05384d7e52094a6ee454fcb8d33a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-min_ase]", + "fixture_hash": "0x8175842999bc198175f6002df76b8b67eefbb4a2b3bbdd04cd07d245ada2fc57", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-mid_ase]", + "fixture_hash": "0x4c6e44cb9b0b504fac50fe3cda08656a806057f3dd9ddd7c472a7420b0fd9499", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-full_ase]", + "fixture_hash": "0x6b4cf1a5855ade695dc3c2aadad2d6257bd44e30bc0ed964d0d3d6575f7b1cce", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_STATICCALL-EOFContract-max_ase]", + "fixture_hash": "0x38f8907e145df621516ae4546473c72f8a7bb21860bdde68b10afc8525c4f031", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-zero]", + "fixture_hash": "0x625cf44ba9ecbe95075fdd4c60a5294f34a968e17286f9c8106a732800a892f3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-short]", + "fixture_hash": "0x4342d973ea2ff556eeba8c93fcc58e13b086ecc9e687d1e59bf35fd490146b36", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-mid_20]", + "fixture_hash": "0xb2000086eedc1f751e72128d8a4b2eee287031da8f4482e9e801f4133146a87a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-max_20]", + "fixture_hash": "0x36b0b6b072a347ac863e7c37ed9640f12e1e0c7abed351f085bec388f83dc6f3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-min_ase]", + "fixture_hash": "0x61262dbf89ebc66cd5dd6b200d7a2d9723c478260b1f20fbe96991986fa5354d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-mid_ase]", + "fixture_hash": "0x88f11b5a54ec8c61ed1dede35fc563d243b99d1ce967090adc217d50612e2511", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-full_ase]", + "fixture_hash": "0xa68321a00f4545aa4e8df4135222a87c1716167fa557341e7ba7f5aa6088f88b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-empty-max_ase]", + "fixture_hash": "0x542ca9f2dedfb90e18a79c19109483be10ccdc552454282bfb754d1b8abb0247", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-zero]", + "fixture_hash": "0x1bba4e60862f76de46ec1014a95a08c85a3e7b7d4a332f3ffd118f4fbd7a90bb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-short]", + "fixture_hash": "0xa440286b2680bd8c6fd5f53a0e3446ff9c357122a31c8e2d70d5618505b927a0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-mid_20]", + "fixture_hash": "0xbaf7f3034f9ddc7891a81216357c2a924a8ef7df8fea50ebead14ae3f250eba6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-max_20]", + "fixture_hash": "0x11eaa93ee2becef8c6187047ec2b2b248e431864adf76497e9bbc39ba600aa", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-min_ase]", + "fixture_hash": "0x77d82c96ac430f0c82d1f0ef964f4fc5228e576e5371d7b14d6c6da7777a6a3e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-mid_ase]", + "fixture_hash": "0xbddc86f627a8f7cf5f193a05e847799cd0f4214bd39c0b28257dbf8522aeb704", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-full_ase]", + "fixture_hash": "0x31486968c88946b7d9bf8975d59931ed23680f9edb630c484b3b58cac53e64e4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOA-max_ase]", + "fixture_hash": "0x1a21fff38f08321ad6b0c1af08b8bb670a85fb6d2672875d7989c3c670e55c5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-zero]", + "fixture_hash": "0x1a04495b428da93cca1b69e291164815d6513e8f7b8620abbdeb5a90fdcf712d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-short]", + "fixture_hash": "0xc99a927c2cc6434f69b3bee74c54ecb519accf333571cbec008caefa4ea5bcb9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-mid_20]", + "fixture_hash": "0x347b0775786b1f2f057f81d735509f835d59d06b3e0bca149e82f1a83b4a3489", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-max_20]", + "fixture_hash": "0x647db519fa13c785b696fe3520f7b980794184770c7317c75f8e65bab8a93ebc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-min_ase]", + "fixture_hash": "0xf772eeb3f2ef1cd5a2d59ed9880d613503d69813ddf1ec6a7031dac10246bc78", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-mid_ase]", + "fixture_hash": "0xa4fdebdda95f1149fc73fe8dd60b0c65cfd70ed389b6527df33eae81e2768068", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-full_ase]", + "fixture_hash": "0xd2fbc8a358986318d272ffe2adf6f2875b95091ecd5bf4bfe52c825dc8d19218", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-LegacyContract-max_ase]", + "fixture_hash": "0xdb8424b9e019ebb1296c77d8412fe605672827c2cfaa2f55b5542b5f6b79d0ff", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-zero]", + "fixture_hash": "0xd51159088c06a461846476a355401d133998f337bea8ec465064acc95b6b2e47", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-short]", + "fixture_hash": "0xddbeab80197316dd6ebc6a04a35fd5ed03ecaa448ddab18cde3ec4a7a42b8c04", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-mid_20]", + "fixture_hash": "0xdd26724fed285fbfbd3f42ee22c586995f0b4862bb55efe0f8d3ffabbcc80419", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-max_20]", + "fixture_hash": "0x4c702d46d2cd5e508b4634ecf2c1a0a8cbe91ab666b5f85dc951f8ea67f2992a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-min_ase]", + "fixture_hash": "0x49729a6b406319e9e662624eefc981a7b19f515e5faaea80320fd92328f8f999", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-mid_ase]", + "fixture_hash": "0xe65de92671abd4f73b02e8fe213013429008f6f05a15c86afae73cb1ad9d272f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-full_ase]", + "fixture_hash": "0x7f2fa09253badb1b1203459fa194de9359053c0117b041d5654a7c368e8f9fa7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_DELEGATECALL-EOFContract-max_ase]", + "fixture_hash": "0xe17cf1cc9fef2ded420a70a37c255eaf273bba8dce7c60f96b4470b218505d90", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-zero]", + "fixture_hash": "0x428b146a5f3294e61b8187897e36f9f0ce8466a0e809b2f170a0e0bfbdafa4db", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-short]", + "fixture_hash": "0x1a90667a7ad31d8ca80b3424c3eef0b7fa4e12b99fe9bbce46aece1107596dcd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-mid_20]", + "fixture_hash": "0x98fe3b238c78b9a0cf217b0df363d700665a5adbf32c83582144566b5759a5a3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-max_20]", + "fixture_hash": "0xf05aff1bda6a02511a1d51270d93e20d4cff8fde24e64de0cbb605c34cd7cfb7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-min_ase]", + "fixture_hash": "0xd44460283ce8ca3c0c664cb5b5511ed2ea548717a794f9e93d31efb16324ff0c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-mid_ase]", + "fixture_hash": "0xa5c05b55e1ded838530e41ad3117bd073fd0525ec07cb322054618f3ad7587de", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-full_ase]", + "fixture_hash": "0x69a0156bf4e0a32ee01aaf3a9d990379bdf45d9b1865f77d59ce502b5b55073a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-empty-max_ase]", + "fixture_hash": "0x6ab944a56ca25196c6bf50e9cfb3f2b6f6a04a9e20075cbb4869b68a43aff067", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-zero]", + "fixture_hash": "0xc1a6ab2501e0a10f41f535b0783ba33cf85734ad55b8dfb715e3b3ec301be0fc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-short]", + "fixture_hash": "0xa0d599fb4ee65d7fb01f320c4f11ff893ea45b28a2b38cf75b0049c2f8e36bd2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-mid_20]", + "fixture_hash": "0x4fcfb727450285e0b264c6478cbf989effd67f0a5deedc2bd4abd2ac5c78d29e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-max_20]", + "fixture_hash": "0x56541e101b55f281467ba42cdec4494bb6fef2d2c6030e45df1eb7d6a65ce770", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-min_ase]", + "fixture_hash": "0x8b2eb38d2e9c5226c87779929abe1fe6acc13e0c223b97c7667e03e8fbec1317", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-mid_ase]", + "fixture_hash": "0x851e10bd18c2a3f68d1dfcaf18d77fd734cbfc2722b90c7c4f04e1d190de6d78", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-full_ase]", + "fixture_hash": "0x3881d6caebc739ddd0218df03bcb935ae367ccda63d2b6475dd96a2c21af0e3b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOA-max_ase]", + "fixture_hash": "0x1c34429d6e8cec53bb4ea55a98257eadd800f281fa1db9a46ec530ab2160c89", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-zero]", + "fixture_hash": "0x98676cd91fa638992dc0db762cba1ee8736f6e3462f7d5a02073e9d3418f27f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-short]", + "fixture_hash": "0xe47b6be2ef9ab005a9c039c99cf76d4a9aff2c92534e48a06857f3dd618f7fc0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-mid_20]", + "fixture_hash": "0x15b24cccf586190b4a7bcbda3fd793c87f53e7cabf69a8db77a5996f141eb97a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-max_20]", + "fixture_hash": "0xa7ec3d04a84e08f24f511676dcdcd724809767514ebf6128ba7c92d5765ceec7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-min_ase]", + "fixture_hash": "0x69c19cf5ffaf6157c30cb210b219138bffb804f27ff670f1f134f7722711e25", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-mid_ase]", + "fixture_hash": "0xfa73c7f98bf51307586ac7df912f55ae49a8b24c0fb9230ba5d2ae8af78644ee", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-full_ase]", + "fixture_hash": "0x31dedb2f96c2844a08f9164b0868d2624b32c76cff050a36d02b9f74266c175c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-LegacyContract-max_ase]", + "fixture_hash": "0x68b9323b711b5c5895c23606298ace3b592bb5fa7650b83322013273f3aa767d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-zero]", + "fixture_hash": "0xded8c0997cbec1fbe704e11d3ae70a5f0a349285e2a40e4bf7f458552f223db5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-short]", + "fixture_hash": "0x5d591ee6268c554ab050b0349949d55474cc88eea7e984083bb1b3347d2982b7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-mid_20]", + "fixture_hash": "0x535a6d5d48c9b122859238ccb577277e88208f3ba01443f8355e05d6767d7250", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-max_20]", + "fixture_hash": "0xeeea401d743f2acf0fcbe5f5402c3d302e4613d269648d68aa5b2c3f6248e6e7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-min_ase]", + "fixture_hash": "0x395e33c7ed78225300f20160a12d3c1c8346d694b6c423491194941d26be7f1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-mid_ase]", + "fixture_hash": "0x2d69580d370570870ca20460df5114a8787c81969e84854353a3947b9a528756", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-full_ase]", + "fixture_hash": "0x3459bca5adde0f71d1ce633d78401d8290240f55e2d9c599bd13fb510dd8d77e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTCALL-EOFContract-max_ase]", + "fixture_hash": "0x9b33bcf60b5beadaf6844aa549aa28a0c125a5fe406e8b2e066bd980551a3f0c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-zero]", + "fixture_hash": "0xbd926b719fcd87f2a78f4bbaa2311b01e0aafb03d3a16d907a9557684f816d35", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-short]", + "fixture_hash": "0xfd0206334aaa6b3125a566f029c06a0013160abd00d11f6ac5529d23d409d24d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-mid_20]", + "fixture_hash": "0xf6fe694a6fefde96ebb0a51c0389636c84e6fcca8d3ff4fa5e85b385a1ec2e60", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-max_20]", + "fixture_hash": "0x8aea78f7305ba1c03a0bb0b55ae07f320da7a8c878e629dd6a75f2b2d27dfea5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-min_ase]", + "fixture_hash": "0xa36f61775329e3ae7d60b8b771ba1913706ca342acfe0002dd4747c35f97759d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-mid_ase]", + "fixture_hash": "0x5e115685b71b496db4fb1e78e43d437027b31ab646f5ac2e1ddb919f2e46456d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-full_ase]", + "fixture_hash": "0xe7752e5721a88a52c0740544601ff4fa04039f36f86c0e223a998273893e31c5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-empty-max_ase]", + "fixture_hash": "0x568d59a15c1d575a588f99c21e25855b41127bcb91bc57da9aaa3a0359c01154", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-zero]", + "fixture_hash": "0xe5878fea4db61d59bcab319f85a1e9273b6bc1e5a944f70e28b540274ca9fe22", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-short]", + "fixture_hash": "0x547670a6f43b2fdf076685b67c5c404135f299f8b8a1c5478ff6c450d26680e6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-mid_20]", + "fixture_hash": "0xe40244c50e0f5edb4e79d5b2a361653af85a591e0aefd91c88308940cc2a8983", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-max_20]", + "fixture_hash": "0xd50c9ce39ec4f1dfe6d2b5f5881208a53cde147e26396baf3385e62b87151a34", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-min_ase]", + "fixture_hash": "0x936035bb8b713240721b9c7f5cc8c68eec0b7867e6478886342d6b4923301d22", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-mid_ase]", + "fixture_hash": "0xe26913db3131e48bd53b8a444fc9aa07161415760606cff1d797045ef1e6dbb5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-full_ase]", + "fixture_hash": "0xb1e38cd642ca543709e028e6efd05ca90b0bc7387697a06cdb6f1f612edaa92f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOA-max_ase]", + "fixture_hash": "0x630b24d582e4d17ff17dd4d3d5a1ce6b2292ce25998242d174175b19891e1711", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-zero]", + "fixture_hash": "0x8691c3e3ed915721aa705ac8a52feec6071e553690f0fe62e5f22066dbf8feb7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-short]", + "fixture_hash": "0xfdb2d58b90641104b04333bde9d1fb71541646045e827c07d71d4264e0c82c06", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-mid_20]", + "fixture_hash": "0x6c75153f9894d103cc7c92dc1ac38f778172d7fa087c4aa96e083cfcb22bb1c0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-max_20]", + "fixture_hash": "0xd362f748c38c5ff07fbc7b88cc7c53b1daf30900ae95a66d2cabd390379107ab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-min_ase]", + "fixture_hash": "0x21d04264cb3f9e04cd98b39a79418f8f525c9a4d41c12161d1e9deb1b75096c1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-mid_ase]", + "fixture_hash": "0xa8c1668aa054d30e13eb996beca0d55243049357cc2bfdef0ac6f6094b96abf4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-full_ase]", + "fixture_hash": "0xe28a7780e1f8f32798a2ba1648b15a6f1bc6cfe5d9c4c225538b8833980512b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-LegacyContract-max_ase]", + "fixture_hash": "0xa78c052eef224b8041503b3616391f42d058dca27c7e41efaaf504ac37690887", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-zero]", + "fixture_hash": "0x9e25058978c4b201cdeeaacca0edb7c9e8f20b3a4b0c61db74cddbdce7153e5d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-short]", + "fixture_hash": "0x67ef70424259f523f52a5b54de98f938f52a450fc33743f97ea727afbc4da49f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-mid_20]", + "fixture_hash": "0xe749fdb82c137d51ccdf04c8b72200f386cb891b376f5f4f44a7840a91d4da0f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-max_20]", + "fixture_hash": "0x7d4470a7d1c1f8b73e92f253dc8463436995a1d94ff54f46874c148a80e56756", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-min_ase]", + "fixture_hash": "0x4699648c76938185ef1a9b30c27cd9387374b1b4156cd3df0079436c4ad333ce", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-mid_ase]", + "fixture_hash": "0xbb3cf4cf87858ba4441bb69d674566bebfa5beda7aa85c6ab3c87472a4e90e18", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-full_ase]", + "fixture_hash": "0xfa15c444c6eb46e74422170c5d339363511a7ba4413ae5dae23555ef25dbf459", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTDELEGATECALL-EOFContract-max_ase]", + "fixture_hash": "0xb23fa84b803a9e1760acb7f41bd0914249d5c63ac9a2734dbda531eea8478b5b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-zero]", + "fixture_hash": "0x1b4020cf435751d78aa083b43ef26384b3fb0d32d73890d4bbb461fd0261eb7c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-short]", + "fixture_hash": "0xf682e88da7e7b8cd2fa75b23230a7c9f571c31535079e15b03c6d8467b689383", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-mid_20]", + "fixture_hash": "0x688738b388d300616c9fe4072a41832d7f4edcb5d5df075797e070a6fd288656", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-max_20]", + "fixture_hash": "0x6d52348ece0f5f38bd5fb94f7179c861489a80cc19b663879b39d3db7d79d3ac", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-min_ase]", + "fixture_hash": "0x26980dafa4c0c53983a750a4d87318a6049c81e86271bec0c3e3967be02d6279", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-mid_ase]", + "fixture_hash": "0x6b06ef3da39eead836c8e8bf1d2525a858e9705edd3360747a0c49f3269dac8e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-full_ase]", + "fixture_hash": "0x3a300a344157411a6278afb6d802d4342fb3166b1ac3e7ea9bef3ede54a3a21", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-empty-max_ase]", + "fixture_hash": "0x1dbc628f796b9cf7ec65081bf55d062a6adeb67f71de09ff2ef2b6b3d82d10a2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-zero]", + "fixture_hash": "0x42eaf8132eeebf680cdb418d1f8ecf8f5e03b240fa8f3ea092ba37f372cd45b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-short]", + "fixture_hash": "0x42ddb9613b52791317e68c9a406fb2c955541fe55485200c22f9ada362b87199", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-mid_20]", + "fixture_hash": "0xa25772593c02ba3fb907a6fdac266d8bf1505b2b5712463fd6beb8a8cf6933ab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-max_20]", + "fixture_hash": "0x875eec400a41df9183ff2bcc337c2815f0cb80dbf7eb393cc6e8c989fc6e333f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-min_ase]", + "fixture_hash": "0x27ce2eb065261ffb0b133ede2a854187231df1bb311ff1bca44c816f2af2be18", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-mid_ase]", + "fixture_hash": "0xb24d054b8945cdc75b9026f9a4d5c581cf161c61a587b93fc7ae8b4879b1a26d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-full_ase]", + "fixture_hash": "0xdaf3b6f9df9866602270c9c13c1edd67144bcaa03292b4bfd09a6c3e759a819d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOA-max_ase]", + "fixture_hash": "0xec5aea17b6923cc02d5a755279d58b5a7617e62070828870cd07d9d3bd51234e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-zero]", + "fixture_hash": "0xf5ea2e80711fcf66f157a46bec1f8b7852e45e9ec50e80134b27641f5ce3ae87", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-short]", + "fixture_hash": "0xc592d58ba8e6614b1982ed119507300844e2f7e8ec4b58647394d1a635caf785", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-mid_20]", + "fixture_hash": "0x578bda4adc39be824bd66422b27b993c9a4ff00d3216e8760f2600645645004c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-max_20]", + "fixture_hash": "0xd8368e58b74072088caabc560e49ef08a28810ed991b986d4a33e494a366d8d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-min_ase]", + "fixture_hash": "0x9a557a22b94e0791a341be3e8ff8406c9a7dc93095193798ff26d4fd7587e66e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-mid_ase]", + "fixture_hash": "0x6f64668eb3c7d24f6101d085c2c777055cd4bc07503aa3802a1be333b87dad55", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-full_ase]", + "fixture_hash": "0x368b86155c03db6d119115fa78c12283ab64d6400164e732caf222678817ce48", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-LegacyContract-max_ase]", + "fixture_hash": "0x951929a0cd4e87ad790dd0784caa221f20a24f7dc50fe56fff9e1127a1d1c676", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-zero]", + "fixture_hash": "0xef0743591fe4f5b13e5cf672f28da10e648fc3e0434157b90276db282736d259", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-short]", + "fixture_hash": "0x7b269ba2e914d2b93a12f003a0428bb0f4ffc584c0b088ce017260e1f6ae21d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-mid_20]", + "fixture_hash": "0x53823c187641f571b12dbc53dc78a4a101185b7bcd749ff5ffadebb78850faf1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-max_20]", + "fixture_hash": "0x95c9f6b7d4d81c73b9c5bf18733427e8446c8abba0340df49d86c1af6e48606f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-min_ase]", + "fixture_hash": "0xe44a40775e2910b5d7031f8e5ced34765ba7e14f2bd70966a32c14c233ca1adf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-mid_ase]", + "fixture_hash": "0x3ff557be1900d3d818e00a229059b06573b67efa9de8767c970ec79c49e966f7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-full_ase]", + "fixture_hash": "0x31c4834d2f571825c29bd05aa89677fdc04b9853b75866b53cc7e6419e9dd34", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-state_test-target_opcode_EXTSTATICCALL-EOFContract-max_ase]", + "fixture_hash": "0x35f60aaca0336e8cd39a139606f16f5f1145d0475196789b231598e7834b62e5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_oob[fork_CancunEIP7692-state_test-opcode_CALL]", + "fixture_hash": "0x93b556382d29b51381039497c0bbff1f7fe578cf11e820eb9699f0e65306627a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_oob.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_oob[fork_CancunEIP7692-state_test-opcode_EXTCALL]", + "fixture_hash": "0x5daa4589facdca77d4011fb3fa062c5a28a4023e4256d18e837e06f8a679d1a1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_oob.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x3012a5f38dff9f6c5a7c756e89398de1d021572e62f8b961f7321d14c4b67220", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0x2c88d34fd836cbc9a1cd063661c66ab3f8a98b95ec30ddfa9e1f9d9782ff7799", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x7492e53a24419975d2b0097fb70e76f0b312dc2d60e155848f632f9cd718dfa1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0xe151861a4b990e88c6fe28938032c7806f59b38828874afd8923ab9fc3af76c1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x455a5a1de303cd81d2ec389193037a7f524ed19cbb2312521f7ce61c1614657", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xbb964dabc7382e62458892b8fabf06b53492d829cb783d880dc2dc1a73266930", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2e3ad71395c51c88ea82310b007b0c56ed09fe83740fc41008e18285faee8be0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0x4c3aa3ef22997f9e5659a3f74692385ead88f9e72edc0edceee1be1643217635", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0xba6d59998081d20f627a77f0726ae4890e00d3c97ec106d06d9b16bc405cf373", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xffb1185431e19c48f18f0ff2b6df53523ac56bd3810ec8f6edf49ee7188fcb51", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x12d21ee2cfc6d490511b2fe3295751361adad1f72b81fce43f51b839e24ba58e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x1e2a9544c8de14daff137300c38a6dc2b8e453172d2c3f6b2d6c712288ec3362", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x27b0df3e67c86983b4bf24f57f9c8d2e83ee4c947ddf3f00083fe17b15770822", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xaf69253665d6beb8a3f8f1162f646bf1d64e609a526905674e551e3e9d33c190", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0xb13afd0f5492b63eca8351ec47d87a455d0e4271096bc89077dc0b5687ef86e7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x98f4a745a2cbe5b4fb6840111b72795cd4dbc96b8337d85558e44f9e8b0af93a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x678e3d9c20d540b49a7ebde30d43370208aa62cc866ec51059cd6864bb24ef3c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0xce4985642ca10dad73e6b2ca09302dca4731ed2d333d59177a5a3b9473b0c712", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x63aaa178c1bca97fd51de4bf424e98b5182d20a169711843c15a10d4576cc462", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xba4fdc3e25f229df61f8db463f0da9d74e1a4146d050d9168c7f165cb9bdedec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe8bbfdfa880b1c5bf271d90a27f5217f8a4361ebeb1975f1042cd6f1601681bf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0x5ea80b3163a3e384dbc737fd784347e68560b641b49621ce1cd62f49576f8967", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x169f82dbad2f670bac377057f4978c4c671bc61ed5b99f2449fda79dad6d7cd4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x5de90092787b050dcedf0902d6182a296b1a0b8cd3b057c97cfffcc3fb1647e2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0xaf9b3e1c7520ba282b45b180cafab734d24aedfa6695263d7af32552b9554c31", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x61fb824296cf30a853f1ab5ca1b33f251fb7ae8d022f3993b52674ae96853b93", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x824c6e0b3d0b51c1ffdf910a9b1e8334013742de4874de762511e494b01d988a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x98a4f5484a943fdba424abec5518b3bbe4d26bb836bc357377b678e3e263947", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0x6daf7f29bce792273d1171415162389c6497f5c5a8b851c16a647e378174100c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0x90947e63c1b9cbbb690207dc6d25e0c4642d8cca401df89df7c69e0bb52a1500", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xc63c24fcca63c95a613a919d287ba89c0785d18c6803d77a8521373ff1880f51", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0xd54ce30f0681c536f3d360665fb2a0d1bdde49136dbbacdf40de462ba80786f8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0x11928766a9ccf88fe1ff7427f2354535407819f083449f92fe223871f8929335", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6844e5f0788a2b71dbeafb99480297531f4b74a0b0beeeb3adfbe6c0cddf7bd3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc45e72f69b70eb6942e3afa71a15bad6b058afba2d168d3c57fce71b27ba1c62", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0xe0f94faae3c883722dbb65ab3a227879782bccdc5b1d0b985c679533d94a0093", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0x507c8aea0c32c394530f27b2d990dcb047038754e1f53a2c964e2cb9994775c2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xdd3bf2212b4ba9d31b55950ceae72a16273374290d95c985128933a51dd39507", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0xd7cec73a6ea33a206c67ed41d639bff129032cf63655f8fecd2c5d8224a05816", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x825d526703c17c56ae7ee43f4eb75180aaac0df86e44dc7b1e69fb6818f306bc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xce011d694ac615ae4d7f4eaf300fc585fbf5e956eb04f2e6cf9ca6167c193961", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xce1fdbc411c477b9308fcaa3f5db601709c1df1ff1bf04ea3f7818c7ba36a856", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0xd314876ac1f4d82e5a8b186657db86251986127bb58c98821dbb47816815f073", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0xf8b4fd800e5185664d94dec2aedb50626ec187fad535563c1cba82e114144643", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x10763b743ed21da827a335bc07a06d1fbf4af204474082a4a429d4a6f31f336e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0x895e293f5265e5faa86e730cac789e91d5466ddf2d3719c164deb25847590e65", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0x7db2138841ddd07bf4dcf01d9b74250c6ef023e31921345a69fd85a82ac89e77", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1d47c2b856a03e74b20890d4b90bd93dd8ea70b852711a185b6eb9e5da2ca9cb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1824ac1ab3a0f6fc4b2a5f7ebc93def2fef86ab654a582d2739e1ede95e1880e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0xc0726f22c0dcc87b4fd59bf5409bfe8a952d4cbfb73b70253e04b249ea4c5069", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x1f164eb7d9582f5f1f26ebd544b41a0537a87cac6f34898f8f1bcd6e1d14168f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xb2c47024b448d39237a324b688881e7189d223bfaf3fed82cbe93d6dd82094b2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x70f6c02d3b5dc1b0f24c69f06fca69230b15c06e46f0dd3c242303614dd9c845", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0xd87d93dcbd14a5d5c3664849de106b76294203bf6706434f9cabb67ecc02cfb9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x70fee69f1aae5d7aa512ad6c6b18abd9656009b898e169b25caaa22a31c8d7cd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa428b79c86ebe038bca3dbba4ae06cb9e6aded15ac785c281588dd24866ac2cb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x211f591694391cc389714a47e3d45a27e2052d98f28cfc2622ba525d56f1674", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0xaa2e1a5be8851a0c988d11f0210f02439588f0d572f631d676b6d9a3ac9be4b1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x571baa454ba6e037b415b9d69c2cbdb611b8a7ffea7572ea1b607e4f458d2f9b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0xc4769297c69c350b82d35a72fbb21c5cbfa581c2e4e434ec8a7160ef8d0d0401", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x5cb2c4a1f42dbe9523d1c345336542b63bda140b62b0b673ab18d89de0e35f8f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6184e79d08dde4d5c0f55c66525908b058c8d83f496a0dc4eba0ace457afc4cf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x15b78b144ecded09b85c3a262a77c5cfb6da1b7093b97a850be299da67b0e417", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0xf02f1d39a12478c88e107c636e9f239e8936a6342f4b8fdf3246b082327e9790", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x1866b54e195833914bd52e9bcc43f894cb92e8c022db18e2516201b2fa69683d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xd719010546e29016cc734534fc3fd7dcaf213f88b73d772585dd7a48719fa5ec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x1f89a6ea3ccd4d76da20c6898db35ce4805762beb8653ef6efde51ad7970350d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0xa1ec8244f9edd8923e765fb7bea1798ec18ca840a53690de183977afd8407f20", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8259f450f7bfdeac08242c34c0625e0ab7bdff701c9c0ddf775c79b526e3483a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4538fb3ef7dc1bd9ac6cb08e289b10768674a6d0cac0da5279dd0eaf35fe8c18", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0x409b223e3a7d60231cace8f7d1ec53f03cc4c60b8f649f1687e831c8b4375772", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xd48dfc5aa81ac78446fedcbdc2f3bfab28d0d41b6b2ea8523dad742876f49fed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x190b627731f86a45d8f06312504902fa05128f7978215860ea389f4301943d7e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x5c6ad21db59402042bd66c9dcf7966e14fec3c7a6f1c4e73bbbf8f42462c629c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0x60972cd6b0de2a82617cdd173d6c152cacef06c42ac3ae266091ab61dde86a4d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7d8f562d78dd324e688c569caadcbca1b715a3f203d4358c11c68748c193df16", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x380e24bd7a536408dd1cb573dd307c815c6d2669c8440429e245fa0ae360b3e9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0x20d39000542cdac3de70ffa2742cea89c9932187530aecd7df5cef645981db76", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x7ec48f88f79c651cc12a1acfa54a6825de9e83a09e9f1eeca78ce7535c474279", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x6008fbaa6c8d7445b28c93ba1699f81708916c3b8e2a17c21b9ecf88ace383a0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0x3a7eb8658b66b0a7fe5f8ff62738a23345d87ffc9bfa889b2a224ad9d3597921", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x9114c8aef0f11b17c603bc57f0e3710533246553a04824b253b942171006f84", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x934e95d1d81f09071069cc95130707083fe54d6e5bc40f3e4d54252ddec2b92", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x82fb1f050b7acb043d224d14bdc396110a4df6f8d3a859d1219fea40f3a52733", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x5b04edf899450ffa12a94a5be1aabf4ee0e52a97f00bec73d6e4475fded7cedd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x6cffe2cb18fe47a68766d8556dcf94ea783ab4bd277b8e427b9c1fc27a88f2c0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x70985fe5ef9625dd26ba108c20b45b3bc18343c0e02ab9498b3af7768d2817ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0xc378ce294f4f252315453e5cb7acef0ed45c2499b4d05cadb8a3beafab28e18b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0x393ed33aa4c8cf4532ecfedfcf3a08e6e67b21afab08d3d7916355a5669be05c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe7cc86e4740e8d1bf492ebd0e9fd4a81c2bcb0e196533f2b950f801955ea3a50", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7de3ca060df2a98bc03662013d4105edede5091fbfee14e1a62b2a6d85c3a1ee", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x367766612b40a5129deebe38e8022043b11d61a7f68813322a9397e756aa38fb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0xf7d2d07acfd058eb2a53e36ac539f599ec738e9b5596e129f2a01f04e313a796", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xf052618ea11cd1095b4fb19001df7400b61e5355aa0e4fa69ed85654630f17d8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0xd55bfdc4e8b6eeeb1822e3b6c6df850adf4cdff980b77ad472a2bb5f5265b151", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x81da9d8d283fa1cf48939c6d7df52a09babac206c2437a00ccb2491e4cca0f8f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2f086a73214937af578f6e637d30f88c62f0f3f00d25eb709ff9aa1cb811fa61", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x878523772b1637c1836fc8dcb203fde1f7dbfac3d7463d1444a9e1639059dfa6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x5232204274db2ed4e17e3aa87606c535964bced83c3942c94bbd53ba7954b6ec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x458e0c04d04aad4be0334b5c23660203fc30c3cb4993ec379c711ac9dd4b5a41", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xbc8b1ec315f09a9873348ffc8a37801f89996bc8d9e49e4b381348ad62c133ec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0x3e1e4dfbd1d7b6b92cd23264b48fc3f14f6e00974f8cc43e32933ce17ff79fd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x63cedc04eed8c1d0c3772d2e272c2405328d09af7672ebef89b89090a5aa5362", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1466a2eaf99dbbadf252e04013d37c5a2ffd7474cda4e94d40d272e8a4554d72", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x630dd82f53f491615efa81c62da21707b2f88c2c6604da4d2e7b8a9871c13c10", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0xc331c26780230a0382af17620fcd7d72fbec2d7de89db15d9215dd7cf19426a9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0xe98efd0d06d4d10f6227b4da7c6f0c4e4e53ec25b82c6feacd711a89f115bcae", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x8ee0383d1f3e03508952026d9c5b0e4d6bae1da1c2e8d0056ae003cd2ee29468", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x352818568a7ebec98f39c693880c72de8ccc020e9acd66a7124505fc3317bb37", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x853ce17c179a197ec02fd3f32234565210aa520141e6849aefedb06e8684dc89", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6d80cc79f4fa76c5505ddc69198aa1f4a208857fa2dae692f53bd537ebd73ed8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_0-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd7336e610b60ea2d70e309e0be08c65e400e8adadb9e77b95b81073a172f42b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x546243fcae6a67020ca8fc3209f8ed2aec1f498618d9a630331164cd5bf9d72f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0xfdcce1f56af42aca41624c31d02945d00fb3d8a2f9ca6d6b7b31b52a873845a5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x420f815e7227d89f177f1aec008a4371d0074edd63ab9fe19b8597f4574fd0ad", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0xf265e0c8ee04ff7fadf206f56759e8253ad32d04dcc0187021129ac1dc3f00d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x20b4530fe20bb8a4f1aa6ab783973395be9868cfc98aa9070318c0f3e9f55663", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2600b4f138d401c92cb1c9c3a64037cac766b77382d518a8816b884ec08ebf32", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf5a2c4b7e060493be1c3eaaa260427e9f10098080b8188d0bc9dd630fcf20bb3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0xf05a59dae632b9d71476ceb36969ca9192aa326ca83270b040dec23a2e8533e7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0x3ae683cad150fa4171d080bab410bc93c13e4460ba1e9fdad3f2f815e0889e1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x84a367446f55163833c51e4dbf99c40c82dcf27cac439b5415a13a401245db99", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x44ba3c3ad66f727f4c58eec9fb8dd953339bd546fe5f4d185a6cfde8c713be8b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0xa6349cd8ba5f531d3b233af9177abba07a70ac906ba3700640a1ea62af06c1f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb0e962e281c3968389818a1a76259dcdff5c77ee4a2ad6b8feff1cd3f561f06f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1c2734d271f96b9ac59e872d7987553bf2c245677d8cb5e6f269c886af8c06a9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0x6cc788059c34fd573fd3249a610e92ebd0b8a6ca435b7db10dda38f0e23c9261", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x6991ac8456a1d2563a39071e7e7affaa92b4039a323c943558f55e07625e65d9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x887f59812478f5f3e0c7909e837a695af1e49ba8a5a1174d36a154267dfa01de", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x2c475ac6f17b92a63ee2501f3724c6a34c6da76ea081c4339915955daaa63f7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x783455a0ab7be4a44bd7add81f838d4127ae7b0c79fcaefef06d2abdd8705971", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x744b591b75f7e8ba1a6209d93ebabef23b30fd595cf215a24c8affcb9e146e94", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x72149baf3c20bed491140f6d5714eddf308f1c7f55c801c60bdbc16a1221d45b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xee9ad29cd1b4b3fa68685a1e35fae501e558640b60d39eacdd369100fd3c1c19", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x5bbf1b7246399360fc2230cfdb702966e16e81f098a9d3229fff9b71c8294d9a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xae83e62d97e44900f9df61cbce7159abc49e60af1aab327c0ca6180e7331e5d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0x7c23e0147af89b2e0d2b1c7cb8c247eb546e5628cda77d4673ed273ae7c261d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x87e97535e4ae9f9a1a2320dbe4da5a3312b65562940da8c29c477ec991e45543", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5ab79f35028ca732f1c666118667cfe40dc84a00e77f9002d660d10fbee6dc61", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x66704401b41f625e83d36f8ce2d83acc9297f6a303bcedbb5e88b01a0dd01c2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0xea6b414a9d82e1210e99cf5959aa45869adb61d39802fc42caa646ee1da8ca00", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0xda7137ca8be5971e47df397184ef3adc7109e9eaf1b2762d8dfc231e8ad6f93f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x468b7f4d9da9c4b998fb104008b718752ce92113c1b248014a8b3a6bbdca076f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0xe0c0fa156e86db95d884d1caaaeeb6750600c9c0768a9f5f35e9075dcfad2ea", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xf3e9a2e7095cdb320403aed34859c40d978349af915938b5ba26728bbd2d5b04", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb764e488f6523e9a4d80715492db7692d43456779414e8c930bba013f40a4a2c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6bac517448edcebb609100968eba6f61dca3c1ac6df1b3a9658b016857f2a55b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0xba79177aa762f9ad15a8645829f66202e4260cfa41900c6a9fd9bc223647b7dd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0xe77e5e3c5e662d72af1cd477e3de75286be3860d7cf84972e0aa62bc6ed812a0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xf4fd64b21aa3cc1fea62cdabb99794c58fc98bf3818b8609b15ba04986f4e456", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0xf9102eae1b2e38b2e3362e5b563fa4d9a94ec6c6768083c492aefd5fb95ee5dc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x86c00510a51e6cad96dd6a53b83cd052b5da283b81f80163fda545f5e592ebf4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb04ba9ea57b3f9f5f4e0e7e33a2064e0f9b131d7ba4e0c58f97d3fe7f8a23a9e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x410165bd6c19ab2b32b0fab22cdce10bb437246a5a915dadb0c27f3a886956d1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x8c53d2d9b49555f948c7180e5cadcfea4d39fbedd30f2705664c905a177c3178", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0xff6ef59e519090b0a857da8217e7e4d965490fc07a769d5379f31b135f4f6490", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x9929e97eb652f934ddb46e9b864ec9fb66dc7f7fb56b83f29b9da58b8011d6d5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0xdfb6909a19c8d4fbfbfc12c5ff227517c2818c461e74998ce6e4f773f9b3f4c8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xbb6a1507367a82a6bdf937588419b3bc2faa298ecc1bd4f1511509ee48b0e535", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x19b85605bd5225c452ad269d611e5b12cda768efaa81c8373f4324e76b30d00c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe90ea434ed18ff1c888b99bea31cee51699b64214c9c16846baf439deb2215ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0xa26ac7981b848cdf2159a6a7eb8b7a4365c206e33a666a07da0bf8307d7574f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x307e15e164f704efdd0360a9998dde90d877bcaeb03c0086c5001f31f65c9895", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x7e869da35a70dc0ec89b05dbc464eee4d3432a6d1ed472c50e36dde85bf2fbe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x109b40c42f57476955a137efe2b12f2201dd243cebe1748f1586c285f41fa13", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0xe52f1c596f9aa8d40c3ae623bc0213e66b77e35849518b2ed95f8d805494d4c0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x75a43e8087e67dc256bb1b858d46a606de406e112e59751b4d742b6689b84d3a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x92d93982850ffb06a360ef1b3e485f5696c487de4af127d2c0785c07497be0be", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x32d5c5503cdc2f3c0a861b3fa1fa69dfd4c79f355e1a9b685c2dd05061e13805", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0xa4707225a973e948a75d777dcc42a12aba13f3aede06d85ac5d67e1aec6b7e64", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x1ee5f117e41c9f28b32aef80b2d7a92ea569ece31bf2f9c55c1d67aec37f033e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x3b52995c2e8ed72171074677a4c0c4d46c1997f5f5df1154cd2216f071df9791", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x1b39d85a5eaf1c3dc4837d4d9d9ea865815d92840ba7923319bede04d93d6ea0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x92e01fde849538c5dfdf69b3990a95edf6127e142309e3cb44884b349c71e1ae", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xffcdeb051694b583048abda7c51e4090f3bba4a98b0f478b6ea403f63669ef4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0xee876cdabc5a2d211ac94cf3d590fc86fe9cf3b1919aba377e76caa0810066e6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x9b98a996b5f836062fb4d7dceb3e4548221a60c01d2790e6bcb274b97f554e8d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xb7024010f6e1da0c296cf8efd64467d82bda1323bf9bd34ea32d053b55c247bd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0xe6a7af9a4770421a2182e8a8f0dc6065a02e59de9e1ce690c3e0dae2bf76a89d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x72a826852c8e5a1ac8c32418848aa3eecfd6485f1bfd55fbd9824e0d07909200", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe6fb05c256473a924a8ee4313ac75be328b2fa85860bbad6f7090b102a623875", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x72568b33fb629d5ae8c22d5b32e38cb53ee8bc4150b84ca50c7fcc4da8e4e78f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0xe8825a4366af7f3e811b2d24892aeb677e6301730bf70cb01cc18a7ca65fc37f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xb386126d7e2ead9be8d71ea9778d4851e75959ae6d9d546c873b6ffafafd8a8e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xfbeca810b357b554fa30d578701c50664bea63801007acc971e7c2b89366d460", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x4cc066ae31f68ba57c47e62040ba6df5842fff0e6090253d24123aea7ea5f4b2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0x2258971808de34cd6eae34f38a2876211bbf97b7bce96a3c97d7dbd65887ac6f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2c280f5ec4d99e0e4b59d92da42b297d3415c95c98839bbc32d6fd01b41657b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2f07266c62ec7b79a3b07b1595bc5d864b0ce2f235c9afa1f66e66548bdd4b1b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0xdd7af8b65e1738c0a28fbfc79bb30d74cb2a62bf4cd9dabf15bd751a7213f542", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0xdb106c3620b88f3c149e5c529b2371fc6ec35002eac86bc41fb0efde631879b7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x5a9b738f96eddda91ae66e9fc9c2e85128178b2944b157e310f98e35f4aea251", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0x4a758c16bb40aa613313358ae030fc52e888a2325555bc5d6dadd2a45500824c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x33f352164f8159afdcd9c8922e022c9e666f5f81206b2abca8bb7b5245074359", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xbc585ab81338960d73a2250bb298e4ec9244d5985b1d60403aeced590063189", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x15c3c869780b4b0be30279e6a3b127abfe7670533f893a200063db36d0d0d476", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0xc1d09522a5decc85e68d26ff62445d792b29987d6350eb56e70d80d13c7f5781", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0xf459dc8a3407df8d7f7567d5df58dc726f38401693270fcbd81b3e1813761aac", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x2053faeefdb7b81316c116cfe16b89be9f2616043d187c39cfa5833ece8811ab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x14def5f34ca2cbe75459d545d3906f255036c532c250cdaee9565421f9f4b6b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xb70be5c4e3ba473001f4a9bdcd3d68537d1a43019dbdf47458108442bf85bb6d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd4538ebec5bf2a3abd68e45547ca567b61e05c4d3e0fd79f092b3e7ff7af6e93", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4a0dca4e0a87ee53c56e7bcf6a36a9e113e4cfad4d186dd928283d1f6ad96904", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x74de1ebb4800b6a97002f25afd5e47a323871e46daff8769570d11ff02e7ddc5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0xc609df3e52655728c3d6bd9df5693e05b502f642320e71c2001634efd126dba4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xff38b75d1bcd427a0d62d8946825c646791809db076c760e9e3de6a4c77956f1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0xacb867a544082fd632205d03d7828e096da617e4075baede2bd1b64fd8130498", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x5d2fc2cc294e4e8a20609ad95d8468b1f3bc1c174880b075fb102183f864bf1a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5c1be6b6d43fb16cebaeb743d796a66ac7b81ad62195f9f3831293ca3bd920b2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x636f70d9c81f47351d945503cb5b1f9c33ca8a3e8a2cccee6d68794ba40c81da", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0xda500332903e6fdb29dbacab0d8b6d74df3dcfedffb83148a0201c06dd1ef16b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0xd53dc383d26a2493922093a081a692a83deef95edaf679dae91bee2df30cbe42", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x4277abcbc76d7452c43f6d3cb94d6f9be0f7561132743d4af6ea242e19f732e0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0x6aeeeba6cf478be6a705b6d379d559d67133cd9100823183883ed509a87fef15", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0xa1bf35044965477517904bae29fd9a53d009a7b7b5a104db78f420639410de21", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xcd055f1dbc1fe4831c2f31439203a0b3d91a13ac171fb16e9ce34126fc2c0460", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4ea381320f1431b579d04cf186f0571b36ef36b0463fe1d1a8ff54b1055bff59", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0xaf658c8014d9dbe36717f39526b2047d6091258ad7074c1e4ac21db9a0d3edea", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0x435413875c0b76a1be5e9c96deac12913c384ff849a376e1e9d444b9dc18a423", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xdd5a0570bf3096bef6298c98689cc4c52a0a0c94318590ec8262f3e10173a932", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0xb29a117e16a6c0f8afb815e66a6765d8b7ee6e5736c74f7258e1d65052d1b277", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x77ddbc5511fc1818ed7251725574763103478f42c72451e48f3b9f9e6ac03d8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb194552ec3d966273c7ac2c2bb8a72335a419aea36be964e70243258b138e025", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_10-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xbc6159df726a452c8f58f88a6949557ad29c5f6d36071fc5b1f96f1a28b55284", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0xe2bbd44f3f2aa9be5dd421f693912988dda2b9e05dc83735bfb0cf5dbcf8107a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0xb8f933f303120a8e397e628da7c30119eb6e29a90a9a620d5f3839636584b41d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x7353bc8c79bd8fc3050e347dccf48c3b8efa3231e1997da156fb19a2b145bf27", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0x8db903a46437e981b45082e443d23093d05746659dab9430481e19534dcf8ac1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x4bc49cf9d6521e8c204d903217a36d2545aca272950cc0eeeb829434df2c5b8e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x600154350b7d66e56f04589b06bcf89ffd12fd697f9459895914da0b7272078a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4b0a3bd940afd6649afd83781f7620f0a982b48271d292dfde1c56c04a03310a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0xe44c1dde5a0c96df83e3dc99e0389e4eb95ba794994c015cd8bbebe83eb1b17", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0x600aca428c0cd92aa5781bfe4c05ed378e990b31dcee56841092003e0e72ab00", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x84a3de3b991b9d46e0dd15c15a98fd8fa26db6837d9887293e7f567edb25dc5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x26ff5c90697d9eacc1e30c8651ea17a4a86904075a469335bfd24832d72d3523", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x394b751a1a81119f0a1b382aeba579562db9b1443ab5298e6267b6d325553642", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9f9f0997b127befdaed64de8a1747b1b49ae466335693c9d31d62c44ed03318", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x33da7840327db58b07a1bd2723310e31d31b3378aff5f5544cd11669426276ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0xacc4fa632e9f0fc8cb5ccd442b3888cd916dc5bfe8ea58f84d0f9e6dd3a9e2a9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x56de2e2a8dbfdc1a70fa26cf038d42a9ae5f180d4fbfb2edb0310f576036be55", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xef81a3a9a4e38f4b6f0294dd6703b8e4d2919374ac67dd415d8be64ae06c410c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x5ec9e47fce00109587488b289a840d9388805364d6ee5b7391e7deae19b6f329", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x6098df72b8186f7e79a020bfee2b09863f7296525f4e6f1fba72ae9adffa596f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x51d5e977f8e5598342158283d71a877bfe59ae9d8abedd18a1987420c4e23b0e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb6be812cd8b556574e265b4e827da4989641d63510eb80af50e8a7abc95cb9e2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0x5ac0d5b0079a039f3c05129a3f12824517d0047655693d5f49798a68d639065b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x6ca5a418c344028d19813a6995ab052f659caa9fd8645293875c2f9565ab5a1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x5f1210ef214bce1738acef112a05ea78c906a07c393d8f57a7a64ece819f49d2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0x8f51f826a3becd53e6b44496a87be495cfea060a538ae7ea8565e0e6365c59db", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x2b7d90033971f13231b9bcf37411cc6c941c466c665ba775b7c6575d341062eb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb7869fed951d8a5372c76381389ed5286cfd0593ba25bb30a2993451a25335f2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf1a9c5d6f504b9350c89aad293ca1b8b672942ac734bffe8e430b7a4f9cab666", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0x2bebc58ae971ac78ce2747a9e229d1cc49fa07b6c36475717e296e47e3a2186d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0xb2094bdd77f03c62c0431f87632c1721fbbf1c17d774a83cdbf6806ac87e847", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xe9571198af32e22bfd33d15fec5983ea1cfb6c25165e2df5fff0c8a800d950db", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x2040044b445447fb525083aa9b29ec5a51d75bb50862026b5d110f4ef40d5ac9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xff0c7f9d0e619256ba9053ced470c9470177ecc0cbcee5a9ceb3886e0046c044", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3e61a3507acbde12bf43e8958de3fe134c6b5199f24ed842e4884a72901da138", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2eed4920521990ebef779d97ba0cadc28a72b93b49dbbaa04e9244f05472f332", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0xaafe981bc446555ceb222a0f83900b7cd459cb208794889e9e6218b7d3f071ae", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0x6080fe12ff4ea482292c9f9207336fef714aec76be983d031f977339c3255289", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x837abae3377a8c2c8a934a14a3a4e3c1646004e42c1b54456452ab9701baff1a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x85f6c07be983796717a0388273deb6bc0d22efa81034b3afca49336f1f9de5f6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x3638ebd850ec3610bd06ae07ff528855d2c0e103394053d77b416b40c6196e42", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2c14aa8a2d60abf54c4484af753d36ad42f46744cba80b93d5720da8c26ba7d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc7bc80675dca7f4a8780139e9a20d0e987c17d7e71bb595186310183d8a80948", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x3212ae3e067b87e2d9d515621f3417675c5005ce9089f580f37cf90d44e330bd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x4cf72106adeb57c048b343817d9af967352c1b8e63bc2665ddb8b02c55858eac", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x5c3b4bdfc8801c592c21fa399662e1c92bca4778f11dd2575ca3a24df888493f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0xf8c4c6c458b1824c291c998791b2191f4b5dae182fe938f307fb987cef3b356f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0x282268b81a6785b81785cfa3910da6ebe37d4ab9f16bde76477ab9cfd1fd149c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8ee112df00e1538cc76044a5d79bb2494902930215c8e1f7dc29275d0c3f7740", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5c87c68c7bda9ca2170827b677af4b43331ced85aca330f5f0017563052a041e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0xe7811ee093d4339a6e8c5e15fe84992c1180c180b7fc5f49245ffd68f45e9abd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x42dab88de6a3c817f46f24db19f9646f914ac22756ce93ace2e790dd147051f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x2f904a2eb4181217c31ecd0972df21f3d9e833b27fa9cf38d31b050e7173b9a2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x13da717ff5c4db30f8c64e4dc7327d66f8085feb6a3dfb39937acb2f87a9e75e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x3e298fb6be9e500056173bc893bde292f1d2c23f233793f41885ec51c0053248", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xfbbf9d316a2c00761f8549448a7b8141c52e8a9dd55d5c9f557128d19583be58", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x768712d54e364a1a7a6ce5227c0c78bd4d87cf279e3906ced230f502a90044a3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x9cab82318fd7c047583c1478ccf92e4555d176e6107b05b809b6c1c7fda364f6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x9ea3ff83e1c8ca03d40b66975990ba6d5e9921492c52eb193cf07e15c1b06bf4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x46ddb39026e94fe9c22adb4af466ae22bd05919f9b9cafb0b2c09e19a615f14e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x67a3c4e2318fe1d8f354aac4effabb2089294903effb12a939e24bd8a31410a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x1dbf856e1c1dbcb65f9ee2def5ecde67690ccd6a003052c433b173caa487e283", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x109c5b825c114b0d0d1a67bf1cc8b84d71554cc5fb753445605f2d20783c4700", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4613c1a97dd872f14284e60692fbd7c5cd63d3a17293e79cc929dcdf5db5a2bc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0xefdd2dedc2177276df488df7809aa8078826af145580a018a2883f0cf97f8065", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x255c514ac0ce430ec4f96837247c424e2e2f6a0aeee4fe9ef72d0f8d3f12aba0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x50809a9cb83d2330a157cce83906dd6574359d606fed1a62deb29a2c5281c1c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x70731c7c275a8832a1d4d8fd3dfb2b96bfad0771af9cc4fd9778cfb1b6b67d95", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0xf4bd0d5414723c7c1f1a8bb172d3a0bc2c82eb55f4833c4f0bf3eb42e7ab4a63", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xaff719351c7b1966c0f794c0195f540e3a4cfd46592fd0d2218d47ace1058935", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd6b5244476dd4d7b3f5a46cfe0e0d33553b9103af10dc53f554f2abd6381f7b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0xe30f37aa86971ec3d73a2d9d21f602b1717fc8758001133750dca385380a54fc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xaa656abe8f6a2ae43b6b0d3fb349c51af95e15856e7217fe50c9683b5dc5b26b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x9dcd54d2935f5d1c9075ed6863d6790f9d8b7b0b3e4ea4834094917fdaec8fb5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x2abde14a1bf85cef5ba92dd63eb992ed294804b795981c737e71995f8a1c42d5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0x58ae7839e319a723241c7641cfb183d73a4bbf28cf7d61ffd7d1bd51e78a674f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3c5620bcf45b9e6e5385dd63abb7b472a29c355c74cb18ea5bd2180a3b9a5a78", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xbae8b76bded59f8ae3396202fa71028cd4324c7642c7459978c5d5e11d07dbff", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0xa795e288a9037ff856bf2a8df0827b1cd9ae94eec835ec7091c8e29a7b53cad2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0xfd1729afe4868f79e45709f86b8cf63e6b813e78aef826d575907777d1fe172b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x8591af187bf8ef6fdce06a51376c63c6d41293c625674eae7d80fb1e71e188c6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0xfaf951dcae9fdfdf4ebca3c2483358bb9ce6e05868e4bcb42bb6d0b2882ef4c3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x768efdb874a3fb9c9f9c6653b29035854680ee20a7137cfbf9f7fcf41a977110", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa5191e4b78ea089304d72cd9a035c8ffcc6203016a4a654870471fee4c95c552", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x8bcf2a6c5ca0bf421be3fd889847f0e9d6b152014e0b10d1ef5d8b6dbc6d5927", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x9d21171c16c10b379c59d3461316cd3f3348480b656dac6ae46bb2dbf3c438ad", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0xbeba65b38b3ba27c8c94ccac14e2d79a5879aecf36a9df93f3596036d7fdd397", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x63040a6e34405e655f30bed1231a2d6613a8932ab545188bf0c87a7d03811cf9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x3008c1a076c79878f2e0d7ad4d3d76548e8e54039dd3e0d2fe4174c43525d94b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xe2740430d8769ea448c7096045a813e60f296b97733ae5e3c5c5318deb0c7e34", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x118a42d24fa4b033e274b433da306041812d2d71993e0a67fafc299cdf2524d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xfc278baf726ce1cee0be998c069d2d8aa1f57c44d23f45fa0367387f0373b091", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0xbb5bed20084f5991e1af2f94a87fac2c6b8a003939691334f8f0c226f3ab3780", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0xcabcca7b1e4a4a1a3c83d14c2806080ebd7037495ecc5b6b4c6d87cdd669944a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xece813c811936ec93b67598da1fb6825d267c186e7875c98f68e022617c4c767", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0x2a7f010796ef2c23e35b93f47cfbc330ac68a28bbba0f50e1dcb182b94a66671", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x6cbeed6b75a181eee9dedefd1a681fef6d1744bb1b8bc5c00a560d22ad0d8c4d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1eb91fb0caff02bf3504093f503517ab94533602d336f8c06706deee5fa04890", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3cae9da12e13de390f35938a70f0b959591835da981fef2483f051c3a7ca3a5f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x334d7c5cf7dd66939738ae4380849a4b6cadf964b51db69ad32ec7071eb5cabf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x183e18f8bec44fdcaf05fafb41f3fcfd77fe9c47dd365a5f99d856f8a9fde412", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xff70dfb669fa10df39352857fa4972aa93e0525aa4b89c69c2b00752ba951404", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0xe024db38bf4e8990e3e374a8915a23b40c971c9fb21ea3b126dca8f23c6abf42", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0xf46cf821229af48a94a0fe45daf30096128e302b4aa83251188227f3416980d2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x4813d653a312b6e65ac6543954825bbbcd5c4228d186b46273c4c1afbaa12998", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7f4d6ce84831484840913c4b3e5b3e94f9642e40b3174db144b8488f9e1e6c6e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0xdcdbb70aa5cad2b77b9cd6f9d708ed8b4d2270a22038adc41d2a5882c91ee255", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0x663c3ec2768d55023174f8d7306dfefd2b3621b3bbb62f44c43668a84303fd05", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xb839dc84776ce38ec1c9eff233301ccf99ae4fba3c43fe22b02f82f6bd1d3e67", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x9d5b7e73fd1a5ac74a85e9935c5ba6626411e7a50fdfe542b781c60900570698", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x3e093f4d59aa484d4ea08c424c0ee408925b25e38672d23227120899a1b9cbb5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa72c0f91874d5d80062d415be22e7928faa17f7429fad151a5b0939370f6efd5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_20-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd7865343225c3555b158c54a17558950d75afe211f7488c4b496053cc28defe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x65b0c47456c1ef21f788c38cd108168d6e1395c3e162dbbe138fdf2bfb2a6451", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0x71286ef542154409a49b03ce353000648f55491674c3f74f4fa70d2f55917ce6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xd672b31650f3b4453b6137556aa3310c4de6f67abf38126ed77195c1709ab20d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0x5c6fe56f2bfcf1dbddab5e0fd5196c274c1225c28323755ac602f4985c856d70", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0xf57852a2f86bf2e4c34d445a43acef4a289f5f614fafa38d2a357c6225553a59", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9e4f80d5b7bb3f3b548ef45e071484320fa52eecad32616f79971204b4b4ba30", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x50be349f983670e757c16e74a49f28ca903b2469ef02cdb21f755b34ed04012e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0x931c49f92b629548643d127a9ed1b7916146b7c6c087938ef71b082f98772e9b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0xceb9dba17d7ca793ead367bc74a7c45bb056a66ef2612d03ffc9414d72de662a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xc490aa141ae89fa4589424e9faa9817e3ae4abc282281f7a494aa03017b09c14", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x3ce1edb999daaa9ce3cebbe12508e5dadd96e1e58e6c973cf4eba4b614c7cdbf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x29f013e837672878094f6c01590e836304051843f5fe94683f95a3f951cdbd4c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8fb332c8596ef527786a7c3e7a3919904f9d26ae8f506b89fa7259a1b3ba2ca4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3acffaba3b0a1cc345b0020827b720e680d66efc81cdb755aa1769b405f64505", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0x2bbef51b019418e48aa858e0c4456ca71dcca49839ca5b31c352a0e88a2a5055", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0xb1c25c2430cadc860285462c24e4b661e05b5a6d5f941325b99cc7f94f060a8c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x56dbb8705d52bfc469617e8bf67572e43e51faac14c7bf0d2d00954d803c5b8c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x23febc3f65978b537f6033294d79f863f1a481bf73181645e263ce0ad765d306", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0xee3c5c81e0336ea41ddcd9de530027334a31d33250955e47caedc5a4b55f458a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x40884f6ce0f652961be18f753c4952703dccefeba1f7011a234c0e3158c60f6c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x9b55905b481c8213a0e4801bf8d114bcca993d446509820b0a131507de42f118", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xb7b9983fa9603a8690ea220e8a2877700be09671b3c14f32ad330ba72757a2f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0xb2e8c375f997ec573259076b4e3573979501c7ebdee501dfcef0ae711989b235", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x16af56fd8e25262dbe3a7d8609b4e3657720fa729b7d73e313dec39b62272a2d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0x12afe57837e8937f187503c8d94b450a14ad649f2772322d2e764a491198c9b5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x91977c82aa7f9611b69968ac7cc233535c5503584957d91256e05cd93cadfbf7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc933a88c801542fcee763cb5167375a48486d451888a657afc54e52fce0151c7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6def9320fe20f98bee03ed94edd1050c3de0a9f84916ead83d54cbfe8756987c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0xb4d451c1fdac68aabee3d8200f578b1df40c6b5966c5c97e8120dd42af052ac4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0x3bba6b9b7456b7e1e2a25f789cef7d5e895f9b68dcccab276ee6c9ee3552e88b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xd303a74319a52e2b06bff8ddd5b22e705aba1addd4189f635e0b555c571eadc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x810a8ef8b546a32e5a086ab7c17728307799464ccd2ec39443a6b3989a7d56cb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xf5428b90f9841a96b0d050ad6116f46f04bfacf407ea3f66806aedaa4050d899", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x22b882129b698fc7d0caf7572d32e614792a81ae679c420b00201d690b332ad3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5e5b36afd5874052263b575be401192dddbfdbefaf26b89a8065c9ed9028d2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0x75f91f8dc02de87cef14a3dd5193e32e7d40e745c00646841ff23496e5e4faf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0x79754b89a49d017bc26f9a41461fb7b6ff72320bf83bf57c3adc2081c396702d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x5e4f269b5bc127e2ddef552acc9d5cac72001312f7004c1d374bb37f31f29d50", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x5d442620a84858e7f3910613274fb6dcfa43571c7c15ee056d33434686d09b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0xf0c42eb1dbeff1f0a86b0f79773931d0bf545aab204f6f7d20ac7bed8a18bcbd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x57681225b53985707f095534501d49cdf4215eaee3ff8ecddb07a6e5a31039f7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xecad7361436b54151d69ab1dc9dbbf6e6ed9fbe42a2fd54e2770c9b9923cb64f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x230ca5e24bb2ed3c9451d15bcc5f99319377fc04ce53981f2faeec17850721b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0xa92c083ee45e7997e5c8b43cfd7546ba4ade1bf3f26189e4de97d04ac363d2bd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xdd0d216706c097b63beaab0c6a6527c249254970fba2a04bd33eb1949907ec66", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0xa95bec62a6691f9313441e4c50dd15ef8df691f680b3e4d1c25b334496560e83", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xf9a3c67514bb4c3c41f6d1b531e8905d25c492f3e653e2ac8ce30db72f51225e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x918756dc06c517efab0088fcc05a6d33ab2a6c06299800fa154e972726dbfbd6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x311d6f331e8ffab4fa23fbaf4711f38528fc64e3dcadafb6f6a727724071800", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0x97157370cf4f3c0f00ff594603831c01b514adfa1e95663817022603fe71f0f6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0xf01cd0fe6078868c36672586c56aab6ac2472ad7ee239ea506640039b19d7c6b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x7e23e740dfb06267ca7d3e3744a87cbfdb5177418d2484dec90555abcc0d6b8d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x7d5262e4537e9c36ae2d84b35c2792764f561e307696ae4a1c69ae9f359a69bb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x1b71e717f65a47e794ed404d60374d0ac5658ccf28fe6e488dc1a1d25fbaa55c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9973e1a7f31b161b0a03f5459159f078e54ff77c830381a0ef7da7430ceceb7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa7da6d52d405c56c7970205ca244d0d705c1a149c5823ec33ed4669aa00d13e4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x76ccb016997f5ad347885fb7d4a37cc31c600d00aed037307a4fa0a713759347", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x1d7a8a0af7d599956bbb2b5ed5e5d0fa81952c099649c6f2e314187194e24c66", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x9a08ed917eb70818822ef8d0b656aa797162f3eb6828755ee97e62f73abf58ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x5cd8e875887554b7786208cd629ca3bf71e32e050066da8705b5af0218251bde", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0xdc261b251c17dd0d97c594779680946fae0730e9407ec730f90451448ba09b2e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xaddd4f667b4a9137af17cebe21b4ab7cb77df11a2f5088901756adf5e5f2f377", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd47dea66c79a14216ac346daa99d88248ae2f27ab40b93ea2c4368d9cc1379a3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0xbe70a0ae666e4ed9f8bc55e851191a73ba74fc4804ad8521b7c5025f988c500a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x218fd8b1589fb72f4c1b347e4dd02503835f49604eb7d8ef4cc6cd9bd9f0c29e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xd1f7d23379446c77b26df880827968bdf48035156871b370fe3f74c901838ae9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x74e68816cd0612152e278c6f8a4d3acaf61c5231abe11c881b62df80f0a77fcf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x17f068d2e24fb9efcea7436ca3c43b1633b051bfc3747fafc3f50031e6addc37", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9a1a2054c9d51216ad85edfe5329f8da3bdb9b8cbe2a669831469565f8e97136", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x15f4b4ffe9525e140379d651ceced67cf3a64ce6175feb149ad9984aa875c91f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0x79ecb15310919a5ede49c2ec82fbcf22db002e3968a46adc126ffac27084352b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xfbaf8e2e9fb27965dcd2b16184213152c9f72f2c972edf99a4c307a13ee76972", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xd93bd846f89d4a07f9dc6fafbbdaf769718415e31037b097e70e7570f8a01f29", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x7fca28a8fb7bb44dc1a27cf00d0444ba1385a678eb4f66ef134aad63af646010", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xfa94e415da6e58c862ae83e17cf20bcd034450ab7fec489366eb543274c855bd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x33606858d2c17fe9d3ed01e5652ac887940e1fbfd26b4f89ac36ce966b49b1d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc095b4450b9d968d2612e86ccc44fa6b883584105600e65cea6dd323e35a9ec0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0xf396c01fd6b8f6122830fa38e7b02613da7183fd0d47fb501ab561dd65673d26", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x310e9c2e0ecea306356e21503e49386f34660791b7d2e6b7d1f6a20f014d7598", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x98ae19163d0271d7ae0e36bdc0d9d786c8c953d9e3853a4f926c940bd6a0e1c3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0xf757f347b4502a948e4d0609ced8e9ab703c1b7f7ef7dca11e5aceab262a2a7b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x1bbab56146dc580649cef5c498bf7441e1d3d6bd7403cc7748b022f208fd0b0f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb69c5ef4d351124b9f0bad935f482c90b31f49163dbbeda34474172a1b990e3c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3452f7544b3cd95acbc9d7e936388c4a21b451f800c3f455b4804a23b049af86", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x7c3de120f6cc4a2a3eac961b2ef96dd12e97735b900c75393408681c4063ef85", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x927481e10eec1ff61f6faf203c8297cac402a18c6699f2f4d1a990f46497c36d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x96727907715cad99357837f814534308d3c5153de39ded4c7d630e7a9669eb51", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0xd3b518a1e0ca711a765f7274c471aaa1826a82c117e2a1646a711f62b0d2e92a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xa00a7b7349e68567a4b889ccb9422cbd95676b4dd820bd1bee68ea4f1513dfe7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x95cb7a3ff62b87879e45bb5974a3e5d70e6d2c170a6e782523eb01bf3f5a68c2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x82a3b282a409cd3ad7f3f567af3a3d581edfe06bbb76eadcde5a840f73502b9b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x4fc8ee57d558f923e3f49a094261530e7d87cbb454e618f293e4dcf9c31de3f4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x4a0eb892f53ea5f4f65b573a703d0c7eb2475cca189b40862b243e7c79687f37", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xd3537556d6c79b9040d0cbb6fe12ea266e4e64d43c6ea38bdff31f2299627ee5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0x9449ae5ec515e2e2ab48f31bd0d9113a73cfbb1175adac54f9e6125bf448901c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x2418f70d9d35cd7c64547374c493513fbe5b5b71a6018b3c66b058e38d4f2e96", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x51077863329eb9799d6c87c543e66a43555d1fea40205b7a043de544597ed0a8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x36e1f86c1322673a1c47d39077dcc55d7f1035563149464edaaeaad83dd95da7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x3931aaeeb5e77fc0756d61935d7ca8d670d7b17751a6461c6d6c076bf09c0348", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x1e17e987d21110c86d2fe0c58bc4f99e78723a2311eaf4297bb47f3a18abb4ed", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x9a0d68b2ac31a6a24f24188060d9e80da1fa2ef05c497cf8916e778b50f5c043", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0x49d0a98dcb68055b872875534db0c434bc543bb44733a99aacb2a68946ebfbfe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0xf8534beefeb03ed3fa9f56ab386626c9d6f334d928d0f5ef7b29315709f03a54", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xdbb98a03ebc5e9fccbcaf486dba4b01e677c789c0f4f94f6e00433a241799840", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x560c94970f2cae72392e24007d41ee91107c55edeeec0b279d07bba6dd2a4f63", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0x63e5cafc83fa85573e553d3147a8618510b474a2044add7f2ae8134b3ea89bbc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0x91228eddc6a2d35e1ceca7e6ce313a46568c23c199157ea71bec647e8af1a342", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x93ab462e60d60f9ef7665fece80187d7aed80fe98ace7478e18063251b311ebb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x20d8202e91091e9d2f86a3d53744b0f3ed481001ea2bc25c84adac5a388318d2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0xc090dc42c03e595308326a9c633d8a8ea6d4ba0c1f8520a2318e0a9164d1d66d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7556db85029b024d0050863d0ed5890a19ef046dcdcfafa87425ed3ee4096292", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-state_test-size_30-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x531d2e467e8edd045584c9c42edbdc20a22cb6a942f14a6ea1bbb0253884301a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x35ab9f7508fba0629f42e973435d64745360f98729a46573cc5d0081c7859ae1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5f90570e794d43b8dee3747ee9df463d4dbdd99d6cdd670794666b64301d119e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd3a3b5ec267850f8df285a20d48b5bf657a1713dd6e887ca08623ac831cc4b6b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x4b58a35fd201b74914da64697e7951517fb462f99f7dc61c3cdd4705229c00cb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa891353c19e618612f67383d554bee8ee9aa7c050269a94b10171ae2f0112f7f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc119c60bca957b83b2f9af3b009c3ed359a0039783b510adf11ff7b0b99af95f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x7bddc8b29d5eed10e335c982872bf9add2b81a902d8458ab8b47f71983ea54cd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2df500ab9c63a6f10094f3acceda79a9e54aa458f2617710a9165da7d87238b5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x9ad25a80939702f34540132f328a6550d2b0e5727c71cd591aaf8c98ad072d38", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x9062c8a8993e5d21e2923884f4a5a44a840f54880c29ad2277946cbeebf951e0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xef94f0edad77d7dcb0a7f48fb1a9b1c2fb96543a6170dedfbec4b8e874ec430b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x529212af083b0ab4021107bb8b77a20d8a247e5968007f444cde8ff13a4fc88c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xccc0a8500be1ab57d7493c3a581cae891b59e92c8c8f4a2b04c62c8604e1d67a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x390e22f9047b8b9b74bbb57fb3301de5f3247d9b150ac99d0ab769b3fcad08ef", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc6a3a350783b211b4f8472a79936c92336fe75d5c8fd47c103f442024951f92c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0xdc4ab707615ea82f2687ab47734e315412487ae595b9a9014476ce16e3158a97", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd90dcdfc36105447a9aadaebb4034b225175a17dd3e0bcb3de0e195d90e595d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd6e000f8f43493ffd0af716a01d2554eedcf447ec0c3f61011c13fabcd6d6bbe", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xf2eb88bbde49339148b73b85b02fc950c6e143513d3d798d37694e3ccc8356e2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7454267c7abd8bf83075c3e984d8ac37209b4693009e671a08ddc0c41db5646e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb60fecbd45565259a1c71ee2bdd59e224d9e9a796907b78525831342f02f8d48", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0xe90cbd790e91a007948013fb0e25659ac035c74dcb6eaebe32cd4ebce9b07691", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd5f59fcc0ed6ddcc2a86e07cb090cbda74ab83afdf6088042bdbb26defb11f95", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2db130ee88cefb8219c271a8bc7aab6d529ab590f4d91dd01b500f47951707e1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x46be438bd1a899e9471eef862c776203a4ca31dd87a6adb0cb931ee4b7e9ca4c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xaeda2216218c5a5a29b4ed87f8c28da06404869fe0b3160e8c153f5b5c9b0855", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xdb5905b3a435320f735b18013e8662d76fbd70dca2d37bdbf06a60fc6203201", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0xc713078718dda8af09e81c34d9b6538a65aadbd6fca09e17bbc4ce1bd3ecc902", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5f282436530b08dccff0d772641a0b950ff92145f2dd4e7977ab3582faa19f17", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x788295028e2f02ccc58b2b0a69fd8da1b22c0f37f5b0e25b3bfbd1ff45e80e40", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0x491357c56be9ab0e1676906edaa7b17c0992d78d97a589188e98e64afc1ef575", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xdf40b935935a02e0eb3d9458507867631545489022ae94997b9499aca45c80dc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xef9e74fa3284ec0e61c7499b55789ccf217cba831e7657296ffc3efaf0f6e30c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x5081190989198731356f5fa4256808c62c3df6602cc552c97bd6d21df2823ac3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7a92eaaeeb7e767022b3a31b587471e8b4bff4bff99dc79b0a1944a108687918", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2d68d1522f755b7d361f8c510be2c79dc33616e4f029a4b5fab211086bcd05d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xf4f228147ba10946530916cea9b888245b76a190fb5d7a6fd1e0ad18af5d3716", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1ed82954a26afbb6c1e733e40be2271d90f32abb5907395d4039b75a22b78370", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x52d6d1774c7c0e51ba17e1c610ab8f4cfecd36c2e528f23110cae71993701cb3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x1f0db63c2b6aed963604881ea968259960e0c85a8d9a5bb3e7d41aac9546171", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x75f4ab6317f47f77c7c9cd5cba4dbd19eb5c3bec9ab71dede485238f0873243c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x79c22bc4ea771919859c445cc3c78b3fb1dc47cb1a1706987fd5247008304310", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x67394b3405368847ff950bde01c8cbc2625f955012e17f17664381ad1ef15a44", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x4c6c3bb9e9d9808c5b9619e9a9d8bb0ba9403dba86ece13fec8ebd63fddc589e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x9a66c7203ad889573d536c9984529bd8d41fdcd28726892de998e40f9366db78", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x5bc8002299f031a112802282a7a93749b834e45eb28d128745564ecfc5c6c1b9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6d9eb19fb93573cefe4e71aa8e32db899f7ddf8e95ba9916b2ba9aa4e6d17ad4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-state_test-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x43e6106a8e0637619921380b6935ec42e57ba07ce2cdea07ce0f34fb5ae1ed4f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x44d43861c92c10e0d622daedb63e430d46be29c570d8e619e1256fceec126b5c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x2b7280f492286be8ca54351ea475395948b74e4900493b36173d3375a045999e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xad0d5db4e19b535db9eb47e9fc8cbea7df4c7f47ecfd9925a54b3bc254cb7ee0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x69364aad1b0f36bb21ac1255ee058a253602af09331c49802c91b752ddf89871", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x1f9ae91b906f9b39f271f62ce5c003c152a5533650467c5f6b089aafb68f16b6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x59437ff64f431c4f384fea01e7d67eb1f8e424f9019e514156462ded8630180f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x205a21a22417feb1c0aabf93971913eaa84f27ea71bd2880c4e10ef2b54b4ef2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xcdea2e1073e1dc52ed2d65692c7dcb540e1a4a3b2cb4171d78d1bc31d3c7ee3d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xfaeb40d6451a19852aedf0e7fbc22f7bd17d9df886185634bbe919e1538f62e4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xc70f3bc40f0a9445cd0e832075f0f02e8ab7f61fef673c0026487c302b2a51dd", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x2071f20f8f1c6c1ff7d5fbaa48ac09388156c8896eb25e877166766c4715c990", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x59849fdde420f7bed99462dd00183154d51ffec7d931ddb512a29029e507312e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x53997ad4a58fae9d9720be0e0feae84a550e24b91a7822f6ba1a37dd7aeb8731", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x30badc1ae2f42d3c61618729bd813efc71307803fbf202d81868d224ce35ba50", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x4349f9da6dbf9de784ad15458d340a07194080bbc99c1846ce34a21542c38a3c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x2f0cd1c544a96ba51dd308ae0763522cb67be7e581066530fae820fa0358c3d7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x800bf97fbc46a7d5c1beed84a712e988c818869e1cbf98269df5581de70cd6d8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0xd13efdf098cf77b6aed98cc6bc2ae3cf159721705fff34f7d01c655f10ac6d6e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x6e4acb862514159199f9118edd3d1df312bce8f99a7f97ae64505a1f04b4a8af", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xfc5329e47a48fac9c0764bc5e474b3d716c4b05042324587a5cbdb77729518c0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xdbbc158ccc04b033e10e4a38195cd6d8a147ad1378469cc7c460c6e0252fa524", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x783d650e2e2b762bc642b7a912bf389c81b2214dbc11ff6e86b0ac1b6843390d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xcbf99641871017ce4e175062f96ee6a83ec03b092ce89a42266809284235ff20", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xc6ab4d35e8702d26303b98aa7ace80ba4d0cd76da02e1364378fb12762d6f1f6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xeb22775b26e4876dc8a5767a1efd4af13598738ccd24f32427f86e925ee7e0f4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xfb1ff5b48bd8f81b9021e3a70501447f495853b376ef6585f650c473414d30f6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xb083078e97415cc23e48cf4faad7987fa38c7471621e323cd1d34bc5802c873", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x59e12f3432544e7fd9fbceb7f80d82ca0c4490237359e1a9aad48224c62b10a4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x14c25f6d0f828018f7773aaa58fb416de90e9d4fe48a1704f968d7e45dee8edf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x4bdaae2da02e36f4b4de971f1778a5418b0e323af05c17db27735080aad4f5c7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x867ee90c68ff61a12e1d7625b954f940a4e7231aaf25bb2b71970e1877b70497", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x82f0b950a774c64e75a4b62a1748b9548f95c4172bc7d1aed5855343dd62d9f5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x168df9748e9eae3d474a0770a0bd65d9d2ff0cec6e47b7cf558733df47ad41a6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xade24302535a98993e15dfaf0a1896460e0d0f5a2427185c7b75458b50f879f6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x3c466d85e719e0e8b4ae22b6895e565a8db1026421af2e6f26c1f2a0a81dc799", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xd60c70480540f084601d7d808cd7f41350a04d9c8bc8b0b04ccd7e0eefa2a5b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xe01bde503a776c8525cc165ed034f19822dede617e2e4334821763c3733a04a1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x3469c3e78812753126a23cdd1961c44765d470dbd0dd9a77253c0ddf703a2a51", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x17fb07c570c88225535827f5201f9e8f9fe434570025e72d80793a663a8d4727", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x98f9f1718ba6d279e6ad807c9abef8350075fbbeffec3eee6d587e7bfa0f17a5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xa11be91edb081d96f2baa7b4edef7d0aa867beafa41e8ae589bb9171c1522a2d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xf5a9d95a46bf67cb185381202f54528bcfd86a40f169a8cd744850a5c55528d5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x9be4d8b7812ff167d63c4ed51f3a404c906307eb526558a2921166acb6d84563", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x73b2a209a0f719a156637581dc4756e4be189470b47c3639b082ea718cf9abf1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x498336f6a174433bc6bf079282c7b43b917ad54f476c441f1719217eab0a21b1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0xf34e66817f2793c1d7e039ad7e3ec2e72474737ff435b2b3c1c46495c8b0768a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x8b96020f6dcfbc94ff76e66c858835d9e91e96144ec364f74478a61b80d39b86", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xe080cb91cb37587e222dc2e96a499048f6f5ba954fe4fb1502b3b1a0c993d8af", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x63bc7e52e7822eb15177aa9f7b14e392af4223401c5e7009985d74698b1096e9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x8caade8fe0dbc629f0775fc8b7021ecb4348e783bff8bf12088ab50ac19becd9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x646e4b0585df25a80aef977366fd2661188082eaed72290f8db635ee7ef0b745", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-state_test-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x81b54618448ab02569b6d5a181a8cbbb5ce7bef34bd3ff9ca7f5070adca6985", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_zero[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xae677d206283a9f00578d64cc01ea9a1a0b7183fc8d99a07cd3daafbf684265a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_forwards[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xc509b5079dc852c12680384c0547b3bf92906b1829cbe84cb0e49325a3e48dad", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_forward[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xb2908ea9ca8f47d03aba4b0c9c332cd94669529d6a7c620a96d4b8bd2a7be2aa", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_backwards[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xa23a9ab00a4a659cc0cf0d9c3b5cb4babb4c12d353ea05e4923da420abb3a8de", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_zero[fork_CancunEIP7692-state_test-False]", + "fixture_hash": "0x4ee5a463229bba6bd8bdea0222e482fc69e43d84bf756b97d95e5cedacbcc907", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_zero[fork_CancunEIP7692-state_test-True]", + "fixture_hash": "0x6d4b2980f310e053d6d0a1d4ac70c115713916fb5fdddf675bd57420edfefbda", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_backward[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x689bab76b917f786fef9d4a1d76f4066ba5d5dffb10a646da81f537216a4b8d0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_backwards[fork_CancunEIP7692-state_test-False]", + "fixture_hash": "0x2bc2bef0d8ea3efb4c79cf710754270555d647d366f7a50433d404b8b9243743", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_backwards[fork_CancunEIP7692-state_test-True]", + "fixture_hash": "0x1e996905b7904aae0a15e633db94a40277ff3a11858ce894d953b904379e6f2f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_forwards[fork_CancunEIP7692-state_test-False]", + "fixture_hash": "0xebbf1c094ef9827e2a2a481d4b90d2ed9bd694d71abdc939e892e00da852ec8c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_forwards[fork_CancunEIP7692-state_test-True]", + "fixture_hash": "0x70bc790339164d5580f9fd3076fe95b48d7acc80696264354d7a9fd11b07fa76", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_maxes[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x5b037863f1dd9dcf761f4654f0f540e3e5e9fd0b0c48e4047b28d8f2b3f1da0d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_maxes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative_with_data[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x9a251dd18d079864a3baac595a93d58b2dde24a5201e654516a288ceb664b60e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative_with_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_zero[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x8e797cc417887c8a7f66b0e046c80f14a60cf2183e59f183735905ae96ed8602", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x8e8458410d1d6c8dc1cb6895be894b4840461ccea6fcf414e323c54a761bfcec", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_forwards[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xa786b31db1218725995ba011d8b6830f899fe6f6b953dc556ea194457aeec71b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x2a0e621b461dde62a047b321d8b17dc3ba96f457da6f9b22b278b7ebd6954b42", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_backwards[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xe7e42b31b971a05fa64451c0e02006e0b3e07546c93c93f89cde370b1030666a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_size_3[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xe84491a28aafa5e767952d96180daaa5de04f4c2d3ea4e483d23986278cc62cf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_size_3.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_last[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x2d012e987f2d099b2eb7d347277a9dfc9af56ce331718e86bbbdce6cbe542c82", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_last.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_mid[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x33aed6892a8484bde7e2ed8daf46e7a2544e3ede577758378478d1686d841aa2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_mid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_end[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x1fd827d0ee6d41601fd1a88ecbae5d899ee6e226a61e10ce83df3e2e01724d77", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_max_forwards[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x9995ca91d617bbf466b6724f935531e6e68643ceecfa253b56a81549e16fe8c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_max_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_zero[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xead2ada7b4943e457c3078bcd416fbb97035398c4b81d692a8a431cd66c53b79", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t1-c0]", + "fixture_hash": "0xec3e79e6b0a877b1cfaff90a1a59917cb086baaad3d774bd1be4800c8e603491", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t1-c1]", + "fixture_hash": "0x1993a8f87fabe163c943584d6c50c6476a90bf34e87e1388365dee563843c5cc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t1-c3]", + "fixture_hash": "0xd130ffcb31f8cb10a4f5e88dcebb879affe11a0524be67668f3d8a60dfff2b69", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t1-c255]", + "fixture_hash": "0x62e72b4ae0dfdc95014ed60e2b6adaa11f9257206a09b55b6fe8fbad2350a0b1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t1-c256]", + "fixture_hash": "0x54924ca1de0b22160238e67e730919040ad458293de730070aeafb26f01368d1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t1-c2^256-1]", + "fixture_hash": "0x2d63f35ff773aa7b9e69ef5eb8d57c5fd19c3c712e8f114e4c09e66705907a06", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t3-c0]", + "fixture_hash": "0xe7e289c9558290b9b98d6b7ce745a05889c7b2ea26fd0a3fb9ad64784aaab3b6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t3-c1]", + "fixture_hash": "0xa1a86cd5fc00a919ad4079b3dad5bea40ea70b0305d30bdbae97e4467bcb50f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t3-c3]", + "fixture_hash": "0xf90e1cf7ef4c8108b11d66d312cd7f1fc42dc5cb78cf3c13fa4294235af1ff4f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t3-c255]", + "fixture_hash": "0x89c4b937e3b588b5292582ac7c33bac3e27c128f9f2fb96ded86fd4143dd00d2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t3-c256]", + "fixture_hash": "0x9a9527f56da1add8ca0729e559e4309d5508eadde12fbfad4477e3f06f79343", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t3-c2^256-1]", + "fixture_hash": "0xfc1fab5ea5fddfae8e0fcd39f92a2fcec3fb9c03ada22576e333eb67f8937260", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t256-c0]", + "fixture_hash": "0xbe3e690ead3ddc7bc500496afb3ac4ef0b56dce11ee63f96609117acce6f852c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t256-c1]", + "fixture_hash": "0xc199b0a8dd5e0478202c803f353e94667ba432978e766471e66700dcc7ad2c6d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t256-c3]", + "fixture_hash": "0x8da2826207d6a2329b9fca3d8e0a19cab754f1bbebcd00a18d6083292a910324", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t256-c255]", + "fixture_hash": "0x1254203c706349fd56052dba86f75f9d6ac763b412402a149e82bf9a0c038cd3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t256-c256]", + "fixture_hash": "0x4516217d394f01190529cf6798d401dbf43af226e6340a3d216aa69fc7784cdc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-state_test-t256-c2^256-1]", + "fixture_hash": "0xba7baf83e1960a938c3371967c3639a090fcbe8c4af591c3e69f72acb9ec27ae", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x977b0a5c969ac5e464bb0a10fcd3c97af43d20db2f72b0df8d74767c94669706", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_overflow[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x90bba88ea551f3ea53112d481c9340ab67d28d65e90a4181f13c374705fd89cf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_overflow[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x4716ad50bcb142487ac19950a60b285952cee76484cc591e53976b0f44300169", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_push[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x9d5a9ac10ee864ad72ae7d99dfc5e59c190372a7c298753df832b0491fde08e6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_callf[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xd9bcf1cbbce504eecd9fe00283f9dacaaa1a0de49485074ad205498ce14f52d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x9f62507b420cd9f98212b5140f61f58dc1a83ed0442ff52b4a0c6e4208569b77", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xf7c8d25614fcd1cba5b7bc91638aad830ad2c8d1f7399e2d827f138708c5a14", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_within_deep_nested[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xaaf194367e6cb0acfddc98d527b7aa973a500b4878c0b0970030b9cace43f4b7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_within_deep_nested.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-state_test-invalid_opcode]", + "fixture_hash": "0xb008531bb550577f0e5de25d34d817ba9deaff5ae1f207b4d4be3b365f4cb429", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-state_test-overflow_recursive_callf]", + "fixture_hash": "0x2bd8e772eb621cde8622469f9f3611bbbd282241d07b6f7f836f73f1b311f01f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-state_test-overflow_recursive_callf_sstore]", + "fixture_hash": "0xfbcbfda35d7ea563fe962ebb8ad62648d25c79fc0fb99d83632109694b31d063", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-state_test-overflow_recursive_callf_memory]", + "fixture_hash": "0xbbf0b8b6eba97c137fbac331cfa5249a898b01164d4d93cb1740ac0b43c80211", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-state_test-function_finishes_contract_execution]", + "fixture_hash": "0x459c7ceb3e0e0cf25315ead30e548637907d9d8e03c738af3b3b38ab7b13dd30", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-state_test-max_recursive_callf]", + "fixture_hash": "0x3190463f45c8c343b40abe2c313a1e26fbc129410d593abb4b79e982f0cce5e5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-state_test-max_recursive_callf_sstore]", + "fixture_hash": "0x13b97a56396b87d1507a10d9a9ccd5cfa95f7a7617845689a0e43e23e902580c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-state_test-max_recursive_callf_memory]", + "fixture_hash": "0xf5517456bd3afa967b5c76283ba40ffaf70d8f8bc7c41a7c8b08dbe1419504f9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_extcode.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x75779fa6e519321785cd8114367e695e55bef437f0efcfebf82046c9d3a3df0c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/extcode/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-DUPN]", + "fixture_hash": "0x56297ec76b34bf9a865a7c3e011cdecb497e0ec003af87f75f4574d07b738d03", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-SWAPN]", + "fixture_hash": "0x2396d830b85d3f4b38a9d8bb4c934d12d45ee64b24454491dfe9bd26f1b7704c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-EXCHANGE]", + "fixture_hash": "0xd131a67cffa2c953cf057777339baeb7dfc5ecd786b3a7bc778af6abdcd1bec5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-RJUMP]", + "fixture_hash": "0xfbc4b898e3ca88b73149c0cab1c012a99f45dafee846f7732d149f490b45350b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-RJUMPI0]", + "fixture_hash": "0x53eb280f241fd30def32334ba75271d92d0e93e7acc582ae19f52a26f23dad76", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-RJUMPI1]", + "fixture_hash": "0x8d48bb669ae9dfa9448d01658cc7b6492f25349bf174a97eacc90c3051cb7489", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-CALLF]", + "fixture_hash": "0x7fd90576284acc75fd248837297540d1cd77ddbcf171c826366f693ae02e8b74", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-RETF]", + "fixture_hash": "0xb9e9c8872794e9b140104856496ab18fa712f2b2efc19676e96f4c1938c06d9f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-JUMPF]", + "fixture_hash": "0x6a9c8beb9bd41b16b305812a8c0f267ac951c9702531ec1bd1e3b0cfb046f3b2", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-EXTCALL]", + "fixture_hash": "0x885277a21a9c2319a6d1873690cbf9dbd810613ba80cff491d422047af04504b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-EXTDELEGATECALL]", + "fixture_hash": "0x976a587e89c49884792a544e239de3463aabd5859ddfc77b2ed12005738ed6e7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-EXTSTATICCALL]", + "fixture_hash": "0x7e617c6af471a8c009a0eaf04a0a0cb9b7ce5cedf01d446e3af54220a749cf23", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-DATALOAD]", + "fixture_hash": "0xf4264c5aa42a0edd2ae6512d17235f12a8fd8a187b4fba53919d053360e57500", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-DATALOADN]", + "fixture_hash": "0x57079933a384d33858568cabf17693cd59c3cb84813238c53538451c32d75fe7", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-DATASIZE]", + "fixture_hash": "0x6bf94c46f3af3f6b1188a58491fefca9282c145e90071471cf008cdfa780b5d1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-DATACOPY]", + "fixture_hash": "0xcdf4db7f33996ba03a36c8df7b53035c3a1011f36c5db6209ef7e82c00d4b5ff", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-EOFCREATE]", + "fixture_hash": "0x4f1385f5194810acbedd63557bdc6cabb4f1be10bf130c7a9a82b1ec2c60671e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-state_test-RETURNCONTRACT]", + "fixture_hash": "0x8994d18bf2d676ea09ca76446afce32e263a390f543f897f05251e8417d9b13", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_all_valid_immediates[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x53eb80ea32b0085aec345180cd33cced1b56f034f193b62cb322e7ebad5e2001", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_valid_immediates[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x9e4b7a278b26791f74b247055f8fc1e28c824e8e9a0046c6728ee493af44c905", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_all_valid_immediates[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x34d957638eb36daf3149cabb7f280050a91a1bd9dbb975d5488cd0a751ebcc37", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-2-to-0-so-0]", + "fixture_hash": "0x2bc51cc667269666005f7345a1d034607e6c57122ae8084aa594ed82967bb60f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-2-to-0-so-2]", + "fixture_hash": "0x9ea4f5e343fb57900468bac4290f5697dded4f2db930e3545abf193e6acc52f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-2-to-0-so-4]", + "fixture_hash": "0x86c648f273fca3105221af97a1adc396a40bab091d05beebc84838f43318280c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-2-to-2-so-2]", + "fixture_hash": "0x227267099688d3b12218548767647f393949f749f04dbcb61fee61f8b29486b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-2-to-2-so-4]", + "fixture_hash": "0x354cf25d817c8f2b6ab01fbf6e1fef5f6c461a67a54456d00d2dacb704bc4439", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-2-to-4-so-4]", + "fixture_hash": "0x9666b8109b59e020490366af2b84e67f2da7e400abcde369b8af457edf6a352e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-4-to-0-so-0]", + "fixture_hash": "0x304a531aff8f7c4863bc7c62f776bc3af1f3828cd2d2027dc670c08df4b998ea", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-4-to-0-so-2]", + "fixture_hash": "0x8d3dbe2c0be34f9410e9ec4daced8c663cf0a4b8803e58443c5a278e90838ae1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-4-to-0-so-4]", + "fixture_hash": "0xec7a15f9188cbd29ac45a06d39fcd4ad4e95a985869df7c279533c6dafccbe59", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-4-to-2-so-2]", + "fixture_hash": "0x4131fe9875ff4b89c2f3c492b7cd9a4c675b8002ac292bb6c106f695929d990f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-4-to-2-so-4]", + "fixture_hash": "0xa33fef26a0a0bd6b5eaf467fdb39be1552789590bbc0aba254f2abce3492ecd5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-less-stack-to-4-to-4-so-4]", + "fixture_hash": "0xc2caddfd3d112fdba322247788638773d64ad725f08fb83aaede039dab33068e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-0-to-0-so-0]", + "fixture_hash": "0x2a9ec230cc93fcee26892a6b9ac0a0f87dd1fcd1f23004ba2a5e06a9e40af554", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-0-to-0-so-2]", + "fixture_hash": "0x9ae79bcd9e17f90290cc543c0d958a106a48252ec776d2452848afc8e7f68f5c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-0-to-0-so-4]", + "fixture_hash": "0xfc1b917b50958b861d76f09005afd7dd3d1ab82488a7e261139092197d93ef28", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-0-to-2-so-2]", + "fixture_hash": "0x3faedaef2fc00622e9551dada35721f3e2b00bb420c6110213629f96b9f6f142", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-0-to-2-so-4]", + "fixture_hash": "0xec722fc94e6f154b8964ea9b04e9325669fa0de82d96a261cbb95ded6d08560a", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-0-to-4-so-4]", + "fixture_hash": "0xd50b6b418d4f9651dd48e36111faca93348b42fa1c835e43dd775c50a6a72fb1", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-2-to-0-so-0]", + "fixture_hash": "0xcb91688bf7b283e519d9c0df8ee3f39b60578d6a8062817a378cfc0395ae3e73", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-2-to-0-so-2]", + "fixture_hash": "0xc6b1e1fde5dccec92e8991a3cf31a621f682656cf7ff48a29825efc78789700", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-2-to-0-so-4]", + "fixture_hash": "0xb2e7be3d1cda80b5a1394c6fceb4c19f9f10b77a8c0fa15ace0795961dc26caf", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-2-to-2-so-2]", + "fixture_hash": "0x92225cbcdc43a14b8b133ec1197fca9e64f1355ae1fb839b39e8144837d69c48", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-2-to-2-so-4]", + "fixture_hash": "0x2667c6265226a65fc2cd55d9345e371ee059523bb660cf28a9807773d5b7a0e6", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-2-to-4-so-4]", + "fixture_hash": "0xb18002d3f166a059b2fdd64a46022e75c10f6cb3d46e01d48f5c47dd6b3c4a85", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-4-to-0-so-0]", + "fixture_hash": "0xd910e77b0054d7405b29a8696cb52e5b1fd96c3341beba20f8e5a973ae1302ab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-4-to-0-so-2]", + "fixture_hash": "0x7eb886e3bb68966ea7de8cb8909f218ac143aa6a80daf5f58c8466556d3461e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-4-to-0-so-4]", + "fixture_hash": "0x178fef4c4238a08f93aeb63f35c0a20a43d7df86669f0bf6e1498343a9d5cfba", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-4-to-2-so-2]", + "fixture_hash": "0xf5fddb5245366ea74250d2469a0d5694ec7bf087cca48b5b35e15fbf1488316", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-4-to-2-so-4]", + "fixture_hash": "0x8956a1c781b9aa0ea8756371abecc6297022a74393fbd26799c5c56a3f7df363", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-same-stack-to-4-to-4-so-4]", + "fixture_hash": "0x42343a552b6f62bd588a1c72d07ca76fd2291c0d22b56cfadd6d9b1cebf8cf86", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-0-to-0-so-0]", + "fixture_hash": "0x669f312d622424735c2b6c8691e444fb22dc8ca61c4901fdcb6864816d121c1c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-0-to-0-so-2]", + "fixture_hash": "0xb7948eac6f7750e9b805a7a6f709e9512f1fc00487b836995bf631ee70016d74", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-0-to-0-so-4]", + "fixture_hash": "0x8efeee0d6a3e1ea548a9936fb1fbe9c11d65bdbd79aece4cbb2c4691f5381c39", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-0-to-2-so-2]", + "fixture_hash": "0x7ac01ceddcc7fccab885b08157130cb3c679a93f1ed8dbc8e4a43adb1f85cf1c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-0-to-2-so-4]", + "fixture_hash": "0x7eaa161a8c0520c5f51ce2a4b6b05aa051c251598094fee2aeac855225229d00", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-0-to-4-so-4]", + "fixture_hash": "0xc6e15a49bed4ff873a2c060c2c4af9388ac5e990ebcac5c859156da42e38ff7b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-2-to-0-so-0]", + "fixture_hash": "0xe991e0ec086125afe6238650d9d0ace40f04ee21217bc84471391426c6716977", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-2-to-0-so-2]", + "fixture_hash": "0xc92e2e367eb7b4e1672e9d6f49f8d3dafbae00d8dc79b54cc4f9298add3fe940", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-2-to-0-so-4]", + "fixture_hash": "0x865f622dce57a47a8f3dc28715a107e677df0ce4467d6ba3e0229aa45bb3758b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-2-to-2-so-2]", + "fixture_hash": "0xfad58eea7f8581eab9d5223019f9a11377226261309477de1f55cf23160c65b5", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-2-to-2-so-4]", + "fixture_hash": "0x854e4cbd0ea1d6446e17d40456740d4955e25f45e2e49e32d67733476cb0fcab", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-2-to-4-so-4]", + "fixture_hash": "0x8fc9da90979fc6dc89ba1914f2f0719c03bd812a19d0a921bec5d279883ab57b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-4-to-0-so-0]", + "fixture_hash": "0x7a4a2d451b4b48e39b432b552eaf17e3137e103b706bca5b92c84a7eb7cafb09", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-4-to-0-so-2]", + "fixture_hash": "0xea4a61be2493298849583295652ff29f01ec56c7f837ec547615134c617137ff", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-4-to-0-so-4]", + "fixture_hash": "0xc7e5d62873ea2f417be2df6da6ae8b7ec694d93223724ebc609d2dd80dc1cfcb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-4-to-2-so-2]", + "fixture_hash": "0xca58f7cfab2f4c7f5db207e4c23be8a31360fbc790f9f56731741b2eeda04c7e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-4-to-2-so-4]", + "fixture_hash": "0x30c6ad4ba4817b57cd58a0d39924dc6a808937ad05131173702011ae047d6e2d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-state_test-more-stack-to-4-to-4-so-4]", + "fixture_hash": "0x3e99262892e56e3786c63afc20012e1f4325f47291eba4971cd31c7dc4b626be", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-0-ti-0]", + "fixture_hash": "0x7f5816fe2ce478c09d4309cbb56909399d2521c144b3552a2cbc9fd3bd90c82d", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-0-ti-2]", + "fixture_hash": "0x37bb2d47c246fd8510aa0de29526c244bb76e2823ed037389ec86462c995a264", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-0-ti-4]", + "fixture_hash": "0x5e8b176b2d72b9fc12180e62629c43a6ce5ee352697c936f0f203b05d2e9f79", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-2-ti-0]", + "fixture_hash": "0xa0b8ee99a6dd481e1686d9ab55ae9d739ae61b4bc524ad20f9ea2ca2157feafb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-2-ti-2]", + "fixture_hash": "0x7e65dc13016114276bce382272e3aa8c08839f02d0b12470423b9e8fbee54c35", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-2-ti-4]", + "fixture_hash": "0xfa2087e8cfd15f9fde87e4ef784ca8b1de011dcbb3d9ee4da02d23dff14e7656", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-4-ti-0]", + "fixture_hash": "0xd2fbfba2407f0d54d02ce1825cffc489621d68d41e639420de36516b2e94d506", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-4-ti-2]", + "fixture_hash": "0xc37d6a23f4e4850aa17f3530a62a229f49afbb0d63182fabbd5de0f067dc299b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-state_test-h-4-ti-4]", + "fixture_hash": "0x22548da72916fd42411511f9643fde3c64e0a61e958db97ad8142f8b9f38818f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-N-to-N]", + "fixture_hash": "0x6c36c76522c193dd9076f7c75d6cf437dfeb82558b08214071a1ed528169b49f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-N-to-0]", + "fixture_hash": "0x4ad32dd16555adaa6ca1eb809bf8f3412bd638c49cd1087038a6a333c251f926", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-N-to-2]", + "fixture_hash": "0xee02cf4c4f158d52f80a31bf623aadbbfd5ef3fdbf9251b82e1e26a15e2cfb62", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-N-to-4]", + "fixture_hash": "0x7f2d3e7150128aa96dd765398fcc6d6350dc6ad4aa6ad441966c3c2f847f2a78", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-N-to-127]", + "fixture_hash": "0x86a6b3f752e8e7e7d64a2156543f368eb81de143b890c9e0800d700319ab8bd0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-0-to-N]", + "fixture_hash": "0xc1d522c32c2305a5afd8c91b0f20a352b79f5a85ca985197bfcb4af1f0042ca9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-0-to-0]", + "fixture_hash": "0xebf8847e279a90ab6451015109f80683763174df40bbbd707ca337b70c2ef9ad", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-0-to-2]", + "fixture_hash": "0x9b1ae19e35640135be76d521ead624fa43ac3e2d3fab79ce08aaf16c5d2657fb", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-0-to-4]", + "fixture_hash": "0xc5b500c1867f270d102d09f9c6ab5da8e9326608bf9b2f9bf62a5adc42bfb27e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-0-to-127]", + "fixture_hash": "0x8543d81e0d98e4de1b9280b1f05389f0492cc37223b58422ce5582a34dc011ba", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-2-to-N]", + "fixture_hash": "0x85f958b5e594ca6a1d0a3a54a3e7d007df38fc7f76736dd3bb9ec353dff6655", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-2-to-0]", + "fixture_hash": "0xab337c9fd110221377fa0d34e1d1075673db48acf96219fe297342f2e87ccc1f", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-2-to-2]", + "fixture_hash": "0x62ebe8e8c5c88734434c91412e1eee000cff5c3af89cf15e93adb7126abada27", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-2-to-4]", + "fixture_hash": "0xc14f665eb5e0bc2806cf197db65098344c7933ff38d2149decd347f45b62ec9c", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-2-to-127]", + "fixture_hash": "0xfd35e1115d725e7eb53d87c449bba447b975abfa6d91d336ae5b852c684535b3", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-4-to-N]", + "fixture_hash": "0xbb52a0bd07a324e12612e845e029e270b88ab681318efbe691eb9940811b3dad", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-4-to-0]", + "fixture_hash": "0xcb3d0aa8cdbeb4cd85062610d06eddafa505bbca73dd68b9c76845d15784f961", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-4-to-2]", + "fixture_hash": "0xd5467c141f64146f8ac3dbd564eece79512cfe79f058c62bc82c0e789f7d1d6b", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-4-to-4]", + "fixture_hash": "0x6750d8d30330d0b82057a6e6245c6f5b0cae55a22de920706e08c6f5c95e2bda", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-4-to-127]", + "fixture_hash": "0x9492aa143c73a22580876b59afb0f929a7df3b2707ef48a3f0660ef773b5eac8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-127-to-N]", + "fixture_hash": "0xdd030dd8b3f813b86b7062fcffc8613207344f5b0ac0ede74b48eded0377311e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-127-to-0]", + "fixture_hash": "0x34dde584237c65cb7cddef0a514b61b3493c1a9610d76a40316be2ca9d9a2a32", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-127-to-2]", + "fixture_hash": "0xaf8160046a4c0c34b74dfd91b5528c861780f731c0f2f9cc6ca52cd349dbcd92", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-127-to-4]", + "fixture_hash": "0x478e2fa3f63435444eb159af4f32a92169528a8a92d184ff86081c87b91183dc", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-state_test-so-127-to-127]", + "fixture_hash": "0x4f9e71520bd2d23fbdf61aa1af26da9666e7f016a80a164010f95fc95653ee32", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_way_too_large[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x7ea62449cd796e784252cbaaeef821fb00ba620dffa6dacd61f4c9e82fae9a19", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_way_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x738f9ca6de4fb2958ce3f7ee802a9b221f1b5af1e127b95e8a7fb1ec07b53bb9", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_forward[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x4cad96c667bff7a287c2b40ab1586ec08b08152c2f9df4f40c0096941f887af8", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_too_large[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x8aca8584caa0d4030eaabbdbd892eca9c31a99040d403e0985202d8b81bbe2f0", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_callf_to_non_returning_section[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xd620e720e2c26afb3e7680fc763084ac419cf825450d79d8c43edf91e135b363", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/callf_to_non_returning_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_backward[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x349b5912186dc3ff7dca10fd1f7f8be7e9ecf48e90363ab7ab07f25cb68336e", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xc3af4767372e6ec8cd26891e01ea184fa00c8495d14cc18203e83b1343210144", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024_at_push[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x8995fbf71473924d75e4910ddcf80946fbe9ab65124c06f8d1d8f9cda10767d4", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x6679a591f1ac49a46ba9931557e592ab1fe24417340c46a1074c42b075d27573", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_nonexistent_section[fork_CancunEIP7692-state_test]", + "fixture_hash": "0xb3c1a144a5d41fd1459a50c93059a823f3c3785f72eff166257c31c9a7d00e86", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_nonexistent_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_overflow[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x705bace9e0c5d6dc687595337f4686f120d1eaefeaefde386242ec829d6c5716", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_overflow[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x894930fac2344177202df8ca59addcef8fda1bffa1577f1e948ce1c0e919574", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_self[fork_CancunEIP7692-state_test]", + "fixture_hash": "0x9a24aaa4721ed970203c4544447a99fc827fae47129368d536ea617675f524", + "fork": "Prague", + "format": "state_test", + "json_path": "state_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_self.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xb688b2699bb85df23c25b59024ae2384cc90e6d51c61b80bd292fdffe47de25", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xb560ff3341834e4272b9b016dea3b914ae056b8a03d3e2f1f001d3a1e23ef9dd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xa84d0cc0e387ae985aea140819307c16bcd77c59e49517ecdd3471474cd7beb8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xbef9b7eda8d30e095e4aba739a69146184ccf6ed7242136585ca31bdc7292ed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xc06df3976c57e26cf80731331dcfe5508c7493fd66bdde0041efe0edc03f0b64", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xc8054d7341a47520ffb737c3f5ce857e17cb6882ca54e3aa4a1bae4f02daa588", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xb5f0361fc63e76165573cd3b3ef358ed533b204c85a65f4027afa6d900de6caf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xcc6243ae86dca844a8f38a14980502af5be49c8d39fbd3ca5519d394a05cbd93", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x1cdc6a4dd37526e59cd5b7912d368e0728c1c9c21eab3f4c95886b09aca5291c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x4231cae9482b80b8048a59558d3e7fef3254a24d880444469731d10efd76ddce", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x3833fe550cb820bc630fdeccd71ea09afcbce7281c029a8eda45ecb365190ed6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xeb81ab154f774071d58ec7ec08be6a50031cabb97d05fe9d76b10aecdc0a558b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xec2eaceacf316f168cbb281bdf955c754310d323e2be76eee9c9da86d74ddc42", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x9293a6cb151d33ff5205d308dbad55ee97205a3374ef44de09c3cbb5d5ace9c5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x18381afd2a47f361b0946d498e86267fc1060666dced54f27b22869cf9a1a639", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x9b2d69ce6bac529f7560ea6fb45e6474337b98452e2849f27a5d9f36f8875b2d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xae161dc64bfc025132492e92610de1fdd9a298e726b271e8f8960d8c17b75295", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x73556655e6559aefeb86c0d1e4100317f3c102ab7bc39a4525cd29ed1c75757b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x1bc781faaf32f2329555e31a8c9c55c1c896c1009ff278e97be5b86abc27f47f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xe620cc741e828364a8e4bfeb1a7c45eea7c6400619cc8953806b95343423e8c2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x7216cea2c2f745b93d3f351599ca33290667a83bb6a2afb472f356f6518ffeef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xe72c1394a5899edb1c45ea3cfbf2d7a5d989846404d4f966532c9c3b01ce6915", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xeb17736f981f914e65f286074865f7a72b72d5a8b8fda62430bfa6e540c70694", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x4257053cf8eff19152451e247d570c1902fcbf55da450a6714eee79f8295831a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x790c6896952b5d616a52d2a1ccbdee282ad0c326f410a8705b651b7f8238c2f9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x4ec416917996de47671503122df55d18db2305bb21147da2479aafe2f4dc7503", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x3a150519e61a875227ec162309713e7edbf66326e3ba094635a94a5973ef5258", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x396e8fdf1054f10d0c2c81bfaa6a0221864ac7eb1856dd287217dc28f08e1580", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xf40119a6434a62eb39e5c016a1171b7c36ccecd56fbd2f1d77fa53e49ee9032", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xc3ccb8f19be8e29921dd3126520022d1f751e02d4f6e69052ff1d63616082af4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x86c9261cec286da4729588e8bf96e9403ddae84c65b82998a97b7553fc887022", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x626c6d3d54788058df46b3d5c719ed6309040a0760a11eabfd0041014848cd9a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xdde952f8f75c9cce0be6b498bc1edc6ac1b4e2f0d9d1f0d80b88c07fd29960c6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x55fefa03ef642bd9daee061874e0427c75d6f67f6a999bef0c26dc72bf63b706", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x544bb8d60e3a49912c9b79a3597200a4a093523fa39f609513d794412e8c0eec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x20ea187c2effe36a66c7ac8e695b8fcac0002a6fb758ab9893a128bedb2d1e59", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xadc19b4561778965ac48287c21e32df8c2ea2b8e8d09136dd7e046ea8c95fe57", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0xd40a7315595d6846b12dfc7b6a166e77c6cf94c56e627a9571edd562ae0a5079", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xc71bf143f7028e30d67a3f66a5c0a70a6302c4cf24d084d3ddfe1a70776b5a71", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x997fb8d51267b8243c2940bde245e43e432df5eea96c17c5ebb7f8e5d8821c05", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xde33c54d5f28f91a74270fd3236a6d10aea98502639ae5e965ffea2261733b94", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x479c524effe4478a98b5941a94ee761fb1c8f5fa6aacfcf0163f542401999f10", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xad0f834d1cacef305b701fee5759e4a5718e4b9b9ef91f312c0c43c559348f11", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xc48555d67abd7b47e95047147233db99d79059d49f8e2f19ca59f809a110702a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xa86d033f8bf8b15aa2f2055c11b8dc36b32c51184745e48699e833a7abcf9286", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x655643027880de99d3a64e53cdf166b775b47e58dde494fe7c44488b57c1903e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xdcbb72e7c8d548a0c723b80757c703b966a68394fb3e9a6335bbab3524920d19", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xf1ee2f73e597c95b22143f18afa2ca0dd41e81bb754bd3ddf1ced5e3461a3ed7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x8428116a7008d22f46e6830f642b5dc11d0d30f0e572c2baadf9e1d71caa4702", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x378bd9b00f2f82332567910b9d863d8e350121a6fc5e4bb55969cbe3af962422", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xd54a952dd662ddeb67459badf6d89947b924e72cd3db201ebaa624382f6f0cb9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xbb94fbcfc87a7fff0e21e84f3a3bec4d65c91df3fe5e4d4707ae92e87847e7a0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x2e29e490a0d54422b74b2a356d9ed727cdfc624006e5616d28460656414d8079", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x27c1ce95f4d124775a7049196e771c262d710299e40ce509e436a71259714068", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x5fbc76001d9e3728c82e27c179077287cd185c521d3b1c7925c2af8ddb3e7227", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xf995a2edc7e7bf580efd7f26b3cfee2c8a02bb553a1e8d9b0a85205841b0c548", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xd5970838008013f9c9153f02d1977a59e35ec6ef706839ea39abdc71a6d7fdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x4993d0aef645ba0124fc8005a9919420070ebb884e8eae65429b53438f518530", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xd340fca668b0c853fd376e8c6bf91de545912b7a9f1b29b915a9a5e7b4ad7a25", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xd37bbca0ce265da3d2a83cd6fdd296371d2939f0cb30bbff53a978c360b83128", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x378ef56f01a9282b5115df070c0db1552fc20bb718276c876439a035f6ec9091", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x87b150c1034507c5e2ee033f949ee74e3189054806d99b5662a5c0a92de0e144", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x967bee66b32204e905b40a16445f82951a4d221f3f53f2fb6a2d8cd7e24b571b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x92f545f884b5d7f88e841670831e8edcde77752fcfa7302c77538b78a9494cd0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xc0ece96d869d91bea976931c78c08ca92e9044c1bb1d68150641bf4c81be12fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x9cf95e0daacc1fbd90218c7d9cedf193b99c302c0d8ba9a43ca9d8bede267423", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x5cbe130f135b28171ac97ac60e4c193d58e992eedafc2f2064ba9412c375841a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x9e9b60114d746648f14dd461dcce2573f6814e78a3671ef2e3953e2c4560e43d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x8b99442b34703981977d3651cd526250a549077f260f92da759c143deaac9271", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x647f77024b661562d68cfb9e575db9fa51ede131327573e94d2a41fb49e7c56b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x1262025623bafa485b814c0eace5c89ebc57aabd98a04b873f44b66f2d25ef5a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x45b45f5bdd75fe5558008af715bbec8a06c393ead3aac46b8bd88322832ef1ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x18ca9885b44670187aaf637ce990ae130146d9ecb186d22c8b140f3a72fe662c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x734528dad8d4c97d99b183806a28ed4d1717656469c5c5701f503e1ec37e6120", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x27f6d496c4131cc1b2c727206700c54d25b6ae03e58c3a6d76ad46b39a279d4d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x8fcebdc1acd0ce6c2f59330eecd863389bc13ffdab358d6e22058a414a5a16fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xeea6798fbc18a88d34961cc1a15a4d494b5f11c7f2e006a90135fd8ade470bf0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0xe6f57d48cfd69ab9181fb9294afca38f35f888fd0e2bd71932b62886300deacd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xc07d2d61920ccdc23d8ea55ff99ac3d5d3a4df2ee02498a63b67133ce2d6bd3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x81c536251b951af3ba06fa5dcdf67d657906ff7ea954b8577da451163c2b8b18", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x2097c2c4fb37d9f5c19bc4d4c4e1744cda0faeb55484e7edea8ce43340c4a685", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x489f1a78d000f372d8785a505d350463b6fed9dceab2d344f0d3a0186338d64", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0xadec74946c62e6192e0a4cc351082d75184452b646a166e8de8ac1f3234fcccf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xeaae3d36821aa5a5048ea70c416ed98a660797d2724d0091245e271d0a565472", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x5d3fac72a38943267207db7f8034f13663f7755f65741d280cbcc20002eba822", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0xd05986ad953807bc75717cba309c107827e4fec97f0f4acd0074be461ade0e57", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x54173f3a5ef7499dd5e2e10558e30c31ac2f20b1a53f2c71001af5caabd104e9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0xd99a0ff9f6ff896aa3bea81b398f4d39a50aa3fff546cefcb26d1c5a1091f0fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x7709b6518749fb4d057c00e0ef705a1470fe95b3c464f603a697787061ac3fb3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xf0962abee91ddbdf494801e65801d39f3dd48edeb3be504f35a671d3d4bb030", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xbbc72787ec0ceadd5c5aa9a6a1d1adb5a17ace2b3f486dffeaad781d71d4111c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xf188790dfbd19b1674d138789e4ce2c60382a6ad5ce3e4b0557ddb875c0f8f0d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xa5704cfad97bf338e97c308ccd27e45987b90851f7debe14fbff2dc42ec784df", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x15bf6f5c3edce67a24275f7f1f85e9e38f961e378b72762e58d18b0a6d8e8633", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x7cf74e5e57f6786ca2a5b54b5e9eb815e9e6515d5a844c108b1eb0a701f07393", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xecc58e8452a7942296f9adfbd9901adeefa48b8a5fd0386662180b781fd1fc8a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xd56f0ebf07105e8017bafd42f5bcb19a678d28ec8c0ad457a578016be849227e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x306ad59e42451538194877273e807f192eb9f0afd39856c699284401e68c9a91", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x222bf8f7df1e7a04bb9ac87eaed6ab4758aa76fab59d484d5bdc64189e17e88c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xea35434149fe68947c953dac4be86c242aeba575afa632ca65e485558eb8f04f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x7fbd09d0dc4d185f8776deb45ec1aa66d3cba7c1f8a4ce8386cadf48fc50a3f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x85af8da90c43797b632991440d0136780f0f39dfba736cff91a8af80c6a4ec0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x89793954563eef8cd4f9f1d9d4c431f496baf151be2267947e8f267cbfd8d7ad", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xd1ca0f4a9d737acbb78d5dc2f6a87ef88054b0565713ac6fd5c02c0f8c1a4c6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xb3c8aa11d87fc6677d8e26b11e422bd96b603a5720e644a9d7f1be3b58f57e69", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x210e630af6721ed5823673b7bc594188b829b52c85dce86232436c8248208fed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xd74106e855251d62ec3d7f423902df2e2fc48ce6e41fbaaad29341aa0ebc44b5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x40c71e69e937e6799d5843ffa0970f1c23f282924e0c55d86f027edc4f0d1db8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xa9296aeab6e8573164660aedefeff4054ec42a7772507c2ef772077eb7a34628", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xe62c7c0b584d1845f3e8725acb31f6696e2c38f338a1688a9b81853ea3ffda8e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x8a5d994ee5023000396da2871f1ca6f1260db5d0fc90c4cd9eea56c032ae4647", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x4e9196a6017209d8f79db3d0780a6a5d5fca175fae301673fb77b0b3f6366b77", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x4ac09d7cac3e389e4a6f26e31997feee00be51096900e8609132def4cc07e445", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x8d504db572bde9daf0e350cc7e5b2db8a8d14971a037355fc47b9eac9d0e3fc1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x8a407ff944735f79b9cd999d1787e77d359f70f7b42262260efd94a657fb6ca8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x5a2a3984fefc8d2c6e58374a57cbcb4f96d749a8ba2a4e60d092ece510149485", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xaa08a99624b78bc476ef23e30d4ebd7f03ec577ee9e98a04062850ba1054cb6c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x5cf9b5556d0483734e35294ecd127c23122990ac66edc49dec7e7feafb571b6e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x2d0cffa066d4fc1e51de61eef08795d1e02d6a996d60a30d1f259d709f97bdf8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x1216d10559876be74cdb610ac96af455f6aa58204caa518585a7891269a8cf22", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x9bd5acf8e8caf2abfd4a4f1ebb59f7a4b822cd82ff91915926266516fac55c11", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x1ab1d441c28d3257dc57ee4807b2de7b9928e30917927381b3c5c4faf4d6a356", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x4c817a55534a1f510107a77dc0940ca0e2654de5a8b4e8ea81189052ff292c27", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x49f67c671e3a67db6757be20dd470e29a39a2aec780609ea5a04e0251d1eff8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x893bfb5ba067ed4ce795bb58b5f7006a91f7d6bde1deeaac73a45a9f26e654b2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x8f33e32a095e6db9781b4acd900c2e3be02850125239862359fcde323289b730", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x2434c60f371bd0791c229a4421aa32f424dee78d19b338fe8fb18c5bb09bd64e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x117f435b31b2e9748eb14711d7482a201af9d9bba5827e6b515c6f3eedc97b3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xf399701ef965d64f0ad856bac2b2a3d73fc32e56e9afcea2798c5dd9ca627273", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xbb43a5e1296e26746c137ced76255671fe397208ce0bd0095220b69e97b1cc18", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0xf54f55ecfad4c79031bbd6a8be87ef8929bd706e243444888a3df5c4c367990b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x66be5b216b0c192a2626395f990e2a1765e0b812f96aeef240feae463edc55ed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xbbce787b9fdab061811ebd39faab155899802ce223ac1e44608e05eae1f7b496", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xf7d9524165dcf3f2b6242de7d8207576912b555b7b6391a9e7ca96bd454490dd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x5c559dad70d04bc95ab9a2b35198c2af6405ce2810a3d6b2fe6077c36399f701", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x38c98fc68ad9a70d6fc9208fd8ded6f56b5f67643cba6323e1d47fadcb326fac", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x4891f63e6955926fac8cd1ec6312407c1eb336a62df90c815dd2d4f30213275a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x9be79c00ef5a049cb45bfe31b23ca01be9f7f3ffbb6e8ac187e2e958622c1d93", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x84476199e6da0d71a51daeeb6b03d6de4da9d6513374cbb57d0f7930582087bd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x1a560bb2f5bd31775a25982b1ebcedb2708ace87c011c542d82d3a404e6c031a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0xe745f212150b5fb1e0829d3b1e14c62250ee084819219b59b31943610770ef2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0xd05f94535972fae8fd9ca4bfab6c1cb3c0615f834be7e9062e02f219c2ccbbf2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x506d192240b3cf3b468c970344dd5a8f9a16407f336f5fd22c04aa3e3313d940", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xca3149ce3adf6c9560e8e4a3d86ed962488532311999a9786b1286954230a45", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0xb40c44339b8e14dbd8ca1eafe09331dbe19e1656be3a5a2763572acd58a88def", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x4648fbf09e98f9d8861a7f3434d8dee518ad2cb7c256004340a94f457b2421f8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xa1d72f67f0baf892446f6c5639ac49eb812a2bd888d05287999b4c604db8880e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x8a7853083be75b742ebe6073fb43b9b8b9b18434cebdf1078e38ae5366e493c7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xa74f4903cc345016c327736f4cf2974c03df6689502eec87143467eaa60fd4ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x9b10133471243705d35c38e5bd62152df6bf05fe7c6b2f63239914abc94dffa2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x9902853f5b45fe9e2b30d72fc73a94cfb51f1303c8393aebe4f7c4b2b0529abb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0xa0ea5505c3506e4ea1f3ad715cdd650b040a28191205059ab58115c152ddfb85", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x6287ea7cb286c3cb71b01f68aa20dc76853d69548c6ebe0a15d84f82f102807", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xa6ba37e93ca05a9cfe56e1255a205e81d1ab1c51829d3e99988ca6de9126216b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0x6042fcf174a18c6aff6ce241b397f36c556879dcfd4e25528c47a9c702cd5468", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x3ecaef39b22440e0b57adcda31a7c5328c650ca69b47ae7237ca2b7c9444b0c5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xe06d4be884830086960f2881348051f82254a599b96e4729d0b081bf38dc9f8e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x20a8ba777fd495f288a17466dfc46e74e3899ac0b21d03db5c1cd792cf9ab784", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xac05fd966eac2f8bf45ab1e2241d8c8f40286ecb6ec9d98cd960e1a9fab645d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0xea80995fdbdd5e35ce43bd4ef4e0d46c180eda48e6ee50d7d906862104a61ec5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xe90aab0dddd770939b2ecfb5a6f5b2fd2bfed7e79fbd9756b9e53f62742b778f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x3b92960b64cd149a5703a5e881c4309556157e8af81fb65ed0991e2ceb16339d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x5c7bb3ada7cc3642c3f99a867c3ea9d504140cc70f1a2a918938eb0adfa46143", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x170c6f16f9614b6117ab280c2afd8598970b9a37d0381ca4648b209b5edbe494", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x778a3e4a41c580d56cae777789c7cc9db706466da5d4ee19acd2e8d341cafd62", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0xf634e6b74611c85c75c4ebabcf197ea0414ba85cef018e29418ac645a74b412b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xf990eecdd0575b903ec1a673286fb3b3fd6ed63a51a2f7080165b166b236fb28", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x7729adffadda9fca190e082ca461dc3c556f2720b8c29d4538dbadf48a77acb0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x2955e178e71cd4332f7d4b867cc0a556a86e9afb2597c2ea187152e3d03a610d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x6ebd32c205a4dc747493d3068f75714c6a56f1bedaeff68b9fa2c69fd54e917c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x45e1511eb6ffcd10caf12b9e5dfa9c976fb61ed46dd4880f6cabbb1de4dfdd46", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-empty_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x46869bc97c2cd9496f0b2bb4eb91851a1ac45fc6a4491b0f5ad773d9c5ec491c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x2b22f169430446136ee7efef099089c4352798d8c5918bcec340c6bae7526f9a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x7f90232deb56e9722846ee1b4aa8dbdfb81eaffe0e5a3ab12b8ec31d60abf267", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xefc1dcf233d0cb5fac6576938655288b99ff5c4f9ce751d58c647416016a9201", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xde28e26acdd27ed97172a4ec1e29edbfa246037860d93abf81979e68040a10f4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x9378cebd1e290a471ccdfb6fd3698e720f4c0e21f3e9522e1fe8013095045b18", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x4bac44c040588a982ed426281718f50aadde8997163677766d675e58098543df", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xa62f43c406a3021410ae08f8146bcc70598cedd4347e863d33762df87aee179c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x4538ef574e3b552fc43a1f9b768334b3525d95601ad9192b5195913d4aee3cd4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xcb4abf2ad1b6d76e7116f74ab609d14321c6663105961f81cc4b67afbdc69336", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xbe1a12b1e971651f03960d3f8ad5615daaa1798178eb18e0aa2e5e1cbdf349a2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x71e252410f7bffa3a2f0eea1dbeab10098755f1c793c4dca9af061eea8c290fe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-byte_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0xdb1aae91ea747547f9ed5f55384a76b6e344851a450423e923f34f807cd5be0f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xad40de2db00595453d5ca7d2b18295b7e55bb5d1b996a82b006cd2299645ad52", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xdc8ec72e9511c36be5351fc6cc16e175c859c62591670ea7ac76384f02d7169d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xe3ad874281031db4976134ba48933f923f06ae9d90564dfef467ff8d382cfc1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x77a0ddceae87425ecaebda5d4d25dcc7618226d4f6cbb727266030d1817784cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x27760de97c923d926e6eb6f0a47a4fbc911c6feec807316220f85064c75dfd92", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x3bc827849495118f815ac7f25a8b1b9e85e48039501d47459a1d55e78ba1bebc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xf2fcdc7820c1b5be67d2f5ec02fc8d0a7822a73c9f394aa566997cc0c071b698", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xc4507f0aa6dc5091a7c990f66d8028cbeb9f5e6b54d47a40f3f9d4e00451db81", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xe2ff1fee45b7e50c56476ec1b324e44f0b908e75df2e369172a6021cad1d3410", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xaeca4b6313d0bdcf449991c5a8f0fae7d25c6b56004445549514889ba3b32747", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x48f9539ae86322b3a5941472cde120b393f81b1dc5de06a4a5d64aacfd1286d1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-word_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x23a2b6f7d0bb34ceb30e4dc37ed505f0e18752f1bd11bca5384d260104df32b9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x1e97e95acdf292117a1b4d3c55acd0d050f86815e7264cd6a394179d8981d4a2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x4ac230384b25203d06b65561679507b7a0c0ba24fcd66fd2fe8ea7e18b61d7c2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xba6fd9199ba18d6ffbc9744e90d5203cf09dcd763303bd1048b47d2723ee6715", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xdb4aa22bd46af0250087053c1d30c55f747da860c58b68c17b815fa11b57a6e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0xa94f43248e8cf13aeea72f7a939fe64ac9ebea6cb2573f0dfdce9d4dd6f22bdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x2b44e2d569e03b7628396d848663d2dafc9b96702633183e7688b12f2f862a0a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0xe27f2926f2117bd8bb718d7276d26984328d82087654d4c74d00bb9fbd557f56", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0xae0182f64b9bcd0d8d6ef9ab88ffed289c36f2d21f032b56205899b689a58df8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x5c445d82f0a3ab44439e1fed9899aa99ebd105c766f57b13feb76f5131dfc9b8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0x3644937d6c12d8e813f13f3000793a06a7c3ce388588fcbd78cecd29134e21e2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x248f11d87b5fe638814e886e1763a9ca4390efd3e2e4c864fadf8a9103364057", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_datacopy_memory_expansion.py::test_datacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-large_data_section-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x64f6287c7498084725ef68f9ea3d594d1aeb3688785f5ceccc32112a0e0b913e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/datacopy_memory_expansion/datacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-empty_zero]", + "fixture_hash": "0x5ab20930d6c3b3a308a4b28491f430b88483a68a631619b4160ce0152f163a65", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-short_zero]", + "fixture_hash": "0x7aff874d0c3cf9604c2528e43da598350f0d569072abf7dcfb53da902ca4e2f4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-exact_zero]", + "fixture_hash": "0xced9727958e793525baaed96dd65a36ec769feb828e749163ad274005b6ed5fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-large_zero]", + "fixture_hash": "0x3f72d58791096d3cc0a4e339e70ed2a11c7ae455dcba50924ef2c8bbe0d76e16", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-empty_32]", + "fixture_hash": "0x2db361bf3cb934a79d841cb1dc5bdcbca19d25d9762d3bb8cb7540bb95d91e31", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-short_32]", + "fixture_hash": "0xa561f4cc2459f23e95929b5d83e5697bb94c4dce82da9a5b95a8aacdbfb34f32", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-exact_32]", + "fixture_hash": "0x7cf29ccbeb24af6dfda1c27e5275d340330f340219b06dc7f68ff1f6067baf32", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-large_32]", + "fixture_hash": "0x7858ac8eeaa0b4f5f356af0da78a770de93ac4cedc4f42e44e98ca2099c1f778", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-empty_23k]", + "fixture_hash": "0x6b9d4263347e3686a767fea79aa29609be8493cc86d4c8a429e5ff299db7d533", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-short_23k]", + "fixture_hash": "0xdc818343cb8aff987fb38cb00c558126497d25114f215b668fe200222ccae756", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-exact_23k]", + "fixture_hash": "0x756c305919eb53094c4d2c08ba81f8b1e639cd769dc984c29ff8b5b8ee1d2ba7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7480_data_section/test_data_opcodes.py::test_data_section_succeed[fork_CancunEIP7692-blockchain_test-large_23k]", + "fixture_hash": "0x7573555a905ae40ca5512a13850c1c6aa53737f181ee0712e350378fbb5f22f1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7480_data_section/data_opcodes/data_section_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test-EOFCREATE/RETURNCONTRACT]", + "fixture_hash": "0x6f73854fe6aa946847dcaf7fa7bd0a511ddc31fbc6e42e778952a431d4f69d15", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test-RETURNCONTRACT/STOP]", + "fixture_hash": "0x323472521b6297aabb967507543c4bbc4dc7073e14c6a44fb9e964b9c1bdf01a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test-RETURNCONTRACT/RETURN]", + "fixture_hash": "0x4b2fd259af2861155b7fa7f5517c62205db96f1c9401dc157047f9e5403f25c8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test-EOFCREATE/REVERT]", + "fixture_hash": "0x16f2b9a380f102498c0e1528c8889a5c49bd08ab1aef87d67520c52083907700", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_container_combos_valid[fork_CancunEIP7692-blockchain_test-RETURNCONTRACT/REVERT]", + "fixture_hash": "0x6a504f87a22fe1469997da1b9b46b1a03edabdc1f8d86c1c0264a6f3ed3cb68d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/container_combos_valid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_deployed[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x6f73854fe6aa946847dcaf7fa7bd0a511ddc31fbc6e42e778952a431d4f69d15", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_deployed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_simple_create_from_creation[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x323472521b6297aabb967507543c4bbc4dc7073e14c6a44fb9e964b9c1bdf01a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/simple_create_from_creation.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-blockchain_test-eofcreate]", + "fixture_hash": "0x16f2b9a380f102498c0e1528c8889a5c49bd08ab1aef87d67520c52083907700", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_subcontainer_validation.py::test_reverting_container[fork_CancunEIP7692-blockchain_test-returncontract]", + "fixture_hash": "0x6a504f87a22fe1469997da1b9b46b1a03edabdc1f8d86c1c0264a6f3ed3cb68d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/subcontainer_validation/reverting_container.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test-deploy_eof_initcontainer-CREATE]", + "fixture_hash": "0xc6b58fd2bb05c6df3ab4110b2e1d904f97c00139dfdfb3eb3d8bdb56e4c79814", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test-deploy_eof_initcontainer-CREATE2]", + "fixture_hash": "0x9863a2cd0970776096beafe2eafc1c3bc01e2b1e5f9403aaef2d43771cd5f82d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test-deploy_eof_container-CREATE]", + "fixture_hash": "0xe4a45ffb7cd69b0a32997dc82bd62670fc1350eea9a1087299c67e3c57d6ccba", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_cross_version_creates_fail[fork_CancunEIP7692-blockchain_test-deploy_eof_container-CREATE2]", + "fixture_hash": "0x566b22cb64994d0ba8c5c5e6cc297e46a984a3e8b06ae6cfe85a08fc1855314d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/cross_version_creates_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test-deploy_eof_initcontainer-CREATE]", + "fixture_hash": "0x76b817a0b645b5e80e649cfd08cb3f909749e79a5cbb0e4cad7c513e782ff748", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test-deploy_eof_initcontainer-CREATE2]", + "fixture_hash": "0x20f8d2d977d735ec7ee05619b56c080de6be241b10af69836c3caae322c906ef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test-deploy_eof_container-CREATE]", + "fixture_hash": "0xe9bbd612ecb7c81243a715537e3ae0d01e6426999131a7a3246b17b1b48718ff", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_legacy_eof_creates.py::test_legacy_initcode_eof_contract_fails[fork_CancunEIP7692-blockchain_test-deploy_eof_container-CREATE2]", + "fixture_hash": "0xcfb48b0acd98417f7a745e2cdbea606813a50edaf2559f66d65f89a4fbf600b5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/legacy_eof_creates/legacy_initcode_eof_contract_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test-maxcode]", + "fixture_hash": "0xc082c2ee07e052bbfa5a443849d3eeb28f3d7ac099ca44c3034fa8e29b81e8e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test-overmaxcode]", + "fixture_hash": "0xe1972fa51efa98c81dd0a7900d831c0eae76a467ba97ef3d185bb26bfb42b4a6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test-almost64k]", + "fixture_hash": "0xf8fcbc21437750df4942bd8a1cfe6b5ed72b79d2ae0047ab5a13693728c8a693", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test-64k-1]", + "fixture_hash": "0x7ba1ff31efeadf30441ebbddef2584d97d91a88819f7c7f1362fdb49830b8933", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test-64k]", + "fixture_hash": "0x62ac428b36d4863b55b8e6752693cdf73590c44af6d5f56981c7cf59fd261649", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_auxdata_size_failures[fork_CancunEIP7692-blockchain_test-over64k]", + "fixture_hash": "0x33ed9845ebfaeee1379a061e38ebeb0fc90a0ac5904392a185be5285558514cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/auxdata_size_failures.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_revert[fork_CancunEIP7692-blockchain_test-empty]", + "fixture_hash": "0x95aa89eb7873d7fbea2bf6a7e01ba98de4135eaa3259b42941ce7dd38cc97f75", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_revert.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_revert[fork_CancunEIP7692-blockchain_test-Error(string)]", + "fixture_hash": "0xf6d60e21473ee09bca57e200184b8ec6f6216790ddbcac1fed01aaf5c53bc98a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_revert.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_initcode_gas[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xc4b81e43e7cc561299608cdaee0300f74fd4b3c86866c8896480178c1d40664", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_initcode_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_initcode_aborts[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xa6fd066b688da50139cb16d9039bbc814b07b5494916afaf379dc6ec8d5c698d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/initcode_aborts.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-working_initcode-endowment_0-opcode_STATICCALL]", + "fixture_hash": "0xcbee71fcd1892fa07cb70bb2850ffeba36fcfe09b476f1d94a465a6f1c46a0ba", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-working_initcode-endowment_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x379c2c025d6598170e9c9091a15578405de0e36addd78cd1470ff4564bcbe910", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-working_initcode-endowment_1-opcode_STATICCALL]", + "fixture_hash": "0xf46b0a783fc8b1364502b1f2c781c48b5d37bccbf1e105c249a73ab041f09c67", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-working_initcode-endowment_1-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe882ed8c337894ee2aba410555b006d7d2818a95170794cb1bdd18121edbc5f1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-aborting_code-endowment_0-opcode_STATICCALL]", + "fixture_hash": "0xb537bc8e4d0d95f86b393e4d75a6c78a85c2cab961439e4c2d10ff3577984da3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-aborting_code-endowment_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x724998a842cf8e518a5b23ff08ec470064970db89090f9412206df1fe9b3e96a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-aborting_code-endowment_1-opcode_STATICCALL]", + "fixture_hash": "0x5b92e15717ba0c0d56158afa3f940aca01ebe81cd99a52a38290bf2b88c01a9f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_static_flag_eofcreate[fork_CancunEIP7692-blockchain_test-aborting_code-endowment_1-opcode_EXTSTATICCALL]", + "fixture_hash": "0xcba849ea688ee7826c7d5ea467152f075b7b34d2fe249e7a622ba91dfc932f8c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/static_flag_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test-call_fails-opcode_EXTCALL]", + "fixture_hash": "0xe4d8488561ee3a264d00cac1e8f05f15ce9549295bcfd6d6bd9de9abeb773220", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test-call_fails-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x92ce89f49b4fa2087e280c319d12d1920e1ffce3fec258aa6a2c23a2a9494718", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test-create_fails-opcode_EXTCALL]", + "fixture_hash": "0xd8b76163cb9d056aad5c5a6bdcedb989c35c9ddfc6b8ebb6a21113d4db530ff1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eof_eofcreate_msg_depth[fork_CancunEIP7692-blockchain_test-create_fails-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xfcb3d6e9164ff6414fec21e8a68528f8eba9df60343e5817b4558e6c3874851", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eof_eofcreate_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_insufficient_stipend[fork_CancunEIP7692-blockchain_test-1_wei]", + "fixture_hash": "0x764cdb21409df1a75ac5926c48062d7ecc0d2b5a256c6221a0b5ccf158a4a056", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_insufficient_stipend.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_insufficient_stipend[fork_CancunEIP7692-blockchain_test-1_gwei]", + "fixture_hash": "0x74b6483d8f2065cfb92eb2c8b44b92cd3e919ae86412c42689d553f6d2466fba", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_insufficient_stipend.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_returncontract_auxdata_gas[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x24fd49b2e427b2df08d902238bcd523cae75768976647f1f66daea1ae265b219", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_returncontract_auxdata_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test-large]", + "fixture_hash": "0x480343ce771049bce5ecdb84d3d8b90d9870641e8dc1dbbe01c437047f3d6759", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test-max]", + "fixture_hash": "0x16fb50202f8f33b3b44c0f051ea3222921becb448c98bb98e15b45de556077f0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test-overmax]", + "fixture_hash": "0xfae12c060c8246d4a978322827b2600b7e0955004f775dec89a0143e731820b0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_eofcreate_deploy_sizes[fork_CancunEIP7692-blockchain_test-initcodemax]", + "fixture_hash": "0x6fd7e90dddae217c3eb5adc25c53325f12ad43beb3f077dd0735e367868ca3dd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/eofcreate_deploy_sizes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate_failures.py::test_insufficient_gas_memory_expansion[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x996b1ab73e9a5538d033c89db5f96d7ba78b66b6c96cf2d9264ccc801383acdf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate_failures/insufficient_gas_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_then_call[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x39a99fef03c9a325f7f3c54a4e74572489c0985d93f2aee532d20f08ca2e0e1e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_then_call.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_calldata[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xd226a24ffffd112c00243e260bd7b0d7bd42c3a2310aa347ee30e2b1f34b7af8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/calldata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_address_collision[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x23bcc028a0309aa023980542bde612ee69e735fce063171679ac22150f7af75e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/address_collision.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_in_initcode_reverts[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xf4d54a246ec04fa260fa2570878e8f211ce345de563298ce43dc1bbe7de93b21", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_in_initcode_reverts.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test-zero]", + "fixture_hash": "0x5cc482c85208d7c7059606e6a92badc75ac4ac1157c21d5d95a7c36a199a0c96", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test-short]", + "fixture_hash": "0x3d8cb4b888266ae8a899f4d07e7f4620e06c13b8acf2ed1dcb348b4f716c9261", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test-one_byte_short]", + "fixture_hash": "0x5167aacfc5638683382cc4252020a80abe9a1c14ac327e340fb957308d3d39d2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test-exact]", + "fixture_hash": "0x5b53f5f4abfaceb91160a855649c36d2f39d64550bb34f49c3cfd399aea982f2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test-one_byte_long]", + "fixture_hash": "0x36db5773db6fffb2b054027b1193277cdf971cb208ebbdd417c6fa1f3a8927c9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_auxdata_variations[fork_CancunEIP7692-blockchain_test-extra]", + "fixture_hash": "0x907331c3566d1d3162d1e71d65241f1ce81558279d494eca8018a0da1a7dfaa4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/auxdata_variations.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_return_data_cleared[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x6cb4e41a25c01ac061b43ea56ea4abf84c4f6e41914175f30c5c88545cea3ce2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/return_data_cleared.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_in_initcode[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x50a410b3e07b9bbcf96e4f50389c2132c65d5127ab0fd376a60b1416285db8e0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_in_initcode.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_revert_eof_returndata[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x79476777e91daffb20e2cbff0fc0f3000a7cc31806e6e0b36d78694efad6f003", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/eofcreate_revert_eof_returndata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_simple_eofcreate[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x2b717c9b8d1637fdba5b78ae735dd5efd42028fa83e503093bf4b389ee48927e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7620_eof_create/eofcreate/simple_eofcreate.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-empty-opcode_EXTCALL]", + "fixture_hash": "0xa847e77fb4e337ae829181af0ec341aa44d893d4e93aee40f8620211dcee1222", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-empty-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6937169da331622b4154d0919184bc86e2b25ffd09f5cf53eff8db355e9ce1d6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-empty-opcode_EXTSTATICCALL]", + "fixture_hash": "0x12e7c55e02638af7e534d8b10bf8f706890d8edc34faf9cb39974f8f4b83fe48", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOA-opcode_EXTCALL]", + "fixture_hash": "0xbe70eb54c027c93dea80e60fa384be1424ced95f0d7347b0a95195570c6c669d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOA-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf7ba939c4350c6e63aa38289efee4eb77fb0c6d2c871314eb6bdad16d40a8a0e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOA-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc688b8d5bb1c8425cbc553d4acc1d11079fb954a4ad879f95dbe3a46d74caecc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-LegacyContract-opcode_EXTCALL]", + "fixture_hash": "0xc91c6a3f4d773a5a441f696d55c8962518605cacd8d185b83cd2a48225a4b042", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-LegacyContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x66412533082fd6cb6e9357b2cf3e0ef89e4ffef447b7d47baf0764082ac15a73", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-LegacyContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xaee87b11ef15e4983189144e3cd5358ae78cdb66a4ce7c82e1213898c8b361d3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOFContract-opcode_EXTCALL]", + "fixture_hash": "0xa4a80f48cee5d67d5dc4638beb038668f456d644da6891259b28fa09c904b5dd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOFContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x606fef2e125a11a694814ebbb7441f0bb77ccb96656008ef277a7c85ddaba6ec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOFContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd3a29dcdcef30b5a0151a9805676c3c2d5ee77f96afe3e96b52c86f0f1fdb160", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-LegacyContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0xfe8f81468b9236a141289fe5897f1987a3113b7964084a0e35acfe550b223e7e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-LegacyContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5ab7976bd04222a3785d07ce44f6c661e0b619574f88538fee248e3e6a3ce76e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-LegacyContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc25c36794f3bed00aac4ee7545add0974e70779072de792d38275c6abf94e69d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOFContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x2cf832818a2e4cae5ac43931c8cdd8dfcc809f712976ea1810da23a08cdf525b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOFContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x450456fd75fd87224a7ee61ae72599c48e839bdd069473f6f92a60bc373cb4f7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_0-EOFContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xdcec6042e79f71d520a50f5768559d64650b79dae31f79034b6ff33da8ef2f85", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-empty-opcode_EXTCALL]", + "fixture_hash": "0x35aee530682e85264cecf6b0690e95f8088bcd293014c1445d587beae542aa67", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-empty-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6937169da331622b4154d0919184bc86e2b25ffd09f5cf53eff8db355e9ce1d6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-empty-opcode_EXTSTATICCALL]", + "fixture_hash": "0x12e7c55e02638af7e534d8b10bf8f706890d8edc34faf9cb39974f8f4b83fe48", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOA-opcode_EXTCALL]", + "fixture_hash": "0xabd9e83913a26f0de6e89ef4ce14466ab79c6fce3f59565ec9ec85207627c1bc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOA-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf7ba939c4350c6e63aa38289efee4eb77fb0c6d2c871314eb6bdad16d40a8a0e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOA-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc688b8d5bb1c8425cbc553d4acc1d11079fb954a4ad879f95dbe3a46d74caecc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-LegacyContract-opcode_EXTCALL]", + "fixture_hash": "0x95d28a72e941f2fea10492b11ac8974c255314bf86c3f968e77ac608a07dda2d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-LegacyContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x66412533082fd6cb6e9357b2cf3e0ef89e4ffef447b7d47baf0764082ac15a73", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-LegacyContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xaee87b11ef15e4983189144e3cd5358ae78cdb66a4ce7c82e1213898c8b361d3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOFContract-opcode_EXTCALL]", + "fixture_hash": "0x9fbf603fc9b18d2beb711ffc847a424da1bb857592bb4202ab56209006678d6d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOFContract-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x606fef2e125a11a694814ebbb7441f0bb77ccb96656008ef277a7c85ddaba6ec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOFContract-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd3a29dcdcef30b5a0151a9805676c3c2d5ee77f96afe3e96b52c86f0f1fdb160", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-LegacyContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0xcd37db8668f02f630fc8706257ef69a456f854a9ac5aeebb2201bd040a3baf63", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-LegacyContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5ab7976bd04222a3785d07ce44f6c661e0b619574f88538fee248e3e6a3ce76e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-LegacyContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc25c36794f3bed00aac4ee7545add0974e70779072de792d38275c6abf94e69d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOFContractInvalid-opcode_EXTCALL]", + "fixture_hash": "0x81fc4cfe3742a1548d6d0db572f86af9e62c2e42477e17eb3339bc5a4c8c5697", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOFContractInvalid-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x450456fd75fd87224a7ee61ae72599c48e839bdd069473f6f92a60bc373cb4f7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_clear_return_buffer[fork_CancunEIP7692-blockchain_test-value_1-EOFContractInvalid-opcode_EXTSTATICCALL]", + "fixture_hash": "0xdcec6042e79f71d520a50f5768559d64650b79dae31f79034b6ff33da8ef2f85", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_clear_return_buffer.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0x7a4ebb35eb4fd11fc46eec0e5587d6d754572e88d5b799386e6bc9f267c91387", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x475a03a5fe49cfa2c87dc96a5b235382f4973c615301b94ca55bff1ac1ac702a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_True-destination_opcode_REVERT-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd78650b1ef53553e38da2c6797f8766a83b4f5752d2f1664ee4c1262f7481cc0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0x74c296d5c6044038f8818efc096961ca1e99b8b1630c2e14f1d7d4978ef5ac3e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8db1f655ffc488a3ef45e389de0fe1613622f081d8b72997f7f664344d6ff55", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_True-destination_opcode_INVALID-opcode_EXTSTATICCALL]", + "fixture_hash": "0x29cb6e9fbcfb14237c7537fdfc77b2aee165a452df69936efbe4acc5e291341d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0x31440b3a1133c398ad8f85998cfd892b67d6c7da93c166e9813f7be39159d7c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd47d1846dcef30c8b2f10db79001a7fa75907775d19806fe573a99d9e9591e4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_False-destination_opcode_REVERT-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5f2efb637a77f92126f98b845bfeef585e9b9b0f1991a1b9805d6f6639349268", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0xc955a5175be16c311f79be8d6bd35bf8d6840fdfdb67928cf6b109da4023e196", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x49b851e07cdfbce56b5405c3979f8fb7e545057fc1bf20e21839b6fa9757521a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_revert_abort[fork_CancunEIP7692-blockchain_test-destination_is_eof_False-destination_opcode_INVALID-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3a8f5b3a0ea66f63af23528767b3294e324f27a1ad96db0103c957720d598615", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_revert_abort.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test-fail_opcode_REVERT-opcode_EXTCALL]", + "fixture_hash": "0x1717772dd63c39539898a7d9a6fdaf33a5ee671027a9e657a2b345507151c25c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test-fail_opcode_REVERT-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xfaec2e987e26db4e02f4d8c01d3105b9e5eec00ef392a0227b03f827bbbd7e0b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test-fail_opcode_INVALID-opcode_EXTCALL]", + "fixture_hash": "0x61994b4a0e68153a675246bb9c7fa9c73527970366400afaee27923af8b3f796", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_then_fails[fork_CancunEIP7692-blockchain_test-fail_opcode_INVALID-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x67b74868840f38ec761707b1abf57cf3e22eed611b401dbfba2db627f4e858e0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_then_fails.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0x45e91e65eaf6b995e2b2ac37399f6d7b4fab4eb993fb38c99e9f80f2aa18d9ef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-blockchain_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xcd73c94c0c03a49180aa662fc1cca9249d2cbf7f665313f23930bc4f523810b8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_mstore[fork_CancunEIP7692-blockchain_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x242dd6c697bf2df02544908f6138861258cde30a3b3bf123be5f46907b47edc3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test-opcode_CALL]", + "fixture_hash": "0xb4ca069966686f3d77bc745ab9bc33e2872cc443aef0d807e6fbda13c214d845", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test-opcode_DELEGATECALL]", + "fixture_hash": "0x8383c307e16988a7e0f582bf5011570973e57a90264d6ee07e62d5701e863b28", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test-opcode_CALLCODE]", + "fixture_hash": "0xa62c1b65faa0dde22364e5f496f0efa1d9ac7c0b34271f852ef83e8a64c89163", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test-opcode_STATICCALL]", + "fixture_hash": "0xb0257a85b6504b27670c27f7eb7e50aaf1f3d933e86bcdeb199d53f269c7f9f6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test-opcode_CALL]", + "fixture_hash": "0xab1f0e1424e550a0b9a199c40336e42c114d417bee2836c9e0a7b7c8ddd80c4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test-opcode_DELEGATECALL]", + "fixture_hash": "0xfbaaaf052679344b46c761fffc54e52678165618da96cecda1d5541a8a9586de", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test-opcode_CALLCODE]", + "fixture_hash": "0x60dbf645d2ff8fa95dfa9d72446bf216d386a1c950a78b9c273b7a25b4126562", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_legacy_calls_eof_mstore[fork_CancunEIP7692-blockchain_test-opcode_STATICCALL]", + "fixture_hash": "0x83a163438bca681bda47e2393151e713e9fbb526b705731de3dc9630836f83b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/legacy_calls_eof_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0xea7638e2168b3a2144650e13f5325cc078369f97dd52ae3b9a4dc3490ba0f6fa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-blockchain_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8c6b6709f3ccb029812db26b7abeaecca8e5997c3a124059c2c33c8a8c561c93", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_eof_sstore[fork_CancunEIP7692-blockchain_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x26fc5fc571fd5e6e8ec1162ddac791b4b5b088c53bba0413137614d2ee433c9d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0x8653c8fd3d21bc13e28053c62c1cc290959f477e240b073eb8c085f3ec0c91f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-blockchain_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa0bbf0812fc26f8ee7600b8e79d5407be3eb15810b7efdedba0537fdfe374249", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_msg_depth[fork_CancunEIP7692-blockchain_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x21428036d9a96e40bbed350c796450c0d6082230bcec61e29bf411b632a75cf3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_msg_depth.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0xae8893f5c58076c8dcc958e4702f2ca73151ad5c75e0c7551a324cf849b75c85", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-blockchain_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd899b039bf0147adfd321baf2b5276e8adb152fff54def1cf944c20c3283ac45", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_sstore[fork_CancunEIP7692-blockchain_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x274c5d05b47400eadde65acd2affef28d75179afec3ce132c67f0305b93a30e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-no_allowances-extcall_without_value]", + "fixture_hash": "0xe21ceb58955218f47fc12b70a3cbc6bd3c3053146f96ecb7275a71dd5862c6d0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-no_allowances-extcall_with_value]", + "fixture_hash": "0x1528decd2959c4f81c265ad31cff7fb8049fc57bf67dacf1c61e2d0f62c398cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-no_allowances-extstaticcall]", + "fixture_hash": "0x958a72e61072483585da6f3eab95a50d8f1127af0ef1e2234770a4d2fe764252", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-no_allowances-extdelegatecall]", + "fixture_hash": "0x89ba7c575108764707260f8ea3c5d85498c80f90be57db520323497ffbd46d9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_retained-extcall_without_value]", + "fixture_hash": "0x62d83ae596d22eb93b52df5b09d94bb06832f7832d1134c93c1a951d8b77ab64", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_retained-extcall_with_value]", + "fixture_hash": "0xac372ea558bcd45291b062671989af30feeeb61009b36ba0a5541c98fe7d2a38", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_retained-extstaticcall]", + "fixture_hash": "0x2e822bf9543c0f0dc3e829bb38b8c44e26a90c8aa2cda4f20ac64a03784f091b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_retained-extdelegatecall]", + "fixture_hash": "0xd86118009129f71716318356994915db5d0ef439ec46b4414e0e661299b1c28d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_callee-extcall_without_value]", + "fixture_hash": "0x5cba46882a79617ab9d1a4a13256ff8fa09a1d4f39145b5d6b6570388e46367d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_callee-extcall_with_value]", + "fixture_hash": "0x3340126a09eca48a8ebd1234a6a5e4c4606d4dd4db390899256f853b46286bcd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_callee-extstaticcall]", + "fixture_hash": "0x7469e7c2117bfcc6febe253b846c879eea4c76e9719c2d174893fc809a5505c7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-only_callee-extdelegatecall]", + "fixture_hash": "0x5708ba392e5b4e7fe3f13bedb64fba58f412361c54d23ae16e8b43b5564aecac", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-both_allowances-extcall_without_value]", + "fixture_hash": "0xd183172d9c12c05b997cd85850d045d3a8e88382d1d1cd5e3367d528a8d817ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-both_allowances-extcall_with_value]", + "fixture_hash": "0x6e8c3450d69a7d283c4ca775c2afc73079aa775eed170ef0f012a13d74838b59", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-both_allowances-extstaticcall]", + "fixture_hash": "0xab2c5adc3835a339176b998e45aa75578fca61413680c9752dc16f1e032078c5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_min_callee_gas[fork_CancunEIP7692-blockchain_test-both_allowances-extdelegatecall]", + "fixture_hash": "0x50365dcdb0c7f37452240ba732784d2edccf7db0686d9ca59d2f9678caef11f4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_min_callee_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0xbd9f2576cea656349f62ccbdb9b3891551e906a4b1ae014b37a2116fa2de6e54", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-blockchain_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x30210935e4af30831acecec348ae6d4fd665a9396323f1d97876dcd322331049", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_legacy_mstore[fork_CancunEIP7692-blockchain_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x83af6a5629f68c5e64c9a5a7de49c30418a60e9a5894325744943c4fc1a5d683", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_legacy_mstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_0-balance_0]", + "fixture_hash": "0x52ec6e748124087b46da740753a71e318ce25d475ba5f81cef269c1806bc2507", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_0-balance_1]", + "fixture_hash": "0x4b85885144b1e4cc42af6cbb588788099690748311a96f5704ef34e6fcf14ddb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_0-balance_2]", + "fixture_hash": "0x1f8c784e1d4bd53b45f1bf87ca76f52f119d2e2bcb4214804be2a691ea402e39", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_0-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0xc2e1cdff68b2085748cfbd2026dd9e5eeffca311c3fe374812aac9a604ef9e30", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_1-balance_0]", + "fixture_hash": "0xeadf12f1c510ac2bcda7c63205b1c1f3ffe86c3f49c16470ce01bd0bcb799d3d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_1-balance_1]", + "fixture_hash": "0x51e8b863165906676af2b47ec88e9e318489d8cd54697e0c96059a58e508d11e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_1-balance_2]", + "fixture_hash": "0x6c5df53b39fdead946092f8dc17c2fe765455ee9f4eebbb9a47f6f5908b2665b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_1-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0x1ce8004ac1ed791d0bb24ba07f1b69278a118720efcc83b6f03679972f97ea3d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_2-balance_0]", + "fixture_hash": "0x3127a0e0d0adc3c3a9e4b992f2d340ee0687df60faf900beae8ef9384078dc12", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_2-balance_1]", + "fixture_hash": "0xa907044bb403b367ffe2a416c011234f55027dfd770f4f8681cc63991b48fc2c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_2-balance_2]", + "fixture_hash": "0xe6e3e56dad3a047ba54c2439ca83961049064be621a41962c686f34a9d46038", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_2-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0xc55fd830f94b0d54b1a9d606842f34f87bffacf2f009fc21b442fb1d251235e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_0]", + "fixture_hash": "0x7fd038a2d1df705f2de640e2bb50293adf63b087bada4b8103f702e0c0c73153", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_1]", + "fixture_hash": "0xb0786f58504baeaf73c73711d9797e767d79d01f41d1437a87007a7ac70d8e30", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_2]", + "fixture_hash": "0x238073e759e0164f4b6640319106fca6acfb837f82c613b955c2cf4b2a36aede", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_with_value[fork_CancunEIP7692-blockchain_test-value_115792089237316195423570985008687907853269984665640564039457584007913129639935-balance_115792089237316195423570985008687907853269984665640564039457584007913129639935]", + "fixture_hash": "0x91f9fab3a6b396243daff4d7a2b401038f6bc42c479abb48d4f16fcea50fb546", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_static_flag_with_value[fork_CancunEIP7692-blockchain_test-opcode_CALL]", + "fixture_hash": "0xc40e5bad37ef66621f4e477b89808c80e37d10a916a221609c0d6cb9d493f0fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_static_flag_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calls.py::test_eof_calls_static_flag_with_value[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0x230658bd76539d15f8c6b1199646e3c3059b9811a5e7d576a6479eebf5e27e99", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calls/eof_calls_static_flag_with_value.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test-EXTCALL]", + "fixture_hash": "0x2e0cfcfb4b886a542ff683198a954a1642012f7760bd54d927e4ddb4b59add3b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test-EXTCALL_with_value]", + "fixture_hash": "0xb586ad70202e8133fd6bfbaac806abe7afca855751add7601b931ff4b2f946e1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test-EXTSTATICCALL]", + "fixture_hash": "0xd4147a06147a9caec84f92e7d10850012bdcf9b4062777e6e2d41b6cb0d89b30", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_gas.py::test_ext_calls_gas[fork_CancunEIP7692-blockchain_test-EXTDELEGATECALL]", + "fixture_hash": "0x9ac0a7a06ed3d2f25719e1f24d0b49eaf1dc5638c63985e9de472d2e8d42af65", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/gas/ext_calls_gas.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_0-value_0]", + "fixture_hash": "0x87f410af4e699e64233f939a24128838d3205bcd79853e5b996732bda20e7c5a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_0-value_1]", + "fixture_hash": "0xae9def639fd1ebf1ca3602324cec4088e98374b6cdd164159ea4872e906bcd3c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_16-value_0]", + "fixture_hash": "0xe8f2513888d6f038916358577b2a3a15250d16c4350371d99b05ef13f884b5c0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_16-value_1]", + "fixture_hash": "0x8d7adacf87d08ced051883a5960668762007c3371a9999cdda5b9141a9c4b2d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_64-value_0]", + "fixture_hash": "0x29bb6d90c86c1a3ee8f9be1536b15d96e0222dbb992b4b52303d18617150cd53", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_64-value_1]", + "fixture_hash": "0xc26fba77d7eac7115482ff9f169df52ca4d0ecf1710996afd74f9c05a53505be", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_256-value_0]", + "fixture_hash": "0xf5c90a87bf7a8d1f3acdf9565732d0f3023e078bc7270005cae0e5cc9e5bc6bd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_256-value_1]", + "fixture_hash": "0xba16f1a3af18af31a4ca5a195eaf4b8aaa4893f55248a743687309031417a3b5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_0-value_0]", + "fixture_hash": "0xa4db8413890f6c5289491e19058d654be636ec1e9719bdaaf36fc16b25e81e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_0-value_1]", + "fixture_hash": "0x6a549a6662532a6e2dacfd6a7b3981313062e00bf8d416ca331b116028743182", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_16-value_0]", + "fixture_hash": "0xfafbd5156b85bca63f99c5257f338f3eab7627963da47f38c39eb66d12df6b7e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_16-value_1]", + "fixture_hash": "0x46cafc38da9f0a1ad4000c7942a7f6ecf0659e54ab11d0b7fa3569f1aa9c7090", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_64-value_0]", + "fixture_hash": "0x3694028d5a876dcdfd4ac413ebc95d7da42d339e2ae3e3cbf500c61f9b7938f0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_64-value_1]", + "fixture_hash": "0x6d02f4d18414f02c30134d308b5746839d9c5184cb15047179f4dbf5ee6502c7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_256-value_0]", + "fixture_hash": "0x90f5baf93484b6a1b43f353f5b463ec681febacd1ab50a35f7a48f59e74eec6b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_256-value_1]", + "fixture_hash": "0x74a5dfd7f0d4230c9fea344d8c01fc50172070dd6e06e6e0f10aad5c976ee3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_0-value_0]", + "fixture_hash": "0x660fa8422715a23fd0782ebdfffbd88d1db8084adbf965214d780f5dd4b38f0e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_0-value_1]", + "fixture_hash": "0x6275bc9ccfe728e8e0755422c999691057292a3b248d8b8628456f54eec31b43", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_16-value_0]", + "fixture_hash": "0x7e7be496963e0e9e00f3ec0d11fde6d96b7eb47fffcd5ad42ea92563ccc6890b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_16-value_1]", + "fixture_hash": "0xa8e77f578a637a674526224d2e9e0a0a1e547f65a2bac844159543b58db9d9c4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_64-value_0]", + "fixture_hash": "0xab7909c112cbd776136c4b9455e7bb4134f3fbe04f3653c42d292d4c9da21a69", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_64-value_1]", + "fixture_hash": "0x19614e9f58b4eb4ea2b1e75ee9014cd596244b72e5f2b14153c9342514a62d74", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_256-value_0]", + "fixture_hash": "0xc82bf7ffd984c7945b090a486f6d7fc868a62b1412601ed5e25c921d2a4ce26d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_256-value_1]", + "fixture_hash": "0xe156bb5d0851cb7fd23420ee2ad48b0054f34e6ee0da93e0d5e902ed4a3e2c71", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_0-value_0]", + "fixture_hash": "0xff2fedfb175deefbd951dbb1d4b1431daf81ba59babeb227b497c5be119bfbdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_0-value_1]", + "fixture_hash": "0x53744b418a2c533d4df3e6da2aecbd8ecccbd2f35e4f80860e47688d53e77aaa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_16-value_0]", + "fixture_hash": "0x7f313fd78f4c24d54b79b4e21ebfd33c3be619032b14541bad06c52d537d304a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_16-value_1]", + "fixture_hash": "0xd3dc62d04129fa397cd762f22c4e8128c38a99e7cf5f2d0bc3108ad10f43fb28", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_64-value_0]", + "fixture_hash": "0x3cea82724d0eb7f510ba5915e113156b2c59f3d73e2f8850026498b8f735108c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_64-value_1]", + "fixture_hash": "0x99eeaced299939461c40082d2619fc631e496b1bc74a9a81f3b22a5d4c08f1f0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_256-value_0]", + "fixture_hash": "0xfa5b7fdbd0933d347b31f99db297ec84198fd1b7565071cb81249c87deefb32d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_256-value_1]", + "fixture_hash": "0xe418474ada9df65d85c7b500b250fa3cbc233b16bb28540e4bc7810a7de81e01", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_0-value_0]", + "fixture_hash": "0xe8bb6f95267c745e1b765bc4ca8101552888a61b05908cc54c9efcbca997578e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_0-value_1]", + "fixture_hash": "0xd459539f32101fb7380e8323a54a2b7aacdb7d627629ca6ed2490f5e32a06131", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_16-value_0]", + "fixture_hash": "0x8baa7f9fabe3fa919377bd3b8a696afb2c93acc2c3dfb6fbc835ca66147e5fb1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_16-value_1]", + "fixture_hash": "0x53830e029f33ae41c6b94b50d6276025a38c6d3671af6c72eb00a43783390fcb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_64-value_0]", + "fixture_hash": "0xb0363dfd4eec1104f08f555aa9fff1fa7efa2aeb3122599037b47a8e0f84ee9b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_64-value_1]", + "fixture_hash": "0x98c50abbdf243ec6ef5f5dd7ab2383d44c1a861025d7625df2d0287531fd50a6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_256-value_0]", + "fixture_hash": "0x10b6e0b05515afc6833836fdd2f9513782bfe00f2a55dd672649b35b51c72086", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_256-value_1]", + "fixture_hash": "0xf3b849f8ff03e477bac6ddf69893f73f13fbc0a8d9cab46334b5a7e5673706b1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_0-value_0]", + "fixture_hash": "0x8d2ee3d1790f0772eab9a30bcde96f56d55076a7a6af1a4ee675351956b55b90", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_0-value_1]", + "fixture_hash": "0x19659bbd30021d07f90497bdb16207df238050bb7ded5e0f0025700519ebd6e7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_16-value_0]", + "fixture_hash": "0xfd49ee52eea1a085d4d9ad7a512be7b8ce457de42ff87003b833e26de3851ed9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_16-value_1]", + "fixture_hash": "0x1bff53db6cf711d11748d2f6e79e5f4f254e33998059db878107014650437714", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_64-value_0]", + "fixture_hash": "0x8b78b24ccf5eadf265ae6ca46c259ed45eba945c8a18dd5abd51c93514e8c085", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_64-value_1]", + "fixture_hash": "0xe6c9d1cd11ada1ca0997975db1d6b94678a8d627bc76ec6f3e68d067ebaf766e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_256-value_0]", + "fixture_hash": "0xa30fd33a91ea485933505e6cc058305417cb0c9838c02b3b2d46cc65dc624aff", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_256-value_1]", + "fixture_hash": "0xd54be791677c63d3c5c94a4d72b6c8dd47646975293118baeca1da23a5055904", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_0-value_0]", + "fixture_hash": "0xb7d7b8b92d99110ae57ce7dba845d8dbc974eb13267ab0b9f6605e6617e11d7b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_0-value_1]", + "fixture_hash": "0x67cb6d82b16d9911d52298a0173378df9c582a1aa88c4085bb87bd7b7fc00f3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_16-value_0]", + "fixture_hash": "0x2337eeb1af631bd462ace6a66de0ad9c0cda811a6dbf97e4d03a33c77d0edd80", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_16-value_1]", + "fixture_hash": "0x766ce4d000941ef559b45038a4ac28e02ca75378c9c6fbb0dcc8b832fe1b587a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_64-value_0]", + "fixture_hash": "0xa044973c6991040da6c40bbdce6018e35a22e0bec28cbf649dcbc862bc42b98e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_64-value_1]", + "fixture_hash": "0xeb909bd302b51a8e0a2c2d4c9f6c50700808485257769617e996b59013a26437", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_256-value_0]", + "fixture_hash": "0xcb913407beb58d72729cbae73bc7ed335323ced55595b1677b77c47c5461c613", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_256-value_1]", + "fixture_hash": "0x598e2c2656ac0a7d10becc6dacf9b5eda6e8dba70d0c76e0fb1f38e323d1c390", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_0-value_0]", + "fixture_hash": "0xbdde9fe7e0693dbc236dd31456153eed9de563b85a37fcfc4f44be8fbd44065c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_0-value_1]", + "fixture_hash": "0x9aac373210b364048f24af82887a6ed2cd7916b68ea7b18a89b58d4bb52e15ce", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_16-value_0]", + "fixture_hash": "0xe63d27dbea6b900d24a4a633b813fea616d50c2657a600a3c77a3b0262a2aef8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_16-value_1]", + "fixture_hash": "0x6d1c5678c0e127d1f20ba1eb70448e3057502528d4fb0d8aa56cdb13b502c84", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_64-value_0]", + "fixture_hash": "0x94f8b4fe0fd84113c4c79ac639ecf0d93de8417a6325ab1f22e4d7f847b5ab16", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_64-value_1]", + "fixture_hash": "0x55a3a0dc55f7f0704e950a4d9470933ee606af568e2c1125e695192c941f9305", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_256-value_0]", + "fixture_hash": "0xc808aae67710eb52ea82ccb13b157f9eef500d8f2a71062f795beaa44536829b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_256-value_1]", + "fixture_hash": "0xdbd3b56cbe0dff573b18eb042f464fd4d9ca5147995245ffc5104aa611476000", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_0-value_0]", + "fixture_hash": "0xf14e1be440c4221a1c9e32880e2086a6ac6c95611e69681188cfc37c70483f8b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_0-value_1]", + "fixture_hash": "0x6c003fda0f980f566935105e0a59911cc998666e21a7c8a78bd643c74a87996", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_16-value_0]", + "fixture_hash": "0x5abf995d0476fee88e0e4e8c6614823e4e2176154d513df47befecd1542ecfa6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_16-value_1]", + "fixture_hash": "0xf2029e50c1b1db167bdae2c673ddfc60e356280858e4cb1efb19c5586932085d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_64-value_0]", + "fixture_hash": "0x5d614696f4348094bfd07688b7a04a5f265284bcf91faf9aaec25951c756df16", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_64-value_1]", + "fixture_hash": "0x7996b04048b4f587f63d259367a310c679862e81dff1399a5e1b49fe471dba52", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_256-value_0]", + "fixture_hash": "0x5a08cba062d035a9292ffeb4078d55031e1bbbff780e5285ce21f75b8e8d8544", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_256-value_1]", + "fixture_hash": "0x13b182f5b14943ac626ebe77af95a94b4a0661677abede16c8384173776370f1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_0-value_0]", + "fixture_hash": "0xb105a5b2423ec7ebcebe593389ba6718885f633517808cd2bc7ec12fb45c3043", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_0-value_1]", + "fixture_hash": "0x95fbabe2e305749de9e004a0a671e60fd47ee093f401a235b287d839888a5d02", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_16-value_0]", + "fixture_hash": "0x9413c96801de6a4672d6a785e92d9beaf733da3e3ce81a569ae224423723c553", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_16-value_1]", + "fixture_hash": "0x3dd6a115d63ccb6746cc42e765a5c2cfad3e52ad4d9484b62007d517d30670fc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_64-value_0]", + "fixture_hash": "0x68e03d40ab98c7d950768e1acaa18e875fa4f1d036ac8c624048d521262dccc9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_64-value_1]", + "fixture_hash": "0x1b2d28548a93f1af5fec6c8e5f2ca2488502209f2c5448b14ce2b91aa888c8c3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_256-value_0]", + "fixture_hash": "0x5000ff19ff237a20f440dee4da1670bbd93ed30e6300f6788f035470ac55481e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_256-value_1]", + "fixture_hash": "0xca0838a89065cd821afa8c411f36eeb165ef4f1b85ec3a30a3266dc31d9c06b1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_0-value_0]", + "fixture_hash": "0xd33bc27e403208405ca6b200bd8b25163c817c317756c8e7af46e8b3b4bc0864", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_0-value_1]", + "fixture_hash": "0xdfdd682c001e304cfffb7dc9e9018b294f959a534188cc5bfa2b184e2dcdc9ab", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_16-value_0]", + "fixture_hash": "0x7f3d88987abdc94295f70102f923f5ac8c0448dd2121bacb557e6d668cf409d7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_16-value_1]", + "fixture_hash": "0xcf5af37ec5eec46f6e6c1c869f3c3a7f395e10286122fa94e795be2e13d06ea8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_64-value_0]", + "fixture_hash": "0xff28395604f35d56335cc35e1786754d0ca8f1c499f7a0ff7a75dc9bc4df031b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_64-value_1]", + "fixture_hash": "0xa7831311338a9baaad1213b80d3854ebb6b9df429b949811580ff5cdb6ed5216", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_256-value_0]", + "fixture_hash": "0x8d058e3910fc6257e533b321d761254e874777f0636bfd0cb182383d2b996fdc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_256-value_1]", + "fixture_hash": "0xa6b3a27be2e6c7d03a9cbf0280de999f20591e0ad36e398dee8ef950131d11a7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_0-value_0]", + "fixture_hash": "0x85148a4d1ad4ff1469678d874fd7b44d6b031158529189e128cc72309dbb3dc9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_0-value_1]", + "fixture_hash": "0x1f5ca79e6eefbf230482fe691a9e9d004fd49c9b31191daa5713214fe3acc9f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_16-value_0]", + "fixture_hash": "0xe60947cb69dcc8482b88160c5fcfd7137c650e2cd8984ef79d746fea9caa11e0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_16-value_1]", + "fixture_hash": "0x7c09ee866ce94fbe888f3e0f675f016022287f7fe4d2df648eb7d672b988893d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_64-value_0]", + "fixture_hash": "0x87805900e72977ea1208922e81f10b4f15fd7b9d8e12d485708bb4fd4f1998c8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_64-value_1]", + "fixture_hash": "0x1d8aa3313800afac9d8bd39956d112958b282941c32521fab82088e697d561ea", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_256-value_0]", + "fixture_hash": "0x3cbb36cb24a44a3ba9a24ffdb8bb9ae39ee584b757d3a7962207f79cc811056d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_256-value_1]", + "fixture_hash": "0x18544747508dab953804cb2de4c476e76652afac9144f870a3a3a5ad6436c5e2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_0-value_0]", + "fixture_hash": "0x494e0682bf2218257f2d8fd7466207f463d834dfe21947783412f4faa4422ba", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_0-value_1]", + "fixture_hash": "0x8f788baff854a516d79f2acc9ef8e1db985378095198dc0c58b1282daded83d3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_16-value_0]", + "fixture_hash": "0x6d45b262a7a8b611775a97646fab18773ca8cf076207b4fd85aea99784ab6e09", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_16-value_1]", + "fixture_hash": "0xf36fcf908b1a54c04da017485c7877f056687b4a4bbd824b26453816a423ad89", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_64-value_0]", + "fixture_hash": "0x647a542f0c75088e4a6a9a98037e29e4b9665e12a60274b0f0e3fd07ff5d243e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_64-value_1]", + "fixture_hash": "0x1f0af0598a2e2cd29d455f83fa087cb979bab7c41f5a4e826e1fee1531c68fe8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_256-value_0]", + "fixture_hash": "0xc6d526c6b00668531ef2016adc134ab100047d38990398e9354d0efa664bbf22", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_256-value_1]", + "fixture_hash": "0xaa6127c55e44389a9b7920dda4ac8c555dbab74e159bff487c1a9708d608c73b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_0-value_0]", + "fixture_hash": "0x37cda28459acbd1dbee0228232909fa791b291b8ab89f118fc239e2055881bc6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_0-value_1]", + "fixture_hash": "0xa259a6b3fc35c72e0eabc94d3557a3b067045480617da121d2373ce924b16eed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_16-value_0]", + "fixture_hash": "0xec69a0a32b86cf2835726afb5b909b83d812f2cb1d0fcc1d556bc5a28c941915", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_16-value_1]", + "fixture_hash": "0xf4648b5ed6430231b94c139e7e196dcd4e8c1dd1525d1d9fec6143ca22545e7b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_64-value_0]", + "fixture_hash": "0x3e614bb1bda2df6f19acdb897244c92255a8615861ca1cd23aa599d378a70439", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_64-value_1]", + "fixture_hash": "0x18c5647662083fde3fa62e85e6e58c4fb72e6bdd1994b66b48a099e5ad597e9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_256-value_0]", + "fixture_hash": "0xe31452dc990cb077107c6444e21d8607afa79f46e83de30f80df4974285af5a6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_256-value_1]", + "fixture_hash": "0xe635b31bf36635d6e6bc04247a6a8cdeb3c1798fba92fa54988b8a5b03fa0fcd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_0-value_0]", + "fixture_hash": "0x84fefb6552116fe90ba56e5e99ed7aacdadad9a63416207b8e32c41c32397b4f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_0-value_1]", + "fixture_hash": "0x9552f0acdb96efadd9f90f768c9b2917b043a34c48a575a52e480275dda2bffd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_16-value_0]", + "fixture_hash": "0xc258b4dd9c005d821003b43be42b7bd9106766c7f060c6c33b0946e9823b0471", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_16-value_1]", + "fixture_hash": "0x1cb7b65058ac4cca6819765afeee637ed3da19cc2b4935ffaacebc9ffbdce71d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_64-value_0]", + "fixture_hash": "0x8277da87f7245757ce3ae5cc063b544ca5da84af4a36067be8b5fe6cf1788805", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_64-value_1]", + "fixture_hash": "0x5502a6ee33dc9bc4d9e8ee83cf919af751ba3ebc13bab99a3b6880d6559e1620", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_256-value_0]", + "fixture_hash": "0xd9abe07e92a2b8f85d0f90cf497558185f572a7d9e1cb82fd6a9e903a5fb3857", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_256-value_1]", + "fixture_hash": "0xe0d3677c2bb39cccb26773454b66e96ada494bf5f6a22e881e32d4d8ac03f553", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_0-value_0]", + "fixture_hash": "0x349d19ae6fc919cf934294eebcdc69e137bd49f0c4b3c6cdcd2415ca6d79fc22", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_0-value_1]", + "fixture_hash": "0x21797a618d8cc791ede4ff65fbb9177d78c27fee531e10c3c3fe25c6587016c9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_16-value_0]", + "fixture_hash": "0x8329b342c0dabaffcdd165c874d1bef3c1cfefae9902b770024d17bef955c71c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_16-value_1]", + "fixture_hash": "0xb17f2b759299213e85b700c2d8d7dc444d129a4515ddca8a92a0c1f785d9b84a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_64-value_0]", + "fixture_hash": "0x78935d80f5742d3d95d7cdddc79305537d2d79c5979dbc6f48355951bff7e86c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_64-value_1]", + "fixture_hash": "0xde28c3941c65d4882e1ff4136686fb63ac4f4fde23e4f27f44f6241ac375b036", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_256-value_0]", + "fixture_hash": "0x9e703659e117c68c9c4e2459820038a7fc23ce504ea8b44f74885c5dffc0e255", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extcalls_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_256-value_1]", + "fixture_hash": "0x2aba6b276b5ef2f81816f6a23e8b040f67dc7fce7d0b4926240dfe06b826901d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extcalls_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_0]", + "fixture_hash": "0x27fe8d7ba76420b68cd127bf0a470b203c0412e2deddd950c15504d595e09683", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_16]", + "fixture_hash": "0xe19cc718d9cae8b9bea1e96fef0002a2c7c3f6fc1177852a3af5227f7932f6ca", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_64]", + "fixture_hash": "0x4d44c8b50863f65f286e956da8ca78918f80c47af4336a16b34328244da1fc7b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_256]", + "fixture_hash": "0x168ab45ab39ae5a47e537e27e2d87b158071511f07affa5a9fdda2762c1885b4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_0]", + "fixture_hash": "0x5c25dba41a07cf3b84bc47a6888e60b0592239b24c3ecc99ee044f5e8cb4150c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_16]", + "fixture_hash": "0xaf93861088d432e40921068045a189a3bd25de429c0d1ff6e764d0f35a002c8a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_64]", + "fixture_hash": "0x1ee969fb45864e730d2ff7bac44f0c90e653d9349a372c83f74a7ba1247a69f0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_256]", + "fixture_hash": "0x96ba94ead875eeaa2e02aa11f5b1716819f3d37e0596bf29866641511a0b4e4e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_0]", + "fixture_hash": "0xce14c38849ed5dec5417c9706b1dda217131b7b0c6d3fb34ea395fa87061a139", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_16]", + "fixture_hash": "0x3d3853ac9a619c1ee7ddaedea9c87b5a007a905a69ed04c32776667c426af83f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_64]", + "fixture_hash": "0x80d606eb31df52b062f4839fa3a8863888c1820fc6d356da895d883743522875", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_256]", + "fixture_hash": "0xb6d22bc06cb5a4c631a9721cce665d933b61774e31caead0397729d53a701531", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_0]", + "fixture_hash": "0xa493841e5136dc9a460c056090f676b8c1c0bc954ebee866488a2c3b15548eb1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_16]", + "fixture_hash": "0x7258aa0dcca4c38dd9da8060e315b3a5fe74b5d08ddadbe62d7ba04c1538ced5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_64]", + "fixture_hash": "0xa45187c6e1fc79c690a4a13b2164ee210dcdb299eaf35f30db8283fde360d327", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_256]", + "fixture_hash": "0xe95f077a2d26a248fd30c4d8cfd17fe9b8c88c1aea00df31552c703a0e7fa71", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_0]", + "fixture_hash": "0x6669ebdd4964628e78d94c43eaddcf26e8bfa9c2e03a57aec46daacb0f641ac3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_16]", + "fixture_hash": "0xbf30b76b893b4b515d3fcf7dae47c9298a7b3d543a70da396216143673208ed7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_64]", + "fixture_hash": "0xaab63bc919d6d753237b99104bae85d6f70c2de87250365498da3b6fb87cc909", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_256]", + "fixture_hash": "0x70c13dd612e09d8c632d784e34608d69e99bf660f74a9046ed4790d091b33911", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_0]", + "fixture_hash": "0x22630a2c841f2c439b701c6168499d54a2d2737740d2932044b3a92f1502f8bf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_16]", + "fixture_hash": "0x767f7f8cdfa857902ea82f67678f31b2ba28dfc456a0b93b42e3175798b56470", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_64]", + "fixture_hash": "0x16dd856e39961894d82d0a8ff971b6bf395e25f994912e39dc975d1cf6b451f9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_256]", + "fixture_hash": "0x12032033b35d47997b7a0e19461851b738bca3d97b0ab7c92728eb85cd4c6bb3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_0]", + "fixture_hash": "0x2526101b6c561b06324590762353ce10090c7a41b4ecdfedb6ecd5964ca7cc7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_16]", + "fixture_hash": "0xf02b8622fa37e98df2f548bdd11e4b7787f5d3082a57bca8f1d61b20b097ee06", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_64]", + "fixture_hash": "0x1cfdafb8d963da668dc7417d49e9f946ce7d780b9753cd53fbedd46c8796b6ef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_256]", + "fixture_hash": "0xca933eee90d499efc04a8849c063a738de099eb10ccacf90d29cf615e8ed1949", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_0]", + "fixture_hash": "0xd38b564a554af4b596df4230e198daf379e7119b92adeeff3ac04ed59ec0ccb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_16]", + "fixture_hash": "0x795c8bbe3b3257aac5dfce64d58c9c319464fd5fd94cd1c2b11500096c9a39d5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_64]", + "fixture_hash": "0x30f1f992e42adaf905db5aeeeebb4a68742cf57335a40c663a97700d87bc42a0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_256]", + "fixture_hash": "0x8f90b22455a9729fc8fbab3ec39cc01f07a2998b6b515216cafc9dbbf523e8ec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_0]", + "fixture_hash": "0x72eb3549e065411f0dc212ce91dcfc93e86abb5cb9dff417337de1ee46be418d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_16]", + "fixture_hash": "0xd20c815d948ac87d93bf0084535c63860050496f2052183ecf984ecffe733af7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_64]", + "fixture_hash": "0x93aa5177c02420853578c97dcc138bf16f0d970e9cd72ff14e468df51126ed02", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_256]", + "fixture_hash": "0x51a3d7673cbbac8ad230b127a7ee6994562d587f31972bb765df4fc69cb924ea", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_0]", + "fixture_hash": "0x3065203e8eb2fc76e34e711748962e86d7bd4e8ad2019cb8a03e7e050656729b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_16]", + "fixture_hash": "0x94a027ee628ba5d1118faa32a5a7f49e617811bc01908d8b04e31c644e2bec68", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_64]", + "fixture_hash": "0x43199be1aa9c7f4a183401f2e97286b16876e759c343dd223a831858a250f366", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_256]", + "fixture_hash": "0x799d7d8eeb29adcd763cd03ce10895e5b35ce7bf2440f28748adcd4fc15d6001", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_0]", + "fixture_hash": "0x2a11a5d3a5e63f5172aa6ecc9d5a1332d213e795220cb36b30d6b3ce54bcbe35", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_16]", + "fixture_hash": "0xaf4f10a0b7af06637d9c33f1ebdad1720573792429e90412092ac629b0665562", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_64]", + "fixture_hash": "0xf16da219554f497c0a81f494098375b3726c4e17581268c1270d00fd37097f72", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_256]", + "fixture_hash": "0xf287459282918a391b25f3a4ccd87600506d92ebfc016f9fafe642dc42bdd76a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_0]", + "fixture_hash": "0xde3c5f58517760bf0e8e345519b6dd725ad6fb0de5c51b3a995d5fb89c88f6c2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_16]", + "fixture_hash": "0x5dccdcfdf9c6d61a09401278bafae525ba42301f60af9b4b2928e3c1b1cea70e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_64]", + "fixture_hash": "0xe267aeaa5305a7619c08ecabae92d6d63a16a85f4d244a78e47243de2982c6ef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_256]", + "fixture_hash": "0xc62ad1a9f5d39ac9dc377708cb3be66ad91eddec2e67f67bb5ad5f04c8c0d0ec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_0]", + "fixture_hash": "0xa5557cfb5a7ad3aa30061b9eac15e74779e01aec7b8378dfd7e399e9cd1e844c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_16]", + "fixture_hash": "0x4bf1212f5bb2b42485d98d8c9400d9f6851c90491f8b09ed2933b122c18d2823", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_64]", + "fixture_hash": "0x6806c375f31edf67e1c2947c6fe47a133ac6810e8e8607a4332845d6c676a40b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_256]", + "fixture_hash": "0x28edd9efeb1142700811a7dcab1e58e21bb2b7e63a1509dbe8c2aa913d1aebc8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_0]", + "fixture_hash": "0xbb60c4283fd9ac2e502dd0e96fa531dc58dc16cf39244d99460199d990d6d3e2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_16]", + "fixture_hash": "0x8cd6f1c0a2c0faa1b0e25a145907713e4ce36c6c2d83180b348f55a4873d7551", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_64]", + "fixture_hash": "0x4f19b6d48657539213e2a0355527a8ef2309c4af81496d0ca522e5581c8384a0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_256]", + "fixture_hash": "0x4ae6e1a66ba0ff90cd6661e532e2202df1494f3043ed23a7ffe96af238c07b0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_0]", + "fixture_hash": "0x743b23ba2971e521897acd613115c5c299586db80eabb0041fcc56ebb92feb3e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_16]", + "fixture_hash": "0x104b59a5df9b412e05bdf056b145b70e1e4f4f04c4cfe71fa64704759779c554", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_64]", + "fixture_hash": "0xd84804720f1b480632a894af2c7aa77d209d0395500dbc703f22c04c38b724d5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_256]", + "fixture_hash": "0xd67f6d78b152b332d7ca60e503b03cecaf39e606014a8558f0360ce353a7968a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_0]", + "fixture_hash": "0x852aec3ce30e9749bd4544c4e0989b88588e87e7e9cc8fb4a54a55dcc2dff5fc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_16]", + "fixture_hash": "0x5a5de761af05c5b66b2e061ba36a93a53f0fe672176cffcd917e585b2a14e2f4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_64]", + "fixture_hash": "0x41a9be02730bab1f2de9e6cbccaa5aba5618e8bf0c1a09d28cd7b66c4eeb2693", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extstaticcall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_256]", + "fixture_hash": "0x54fecdd9a24d06997a08b8eebab16274ed8159d1dd18a38daca4ec39801e135e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extstaticcall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_0]", + "fixture_hash": "0xa37ba3208fc6c9a687154203ce9f85ebea4b82bc309063ce26eca49b40d2756e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_16]", + "fixture_hash": "0xb1fbd5ad4db10b17284b97b84ffcd0945d530d8e869fa4ee47765f58803510cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_64]", + "fixture_hash": "0xbaad0f9363042ddb14f1192b38aefd8a311378cbb86a817b17473da95e47a7e5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_0-size_256]", + "fixture_hash": "0x37592b8d1189075efc9e009f41d6b712c19b28486d8126fe0ecddd416b335d36", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_0]", + "fixture_hash": "0xb739150d966e0a69b4f07233b61107c711909b822062d25030b8bff7f6ef9db2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_16]", + "fixture_hash": "0x697305f2e659f8c6b1f9314e56fbd99d5767f9953bd16897a2e9bac144b22ca6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_64]", + "fixture_hash": "0x2dfcb91130dfb222d2c42c7a972fcf3bfc909eb5f0d8d4ac2e01779229ed012", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_8-size_256]", + "fixture_hash": "0x4453e2599a66464c78754cabe7da272330e77f9459b029f4aa862c6c7dc800c1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_0]", + "fixture_hash": "0xd639e51aba983fb8f5fefd0fd18917dd03ccfcf0ecc029e670764fa266e4e24a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_16]", + "fixture_hash": "0xecf4960e550b3b93b1ba15fe51d6debe626ffdfc1c5eb1a7c7ef83bd6893f309", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_64]", + "fixture_hash": "0x47b46ae9283927e5a553343f9d8c1c8b4e201ed7843cd7819f57373813944753", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_24-size_256]", + "fixture_hash": "0x1c90b03439734644671b93662259701c742d2ce0e3c3879fae928e3de5b4c481", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_0]", + "fixture_hash": "0xbd2eaa5f0a3037ddbf8fc27ea7ca8be811c7dd1bf440617dfa08d1cf1d3d4c75", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_16]", + "fixture_hash": "0x345ec0cf3e34c608b7652593faf476908056912376f3f550c07d93f8d63b6c5b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_64]", + "fixture_hash": "0xcefce5b02c43f93ce3889b41966bdda99321cda87a8c9d457bfc95c7357f03a0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_0-offset_80-size_256]", + "fixture_hash": "0x7b2cf0f1501623f15c0c38c47c80aa725e118224adc520731f9f836de5b2f885", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_0]", + "fixture_hash": "0xb0548c0cc1cbbeaee9f4640164d681c6467c516cc2a5c460592f73b22fe47c9d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_16]", + "fixture_hash": "0xddd2241d09b6691a506e62fcab50167902b5540c8612ac49adb563b4eb3c5dd2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_64]", + "fixture_hash": "0xc71b05c83472c5a7765a2737fef34cfeb311db6d3ecf61059d240e037742ca02", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_0-size_256]", + "fixture_hash": "0x34622efdde15dbc61b3818b48ccd321906f89966d1ac317272bf873577ca99d5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_0]", + "fixture_hash": "0xa58f3854bfaf7f9db927e225629e4a40b17b0961c9042c28a987dbd6d6862a60", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_16]", + "fixture_hash": "0xbc93845427206b512e2e7314e40c8879af0222c9d0261b18e72f290c48902ffa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_64]", + "fixture_hash": "0x2a0818c61981f6b320e65662d18ae000b29edce7cf5f0d9ad9146ea1be2dd39b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_8-size_256]", + "fixture_hash": "0xd790c3adcc172ac3472dbd31b2b1dcef7f13588914166fe062682fa27d609515", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_0]", + "fixture_hash": "0xb0856376e43a026e815bd229b53c1a7b33382988e32cd5b96a0ae6d748db58c9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_16]", + "fixture_hash": "0x73bb27486f01e473e0ece1401c57152d60fcdbd650646a3bc0957a0a860524dc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_64]", + "fixture_hash": "0xe32bd419a743bf3c4ee64e2f8f6a7d7f1dbe897e1c01e671661a8f945ce62367", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_24-size_256]", + "fixture_hash": "0xf6d679df864a3040d7016d869a29cbeb9227ab010f5d27fbc2373204f980abc2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_0]", + "fixture_hash": "0x6aa22299ade92897331a9bf53c3593409bdcec6ab76fad8270f7ab27e3b8c55f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_16]", + "fixture_hash": "0x7198960d6b69799d680d837f5e2eab4e93c66f0ff9b4df5ec0b6541af8ae90d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_64]", + "fixture_hash": "0x70eaee20517821ce8a4add8162d12b8dcbad96e106736b42c1a7e84e877bce70", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_8-offset_80-size_256]", + "fixture_hash": "0x64d41993754d3f5cd75066831e05bc2626d3a6930708a496977e6716a0253768", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_0]", + "fixture_hash": "0xcbe5a89a433413560875c6dab4df164eb11d2cb5d2d2256e2309198b22bb4107", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_16]", + "fixture_hash": "0x105a7441f0e60c543f66ec89e79b50bd01fbed1f272607772cdc9a8c986bd8ff", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_64]", + "fixture_hash": "0x2738d406ae69979bfdeaf0db8e061fa5978907a1964adeb5e54d2c4bf69efb3a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_0-size_256]", + "fixture_hash": "0xddb5f50f7918e5aeb4b26226e5c125f2e65fddc7fe774f5644bf1a5f87ffcb61", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_0]", + "fixture_hash": "0x899c7f623fe3e42556dfeacba8b18d409b7625415b694ab25b18bffa75c25147", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_16]", + "fixture_hash": "0xa16bbfa820fe91e37b4499813fd6ba8e559df8833f16ea1583d4484d2fbbf8ab", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_64]", + "fixture_hash": "0x93bb3bbaa64bd105e7109b40104ef12caade9ef6ea5e91d5ed68bd4720fae147", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_8-size_256]", + "fixture_hash": "0x8c5fac43cf80fb586e236f1ca2e012a47f7e6ca81b86d1b9e6607923805cd385", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_0]", + "fixture_hash": "0x3b3c25a322fdeb93375949182f361ee2fdfccb13cfe16c191197812ad3e350e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_16]", + "fixture_hash": "0x32964b9e341b63da467ababc805cfd2e2d57311f34260053d213fe084a637126", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_64]", + "fixture_hash": "0xaf61189571298347a84da305961b9a27f462709c144003e2f2630718f89e4dda", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_24-size_256]", + "fixture_hash": "0xf1aa604955b16c0fc4235ba470d6856cf1786d43ebf31a1046fd60d4eca7bfe4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_0]", + "fixture_hash": "0x3ab455f5cb47d95e3ca3f0a566d0c34a1ee05fe7c3f61b99db210f5221559454", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_16]", + "fixture_hash": "0x55319b99c6029b76ac63aff73049318d8a13169c5089cb7a988eb1d84e09611", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_64]", + "fixture_hash": "0xc1fc8eadd95c9c9af68d55e196863ab6f4bed22ae83dd587da47b5c376fbc57b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_32-offset_80-size_256]", + "fixture_hash": "0xf71c6d3291c96dbf5b57a75984cb73bee77bf3b91b9bf7e0127991d4399936ab", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_0]", + "fixture_hash": "0xff9642dbb357cb1d070dcf759f5b04d1ca9b39430d02bb593ef276418e90d4cb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_16]", + "fixture_hash": "0xb16d08c5c45e4606adb573a2084d5f760312776b0bd7362485d37f2f87906157", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_64]", + "fixture_hash": "0x5648e6f8dd23a6f5a1c769f04302bb3b5e4a219da49c407eb8f465ff6488082e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_0-size_256]", + "fixture_hash": "0x4aa093992e932f61fa137eec62b1258f954a01bf94c76e07b495c8ce0285add0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_0]", + "fixture_hash": "0x9d50eb1aa57b00f64f41157ca380e471f0e5de52e1fdcfb6c9d88aa7aaf85ed4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_16]", + "fixture_hash": "0xefd6c61651136d5f0b7d0ff0dc57fb763518a38883948af24daf9b8bbe7b58b0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_64]", + "fixture_hash": "0xaac45ba23eff9f5ce894a576f499213bdcaefc57ce5b584ca9c629fb06367bae", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_8-size_256]", + "fixture_hash": "0xfd9345727101288265db5d04615af58394d01ba185d3289419b9add981c83c1e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_0]", + "fixture_hash": "0x6199e242d1b11cc5eb0f6f5991a68abec1630fa4b2f9c96e32a33a12c68fa7a3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_16]", + "fixture_hash": "0x448224cf97d65ad1deb5b188462f0f8257e782fc608fca876d47f54314c5eede", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_64]", + "fixture_hash": "0x2ca65316818226c82524ad65a108b3a283542e6b12b2fcd3d26ea6a1383de41e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_24-size_256]", + "fixture_hash": "0xbb652baa3c33fb1ab7e1b69f37aaf0272e8e3c21a71907557275c2b93ee24589", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_0]", + "fixture_hash": "0x3a165ab804ec404ca57064495876f433ca5986ac9661e52d8ff96c39287973a1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_16]", + "fixture_hash": "0x972746be4c3f14d16dd78d66faf04cd6b849db2bfeade1063a9e930db1fb4c00", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_64]", + "fixture_hash": "0x845dd897df9474410252408a6c41736d1e8337098ac1411e865aef9e609deb60", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_extdelegatecall_inputdata[fork_CancunEIP7692-blockchain_test-length_48-offset_80-size_256]", + "fixture_hash": "0xe2fb230930e7b40991f6010d8e0a81d30005ff619a5d5d0b37b557b13e524dde", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/extdelegatecall_inputdata.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test-opcode_CALL]", + "fixture_hash": "0xb14b15a5999b9a88aabad3d9ffcd65e54c4c43f029f5f7a07523e69c735a9358", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test-opcode_CALLCODE]", + "fixture_hash": "0x721569a0d50cdfdf7bbe4c054939db09460c7646b3849fb49d2d69fd4f50782c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test-opcode_DELEGATECALL]", + "fixture_hash": "0x4ae41ec92bed4db1f4ab20499df54737ce37b5cbfc50c6e2e3a3bf34b3f4b9b5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test-opcode_STATICCALL]", + "fixture_hash": "0x2f8e325a3663ae869c3a447f7cec0880afcca43d1d306cb31c6aa5203883355a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0xb7cb4056df42a8d8f43ea7def2f4fa88b4c523f37ee095772115b6b9d1a13481", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x77644f0b0528df58cdbd47542470d45dda4e1cac71a8a2bf7b81d5116a7ae696", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_calldata.py::test_calldata_remains_after_subcall[fork_CancunEIP7692-blockchain_test-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6613773f6518f93c71bb50c7601552c02ddc04066ddeb61a8284029a3f0365a5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/calldata/calldata_remains_after_subcall.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-zero]", + "fixture_hash": "0xba993b687b9f28867b794d7d9cdf19b3676bb6e7f5082b03d0a3a63697d8348a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-short]", + "fixture_hash": "0x3ed6f8005d7f5ca191bcaff53f66a52ec2740a356d2f88b395956f00d0dfeed9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-mid_20]", + "fixture_hash": "0x454ed3d0a4180853419eafb5a77abbc5fd2cc7f710e50721742f5f35d201348f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-max_20]", + "fixture_hash": "0xe2b837e525f0d016e242ced224d46a14c1928a328451287bd16efad1476c784a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-min_ase]", + "fixture_hash": "0x1fd1f757456ad185ab790a716c8710bbb30762c1f582b436c783f39626dd7ed8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-mid_ase]", + "fixture_hash": "0x25830193135e5289a56b651271b397c71a9b2dbc9270eccddac3839d16f9475", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-full_ase]", + "fixture_hash": "0x27622b85f6d513748321baaad44834b6a673df0cb7f634630b21bc860fd6bd28", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-empty-max_ase]", + "fixture_hash": "0xae294828e63c0e97f17f4967f8fb5f6676200a4ddef62870d17281368bf61c5c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-zero]", + "fixture_hash": "0xeb7cafd1bf53a7f2fda20d7eb7558f31f4c3030119423a5c2d83baa87849cd2d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-short]", + "fixture_hash": "0xc90dd06580882a8b30f9c878b7b5f40a7c4c6c646efc573df7a5bf43908b22a5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-mid_20]", + "fixture_hash": "0x798c53dfac75519d03e7b4e42438e05d70bbbf261b6410940af61f01db7c87ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-max_20]", + "fixture_hash": "0xcdf905655c3ae5f5fe20a1471c4cc1887cb4581bdcebb23b2367f3df54234686", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-min_ase]", + "fixture_hash": "0x1143ca278688961c43dfb39aa27976f0be6b022d27052dd8edb570b2988157c9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-mid_ase]", + "fixture_hash": "0x8112237341b16daca6fa518af1ec0966279130e79a3bd5889d9fac80fad18586", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-full_ase]", + "fixture_hash": "0x115f3ff81ae5c229616f4399ad306281b76efd030c409e9551bc8d72a1222541", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOA-max_ase]", + "fixture_hash": "0x20be003103fd9c31c0671c8b259e94f004e44e06b6f9547eb42cfd454618ed77", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-zero]", + "fixture_hash": "0xfbca5f46df29a591a25c12bfda22393ceee465257596913df0db3bf8912924dc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-short]", + "fixture_hash": "0x126c20aa566d73010fd9f88eba920c0a8905d105926fb0bec7bbdbd57c866514", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-mid_20]", + "fixture_hash": "0x46f1d844a8ac0aefdae898ac9f1ccd46efdbbbb109ab318febfce80525012d76", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-max_20]", + "fixture_hash": "0x9fc5940336003e8a25cd5afa765f0585129f83a1f702a3a33fc8cd5ccc9ad91d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-min_ase]", + "fixture_hash": "0xf2006d4b3f8a870134f435ba0e01d1e4571ce6b6068c877200af72633042da3e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-mid_ase]", + "fixture_hash": "0xb277295344b6bff2b79abcb7e38558ededeba8c10be9e79cf3d29a5dd8af4980", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-full_ase]", + "fixture_hash": "0xe863450b0206dae358dd1226e6b73ffec69044e165df88f11ed0d36871971e54", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-LegacyContract-max_ase]", + "fixture_hash": "0x68a3fbd3f83449273fdf53d7d2e3cdaf67878b9b2e3740987b8d77af348a5a96", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-zero]", + "fixture_hash": "0x4070ccf231524f65a36e19d53db57173301db903ed63c12ebb472be8f929f061", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-short]", + "fixture_hash": "0xd94d9842ff732b592c1c30af5d4bfd1b9713379fc5e0d26b94b4087ca548f31b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-mid_20]", + "fixture_hash": "0xbe2603374159a2e59c08d6d6a3ad7f4dde2fa899b20815100f3238cef2c58b86", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-max_20]", + "fixture_hash": "0x7bf00db31a93ddde047ef2a19481cfd9ff4dadaa1733cb53a1dca6997f97c376", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-min_ase]", + "fixture_hash": "0x1f198b277d2dd5f124a7e51a5fd638c9bbd99246c27ec32ad09aa09bb3e9bf3f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-mid_ase]", + "fixture_hash": "0x3feb4e6ef6475b363c42f15da55266ebbe7fece2d24ed4f69a246dd1763aee73", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-full_ase]", + "fixture_hash": "0x9c9a680a89522f85b0c534f49a7ba3ca89917abbf15b941769468ad6103158f4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALL-EOFContract-max_ase]", + "fixture_hash": "0x4cfe4c21c544e8ac7dc13ca9e215ef7e2da1329eb07c834d47889fae320df12c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-zero]", + "fixture_hash": "0x3a8e4b7cf00fa0f9ac96d84c5d1f6d91b6e841078cb143afa066baecdd182ac", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-short]", + "fixture_hash": "0xd0e7b2519b7c3fc89f0c09c6f780c9438db82978c1a94ce7eb1a291f821656c7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-mid_20]", + "fixture_hash": "0x865c52d24787251ae85478c568fa1e3c948f583192537d29ef28aa20e51c60b4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-max_20]", + "fixture_hash": "0xce9e2385dfa2815fc24b8012b1d1949695d352e3bf03928b09a2a404309a7bd5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-min_ase]", + "fixture_hash": "0xf3e45300d2fd399829aa9f4459a56463aaea2579fb6deb6143d88c1c94906997", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-mid_ase]", + "fixture_hash": "0x8a4e92261d93862da5c412bdb1b3cd83b5ad148afa8eac6818d7f61e9d148d34", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-full_ase]", + "fixture_hash": "0xa6e0f20014b63ea37a82cfdf9be348d0331e8222f5a237108b81a8e0ed975592", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-empty-max_ase]", + "fixture_hash": "0xdbfc76d231db2c3baf367aab2e2d35311524c0cd448bd0b40618c0ed59a32c2f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-zero]", + "fixture_hash": "0xf85dd83bf673ea8dd0195be8c4e2d4ff64254b5c61d201131088ad411a3b63c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-short]", + "fixture_hash": "0x3bdb8b21530b0a917c7f05069b5f19a84beabe6cb2a4412ef27f3c574cee2f6d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-mid_20]", + "fixture_hash": "0x19dae767e8d55edc929be5836a0d0f4fe6c0e1242d071538616f84e55342f709", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-max_20]", + "fixture_hash": "0xec26b86e16516ad3188b65c887dc62c105b36fdad1e96ac71b3ece365915e068", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-min_ase]", + "fixture_hash": "0x67088d666e4c15e944addfc729b7b14b901888f10772b3729c10734b1748c30f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-mid_ase]", + "fixture_hash": "0xe07f2dcb0825c76a4387e35251e861804197a8b71019f374fe67b89347cf825", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-full_ase]", + "fixture_hash": "0x908a7fa05704bb91d9195eeb6a2a3535c176d0ff86459f37d1206e3b68b17771", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOA-max_ase]", + "fixture_hash": "0x5c83daaefb6690ae0e321121f30525d1b732bca5e6289b08cb13c19f307191cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-zero]", + "fixture_hash": "0xa93fd2026b2f255ec24ced1d3645d946bb25d275f4d79f18856292c19c5e8c7b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-short]", + "fixture_hash": "0xbef68ef291be5a34bd047c04120904307b61c492b3640a6e387e53fc5f57d5b8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-mid_20]", + "fixture_hash": "0xca734bdbab118bfeea6f97134ec1b59bae9ebf88ba6b4d841bf73cd7564b3ab8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-max_20]", + "fixture_hash": "0x2d092244bd5b6a7ea4b794d306b850749038c01453a2541ad05f4f697c943a11", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-min_ase]", + "fixture_hash": "0x843cc7d56fbe6d2d6402aa2796237c6fa81d8111d47231c49beb00160afdac14", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-mid_ase]", + "fixture_hash": "0xe93c01e49d1ac2d759693f889fcfa0ef437a657d3d824ecdf97a6a5e34d33d70", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-full_ase]", + "fixture_hash": "0xc5028893ff4897afdff417644861761d9d0cb0b8f9b47e7d623d2f416f479e57", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-LegacyContract-max_ase]", + "fixture_hash": "0xe6e6423ba950f55b6d6c3b0ad6a0516c04d17e8b39e4a9e7a0e90f383d197bd7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-zero]", + "fixture_hash": "0xc05cb3dd8a1b9119c154c9aa3db9a9f9f30f3f36c4086567ead49422a7dda478", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-short]", + "fixture_hash": "0x7c5b1e60888b3bc89e4b4475f6289ecb4ba103aa3995c8e6ec8205a5387e7cf3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-mid_20]", + "fixture_hash": "0xf15e995b0113243da1bdf61a67e3658a4246a3a1a45157620e61a44a0a3180ca", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-max_20]", + "fixture_hash": "0xf6558e4e0a82aa879a0ae746e65b36587567f9db34bcfd75128d4b4074d8ea11", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-min_ase]", + "fixture_hash": "0x6706608413903623a0d9934d7e74d6d20bb28314fd511651468f5df5248d4b47", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-mid_ase]", + "fixture_hash": "0x79a110763ff3a6a88361542587813a728d04b9649a9a8cccd84929bba8ab6cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-full_ase]", + "fixture_hash": "0x8f45f079e53e696ce4243f758f4f0b4aef6b0131dc10c83919710d5b8e1cfd5c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_CALLCODE-EOFContract-max_ase]", + "fixture_hash": "0x507ad9bef18382f67b9e6b8ed7f87941f20ad7b89546ef2eeae0fd97617b6f3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-zero]", + "fixture_hash": "0xe74e4c0fa60b667a3621e533f1286f245bec3a8a5102d934798bb5cb90e03ffa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-short]", + "fixture_hash": "0x367d9b1ebd216563a66ef0523b23eab6d7c42ace1149db430198b2d0da73fd42", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-mid_20]", + "fixture_hash": "0xc7e344258a68b2916a27596f5e3c7fced9aba3dd26e6c138df7f02c8b96273f8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-max_20]", + "fixture_hash": "0xcae64c811a08962ae14f70a15e23992e8338fd81bac2264b8b9dda9bf903a4ad", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-min_ase]", + "fixture_hash": "0x37de491b179e29984d8d6b96d95eb9af1917f63f580b19f3a849799e93735290", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-mid_ase]", + "fixture_hash": "0x104eaa51c2b16b8eb1400e4bb0851d602fbf799dcb2fa0b157dff080e641422c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-full_ase]", + "fixture_hash": "0x6c35710d3d6241eac82876c1f7e3b8ca4b4dfe7be417ea8077855502d667715e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-empty-max_ase]", + "fixture_hash": "0x8ee09a15598cab39028a0279e17181279110cb27f93aaa01573c71036d74d2be", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-zero]", + "fixture_hash": "0x251fd35d35a5a461978d8061a50c13238480058c29538b24d30117f9b8fdb602", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-short]", + "fixture_hash": "0xf873af524e40f46cbdfb5ac592a66454968ba28c6b5123fe9e9737e838717d66", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-mid_20]", + "fixture_hash": "0xc15605a6df607c1c4c7be1509112ecf796d81b86c5c823282717cae8e65c8a9b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-max_20]", + "fixture_hash": "0x165b3cf56bd7d21d8291bdceb10568b3792deb9614fc74fd6a9940e018817555", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-min_ase]", + "fixture_hash": "0x687c57afcc23116d51d3d129cf69398218bd14c5521e4221a64b3ae2aed7ad76", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-mid_ase]", + "fixture_hash": "0x387f6ef8d927b87bc0a4c601128f6c2ace16b25ca14a70cb7bdd4e2339c6833f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-full_ase]", + "fixture_hash": "0xd732e5fdb14c26a47a5d279cd9e0f52b7774c6a06673c30ffd979103555e6277", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOA-max_ase]", + "fixture_hash": "0xdd33b5e59c119291509b1ba1ceae31c2eb4f57789430c9850d9b92a3dcf32235", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-zero]", + "fixture_hash": "0x3bb9e9d83a205cee3a53e9f985fbefb697e0a134a7bb2378d1d60125ccbacc98", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-short]", + "fixture_hash": "0x26985b778954f911f7609b4252bebd9be2c866395a9b94e11050307eeec4f9c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-mid_20]", + "fixture_hash": "0x36a935281187bba8698e17d9fcf9c58d440d8c95f65385ca91903c5f556e832d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-max_20]", + "fixture_hash": "0xe1875f847312ec78f720aaf29ddee71191e382af06ee783bebd74df2fb7ad472", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-min_ase]", + "fixture_hash": "0x32ee4e4c53f3584c0e30f5fe32f948b3ce1ed0901e2f75657552d521a7c2f2a7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-mid_ase]", + "fixture_hash": "0x93a75319362c0c32081ed84ea4c80a629f5a11ea594f1050da3ec872a5e552ff", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-full_ase]", + "fixture_hash": "0xe5486a1f0b011591cc37a7ab41554c614077c6de686db6ca66270adee280c13", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-LegacyContract-max_ase]", + "fixture_hash": "0x9efbd79f72a57948804fa5477920def4670c7354afc88ebf85dca04a033efaaf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-zero]", + "fixture_hash": "0xd617a3143cc59d3f5c9fcb01882e94027509eac2d5ca02e0d8a17114d16977c6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-short]", + "fixture_hash": "0x490c258d151cb6e1e43bc38c5973de2ad60a5add487ab9bdbe2d84da58a7639d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-mid_20]", + "fixture_hash": "0x3617c7d890ef4b4183d407c55e56779f65090de7550c2e2f8a3d0462eb78b7c7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-max_20]", + "fixture_hash": "0x44aedfc7b05a6d92b519ac228e5af347a0e67232020c49e8a8372e6864b9d1e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-min_ase]", + "fixture_hash": "0x6d2d9305f289ca59e4548e0ae368ad69b561e8f3f2be73abc132d60fb8e6ed56", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-mid_ase]", + "fixture_hash": "0x88865d88bcd7727c25fb66669e32faca447c8c806150d867c9eb6f1ce6d2240", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-full_ase]", + "fixture_hash": "0x264bc6007fb6290f6a19aad057cdeedb0503d5f5ce368ad92ab03abc6cf419f1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_STATICCALL-EOFContract-max_ase]", + "fixture_hash": "0xb36538d1bc14dc7f1866bf5707f4296297e609949fc81723eb6584af45aa7b45", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-zero]", + "fixture_hash": "0x2a6c7e3c175a05c1f479199bf341cb36d81a8c481be5eb9fb4a970c76bf7be7e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-short]", + "fixture_hash": "0xca1997b410d779d5dc606acd95f7e7bd9f7e5d522c42d4c3493b97155cd956d3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-mid_20]", + "fixture_hash": "0xcd00dcea9b533a12ca08d32d8c34e8286d7cfbdc837b025d5620f2f08f1a1058", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-max_20]", + "fixture_hash": "0x4a9225b033d69be63b332a06a712031b7feca49570970b12c490ab2f64b68683", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-min_ase]", + "fixture_hash": "0xab0a310da6d7a33fb75789d51c53ec94024658ef31409d2c6ef9c9e9c90f9836", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-mid_ase]", + "fixture_hash": "0xddffae8366b6b348b058900f2b4bb7a47e85e432ff690b1fa0e83ebf4dd137fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-full_ase]", + "fixture_hash": "0x1f58cc1caeaa17884a0d950d1869610c6240ce17f8eedc5b6f6588c2f7e019da", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-empty-max_ase]", + "fixture_hash": "0x758de9327ad9c8f66be74a530f252cb5b3bd210e2fd161202044ec27f76b61af", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-zero]", + "fixture_hash": "0x439f02d7d302c96d4aab316a5fd069eb611ec01d4e5faaff8110f3212d06299b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-short]", + "fixture_hash": "0xbae4a8a82dcd9eca2b92bbfe0af432493319029f9ca19654733b7f8d912b5f91", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-mid_20]", + "fixture_hash": "0xcf81327052d3d8e390fecfa674b5be88befb4e14742da635677a05dc2c2abe53", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-max_20]", + "fixture_hash": "0xcf22acc110ab6ae7809df6f514de4de99f91496e512f5d8c93024b293288734b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-min_ase]", + "fixture_hash": "0xed66d7c372da3e6c54f0c5657f75e2965197cb85a4b0a61263b1f3704ce6df0b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-mid_ase]", + "fixture_hash": "0xef49868a542929ef13c42e8da38e932e1e2454eeca7ffaac47d8b61bd3def1cd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-full_ase]", + "fixture_hash": "0x683f59e463b8827c0e24ea4835ae49a86abaf5525ee1c365f658b480915a927f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOA-max_ase]", + "fixture_hash": "0x1f6932627c03a263bd5dc4d6275bdbd17077df9f77703f5f16338bb5e61e4d7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-zero]", + "fixture_hash": "0x8b28dd1fdb754e6d70ef550a163ef500c00dd25079090b6f1038698af61cca47", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-short]", + "fixture_hash": "0x7aafc71b21e67e284b4447842ad624720c85438ce82bd8dd71d446b88b11098", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-mid_20]", + "fixture_hash": "0x2e59a4fd9cb96f59963444ed0b452016ee51355893eaf273e385b04c255b1f02", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-max_20]", + "fixture_hash": "0xfb24759b6e2afed46ec8b634135fe4d11878df2777e791dcaf8d7053f3f3645", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-min_ase]", + "fixture_hash": "0x6b3598655e70e06dfec15218061a8fb281bccf705fd890c4f58960be99e524ce", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-mid_ase]", + "fixture_hash": "0xa88ea292c4aaffa1f83a0f802a83503859ec3195c88924a7ab56a28a8a19fdf3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-full_ase]", + "fixture_hash": "0x16f1a27f65404317903f8074b704cb13dd6ef4a3e261b7389a70cf86f93e7d9f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-LegacyContract-max_ase]", + "fixture_hash": "0xf98a0bbd0dbc7d30fd6c49d568fa525a00c4490b0136284902bd6ae1f71b94f2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-zero]", + "fixture_hash": "0xb806cb7fcd9c14c9ae2857eb5f128580aa3ae3171afebc2458c65d4556f6db1c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-short]", + "fixture_hash": "0x9224f490375a628c3103d0725a4a9799f03e9d91f57fc27055745418d9d183fe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-mid_20]", + "fixture_hash": "0x84a0e6d65688c3ff08a51229f472ca77716e62bd0ee5f672599b6085b08bb9a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-max_20]", + "fixture_hash": "0x79f2cbd9083d4d854cf98669ab448e272f9195072b7c72132db9b232475212", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-min_ase]", + "fixture_hash": "0x1a189ce349dedcf0ef0cfa52236c86e3e5da6dccd08ea61ce31c7cd3e4bc10ae", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-mid_ase]", + "fixture_hash": "0x230f3dc0ec63a475588156003d8c3af90887a1bd35ece1876f50a61b18895cc8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-full_ase]", + "fixture_hash": "0xab2a82b2b4354dd967d2ed08f4103a664e8750e3691ac3e4b564ef2b6f92a3b2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_DELEGATECALL-EOFContract-max_ase]", + "fixture_hash": "0xfd84c3eed17550edc020a1b6e0ca74131275036cb3ca7f1b7f535e28d28982ad", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-zero]", + "fixture_hash": "0xeb536532011ac87d0d40d17e56c67adda3bf93d57e9e558b715eb535bb0a208", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-short]", + "fixture_hash": "0xfbd713b550ae5568ded0b2caabd85f80b1a1cacbcf436f88772faef6903a98df", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-mid_20]", + "fixture_hash": "0x2436ec192cf57136fb9cc4c51b7a29291f3f895837736745705187e49167ca80", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-max_20]", + "fixture_hash": "0xf20c411e11cb7ba3df8d49967a48ac6ea04a84d8a92bb9b44b7df34c2768ca27", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-min_ase]", + "fixture_hash": "0x5fd6441d5a54fecc4a7c39427b2a1c820cbfc4945d59e4f391f28cf2d340db39", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-mid_ase]", + "fixture_hash": "0xa6fa76d4caa2033e4510f4b69e176a0ce79536a1ef5b331f2e8ce9ed5d076f34", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-full_ase]", + "fixture_hash": "0xfb1e6879e47cd23eead6e04cce0729133ad2a9d9fd058ef798df39a4e58e2e70", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-empty-max_ase]", + "fixture_hash": "0x584896f6a9141ddfd1c88836a4d188ed662428ebf18ee20712b7acf99f9333ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-zero]", + "fixture_hash": "0x461e71b29d3a2838bf5a3700a09299eb37062274bffc508477bf779bd10d30f5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-short]", + "fixture_hash": "0xb8605b0984a2a8bfee6d276f2f7bf9b02f0adca343aa498f1ac186a2ab938dec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-mid_20]", + "fixture_hash": "0x1cac8a3046ba64e79a74f214bb71846435693cd2bd16d98995513d5597124fdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-max_20]", + "fixture_hash": "0xf96d36bd012fd5ea21a85780327738edf12345d4a999dbcb9fcb24ea0c3f20d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-min_ase]", + "fixture_hash": "0x6ff7c3121dd883c39373886f6c5a5d476e8fb649fef18692a9c5a9f99c8238a7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-mid_ase]", + "fixture_hash": "0x7c6bfd2982b6465b8499ab6351caa77cd26238fd1ebe41320e674805226c89ce", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-full_ase]", + "fixture_hash": "0x623161d22e58852d2034f54bc2d1f5a5a3697c2f229910509c800f5a83e34c5b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOA-max_ase]", + "fixture_hash": "0x7bb92e21e3da6306c7537b4681829b12744dab386d594d5fdd7dbfec321745c6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-zero]", + "fixture_hash": "0x18443300b7a7e21e979b0421aa23a5a0369be010f0b7bea5327537d713a200b9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-short]", + "fixture_hash": "0x362a9a3b6e481f2cd87cbad64fc83b391f7bc01426025f25624114f7e0bddfea", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-mid_20]", + "fixture_hash": "0x69785d14ab21dbdb34b05dfc18293d421f2132e82ed7584f75f4aaa73b49d7e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-max_20]", + "fixture_hash": "0xacf1073591c771bea2e39af93487a551ea62dd55b4c43f253148dffb785242c9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-min_ase]", + "fixture_hash": "0x58484305d3c85f724eeb78caaf3afad7a4d4e95dd5c48483009c4959743bbf20", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-mid_ase]", + "fixture_hash": "0xe69d57bb07acd760e76fa53b5affbc9d58906f20afa58e062fd8505fd8d5b81a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-full_ase]", + "fixture_hash": "0x2fc447582ba70679c98863518c97cf882cd823e259bd79a5d248d531dc322194", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-LegacyContract-max_ase]", + "fixture_hash": "0x2f07ac569a0cc1de8d6f2288311512387d2726d6f858e92e49bb09175b59c51e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-zero]", + "fixture_hash": "0x767f55edd83600b03dc2148760c00487c846b4ebc8bcd06ca92c7bb949dff096", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-short]", + "fixture_hash": "0x99d753ba6dbf233ebe5d885cc9a780675372bfd83bc1597c864601aa90a91a56", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-mid_20]", + "fixture_hash": "0x4865d74f6994c0558dc72c99d9483392da4e7ce65380bb47503d7f819e15c4e7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-max_20]", + "fixture_hash": "0xc0ea18a70846f36ef21bbea0858ea4d08f3fc2e59c19f3a239fe06c924e17b67", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-min_ase]", + "fixture_hash": "0x51814588ac6e2055cf2abb8cadf364ddd91d8a9e4c54a3ded5a17ace0b6a7ca", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-mid_ase]", + "fixture_hash": "0x761475680eb9d135e6134aa739be09d6dc873c6a705218ffc78ad4607a6247db", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-full_ase]", + "fixture_hash": "0xe37ad63a3f2fde2b6a1d44380d4999deeab3c42c07f26617c5f475ef505285dc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTCALL-EOFContract-max_ase]", + "fixture_hash": "0x89a23141451851daf8488d7eba4b469018a517b9828f486dc1c9cabba3d87a1c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-zero]", + "fixture_hash": "0x941a3bdc81e6863d7fefdab118349d7d568aac9cd8bd39474576f86c9f9e4791", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-short]", + "fixture_hash": "0xf684aecef526a1aea152d62ef50255500a09c4f1ae45f493da5df3a9c47a89b6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-mid_20]", + "fixture_hash": "0xe0d69039d0e6e6897404926c2fc0cd06b614f9fc53d6797b39e723e5d2ac141b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-max_20]", + "fixture_hash": "0xffd923bf03eaa9f43a5fa5cfec2b209b11bace76345c486efce458284ded194a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-min_ase]", + "fixture_hash": "0x2f87ccaec591feed7c3c0ad3cd384228cdf790c18b655d15b78b884bc36d046a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-mid_ase]", + "fixture_hash": "0x184daa972b2544cc1f906f05d2942b9054fcf420d6bf1b2d29a61bec998b6506", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-full_ase]", + "fixture_hash": "0x23f6b6514e5124a4de09e402c284d14f9c3cb168fcff604667c578b958324ab3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-empty-max_ase]", + "fixture_hash": "0x7f74b92eac55c9c6c2b342aa72f7ca2f1fe8e6fb3133b38565aeab08cefda7e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-zero]", + "fixture_hash": "0x92af318200e4307ce23f5d4b2a120a6c917bf5a1c19f4b6f1ab45f0d357d2165", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-short]", + "fixture_hash": "0x3f568056bb871e4152f0d2b6292d84be77ee9b1133135d86ecaa9b55156989d5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-mid_20]", + "fixture_hash": "0x48537cfddb65f011b9954610a31a37eda0c1767d2158e0e5ea5be9b434264d7d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-max_20]", + "fixture_hash": "0x8d852fcca48353e166021efd592e3917d809ff5ecb53d59dc62df091ff2d4aa4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-min_ase]", + "fixture_hash": "0xee4b5d0610b180563fd93ecfa4b8adabe489b8436371c32df974c622d350ed3e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-mid_ase]", + "fixture_hash": "0xc00b9f88e766f05c06a2edc04afd1e9b9d5c348014db94ea3ed7469826029b8d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-full_ase]", + "fixture_hash": "0x9b8544141b714427998ae3fbb5feca5ea9b7c5a440c5748ea669f53e5f16b440", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOA-max_ase]", + "fixture_hash": "0xb726fee9438c3f4025ea753d0977d6787a393ef1bb7753f85f687aae50731ed0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-zero]", + "fixture_hash": "0x2acd4c47b6b8677b5fe16fc1b192857eb0d02ef3dd994d8b71a2b776c329d68e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-short]", + "fixture_hash": "0xf7843d56fae081cb58bc45cdec42afe9b61dc4944cbf8f732f58764fbb1fe2dd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-mid_20]", + "fixture_hash": "0x6f7bf7a60f0d4a07edcc6732869743592c6cf9fd196dfedabc3c151f5521a56e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-max_20]", + "fixture_hash": "0x441acd2a4f07a1cf9836e6a1fe5f2ce777b4e99cc4c3bc28a1a0aa9c591cfd0b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-min_ase]", + "fixture_hash": "0x1b395c40cf1e270549793fb7e64084cefa6d235f558b12077ade1be1d6bd395c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-mid_ase]", + "fixture_hash": "0x2b2db9b39d2ef9cf7dab088a67ba3fef5b9732f624241b6b7a16fbe0dad30332", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-full_ase]", + "fixture_hash": "0xf16927cde90d833723cebcb7543a54d7bf655e326624064b0f6b1b8a2672a4e9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-LegacyContract-max_ase]", + "fixture_hash": "0x26aaf99fb696d2b55dba43fc00adfee28fdcbf614419c50abde9997196b8a58e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-zero]", + "fixture_hash": "0x494dd436095495829de7ed526ab7c86a20d3f3f41830a95528f603fb8fe4445a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-short]", + "fixture_hash": "0x5d4f58014ffb4e9634dda2ff502c764472e99aed3a27f9febf1929f6f597785a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-mid_20]", + "fixture_hash": "0xb3a5ad596bed66c977e80ca0b759f65c56b672167829fc524b49d258f65205db", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-max_20]", + "fixture_hash": "0xe68b27089e293449e0b4f4f21bca57eecf0f05b1968f3ba7472fccf486c43c61", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-min_ase]", + "fixture_hash": "0x4043a39ad24a9969ab4047bf79a6164b41165016de450d762cf2b40347b5d958", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-mid_ase]", + "fixture_hash": "0x393c7d904fb03ffc305632888a584ab7a23d2f19cd1afff3b2b1b4eb706abec2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-full_ase]", + "fixture_hash": "0x804089d3bb53cd261eda18ae02d773ab3855e44cc6f96770b6c1d91e1d8b1391", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTDELEGATECALL-EOFContract-max_ase]", + "fixture_hash": "0x9e570a6fa700a55bbcb3e57a59cfe20d0828526804d818ead6287880978e7340", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-zero]", + "fixture_hash": "0x8267e32d029792dfbd3cdc092e57b0c7d1486bbf0ec3ca549ae71fbda96dee1f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-short]", + "fixture_hash": "0x1bd688a23302d3f24b6105b58644abadbc7d442d4e76e1178b83c8603cd9a205", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-mid_20]", + "fixture_hash": "0xdfbad809f7f1d6bf7ca117ba7f65312c4e8b1d859d2eafe4b98e7358f2020ef8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-max_20]", + "fixture_hash": "0x2af9747800075417c13122c6402031358b79b9ae055137ad208bc1b99b60ca6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-min_ase]", + "fixture_hash": "0x5d3c465cb4d22f020d89ae4fd9b62d00d22f85d05747e4cbfb22dea324704419", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-mid_ase]", + "fixture_hash": "0x91aa46e7a788a1de774c26b4522824669ce2a382b89a921169a75ffc6d3181c1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-full_ase]", + "fixture_hash": "0x53099d467904ca1e6b1433098aed9116dfc32287b40a2df89bfe4351767112b7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-empty-max_ase]", + "fixture_hash": "0x6a527dab6013fe613bcd2d506c71795d28e604b33a71f7127983678a04dfb1d5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-zero]", + "fixture_hash": "0x71cb6001f039530960df7000ebef1ee53a2bd0774da7820fb4e56e95462c19a5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-short]", + "fixture_hash": "0x98b8cabe6a7af6aa69dac5dad054a21bf9cf4929697f4b11ba2b4953d36c49a9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-mid_20]", + "fixture_hash": "0x49fd5703f33fb2fbe71ec225c45d6520e7836570571a9bb7955e7d68e942aecd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-max_20]", + "fixture_hash": "0x178872557fb12821e6a76866f768e744e1dcf4935afb6011120abf27568dff36", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-min_ase]", + "fixture_hash": "0xf953b5d3050b36a2c5116f4560e805ec81bba0f483936d50445458c0274f068d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-mid_ase]", + "fixture_hash": "0xf4054f64497bdff7a079d792109729f3140d0d2a612ac543631264c65b38f7af", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-full_ase]", + "fixture_hash": "0xe157d61a0890ce23547289590649b7bdc4083f3f7bf20f025745ecdf837b0b2d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOA-max_ase]", + "fixture_hash": "0x5f3d97a623a85926d5da13c80c3f0a233ee458acadc1cbdcacd49c5e90bef1cf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-zero]", + "fixture_hash": "0xa786bf8cb249b112a4ec8bb38dd9f04aa9e4d1522a30f8a5423275ae838c3ecb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-short]", + "fixture_hash": "0x81dfd39a392c6a15985d82689a6f34f95725d00f98c4fe5291477b5258a09de4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-mid_20]", + "fixture_hash": "0x92149c9754011d023f96b70d5de48ef7f80678fb04c959a488b87ae8e9ed3bcc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-max_20]", + "fixture_hash": "0x9441c7beda136e464e5d6ce4da72ab6a4c913d91a1b0ff41fd15f687a981c6e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-min_ase]", + "fixture_hash": "0x8129e484271f9f4fc4f0c40d56c1515ec3e3497a1f1cd9d4ec974b545665802f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-mid_ase]", + "fixture_hash": "0xd2768ce0badf5ea0b970919d92d72810dd69cbcfc894beaf61bf73ea261271fa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-full_ase]", + "fixture_hash": "0xffe23774d8834dae43b99b792c5540934ffaac724076957d1772b43283369d8e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-LegacyContract-max_ase]", + "fixture_hash": "0x136f2cb9ce01f2586ca765b17aecbdee68e93f33476b9dd7322bfd17b5da803b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-zero]", + "fixture_hash": "0x294722f57ea54806249f0dc830125b7c5e98a7c937a005aa3a984a4d842b0884", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-short]", + "fixture_hash": "0xb4f83ee7cd5956c8483506bd79206b797d9ce3fde897d02856b47412ddf1c7ab", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-mid_20]", + "fixture_hash": "0x6ec370507da5247844ade04ef8be7a0ae07e434ed3f2f9c669755feb54c87cd0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-max_20]", + "fixture_hash": "0x9d7307767187d665de4f5ae5192dd67db7f737f09a5e62c23baea719ad882716", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-min_ase]", + "fixture_hash": "0xe4d851075c647539236043fe4c97c28e3e9fc6d7dee70165ae1538441a9f983d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-mid_ase]", + "fixture_hash": "0x3ae20f6b51f458c1409ead5ddec798aef5be56583468c51262cca753f31e4e4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-full_ase]", + "fixture_hash": "0x3609fcbd912cf6fa71c7749d603779c82cabdc51c03d35ece25923559714af1d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_address_space_extension.py::test_address_space_extension[fork_CancunEIP7692-blockchain_test-target_opcode_EXTSTATICCALL-EOFContract-max_ase]", + "fixture_hash": "0xd4d56cf80fe0df7e8b5966266a171e0f6dfb6bd5430575e2c49f8c7ba76da85a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/address_space_extension/address_space_extension.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_oob[fork_CancunEIP7692-blockchain_test-opcode_CALL]", + "fixture_hash": "0xfbaf8fae2a75c431a8b41c866591ec41ad117ca7856eee43135cd64d5e372583", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_oob.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_oob[fork_CancunEIP7692-blockchain_test-opcode_EXTCALL]", + "fixture_hash": "0x24edee8cb21ad8fa31cdf91a86db2ca4adf83a2e3663f07e68081d9254738b88", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_oob.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x5b12639052a9864488fb312e83a0493f47d3ba1ce11d0a4904f1d376ea91cc4d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0xbad9bff78de856b4fa91bd8dbc54177ef200d1a553d060da141ce48fbf28fddd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xd9aa406042d17d1aef1a4c1fac35f04b6b0883740af0d5250b88836b01b9a15c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0x62cbe4a37a8e98de03b17f894365791780f0f85c277637941b728295b8982170", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x782f87205d1eca64f33f429607ac0e21f06045df5e820e1b965c29e6cc9a21d0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb071e77071861f66b311670312a309556941619b9a4971b939832b264f06f2ea", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xed5832987e33fa3e6cda1c395efdb0f9e5f7210c6fa521ef5c9dbf61cdb9233c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0xef5a84eea857e158fd444b2cc1c9b0587559b8dfc49e0d85578a271cfc4afe11", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0x4a7055ba39bec5ce340dea2ec7e9e357a6616e603636c094f8cdb1d9bca63946", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xb89a222d78b5b580a3f06a078db57054ff06c71cb0bb94fd3abb6c7fdc6dd7d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x6670d699cc23f8ee42bda1b611266717e4cc6b09c8c60119d8671310f41a46c6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0xad28f4322cb1f07a5a1461fbb915ffa936d0982f21bb8eddb92097069f368198", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xfbc026e739f24d2a200bec309c48767b4626bd23d7df4098b1a8f46c00778c71", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x465ca811569f9ebec1c2f0a0668f1091642a6be5d6826d186dff8aa0272da6a9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0x73774c07ee84bc4f9af2fb5f5f9fb884b69d9e6946f4d3ba7e04d8155ebbdc5a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x6abd8222b47af8deec787d303c4132a49e3c0f6c2b4006fab2e7cc2eba60dc43", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xa54f45b272fd619d4d360a22ce8ee8f5b61dcc7de76593f341eb73f10a86a6de", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x15b29a3b80f60f5663274ec5bb5b4a5720bbfeb00f2509cfe51d54aa349886c0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0xfc3b367a90d57dd91dd8adbe9835a3e3b27396babbd63353a7a903d368a63f04", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb4214d2d9daeda9d0863ccc3ec5efafe71e861b06d9479279f813680d97160ef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe6e689578dd49b043e41a447a3231bda83208508ee597ec76a723f6fad1cd28d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xaedf2c0c280715134dc6c70c70def3767a8a95d65ec5391bc844b5349ff13618", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0xc38374c38b0e13e97ff3144a880ebb3f738ade41dbb3737dfedecfad09dc3cf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xe5ba631176fa64eef9342f8f6d0b9956acee7a652dee1103a82421debe028b81", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0xec77cfda9849c1797dc3defc5f0583b490369fcafd13ef04fbd5dcd4f14af254", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0xded419b4943a8ffe83725449f380f88cf52c27227f731d3f8fad26f74e60d79f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5bc3b4de0e981365abd76f68fce56db7e65d858810e4c9c6214021837337c1bd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6e9934f1baa044c9950b38d392033207f8b1f1c1b3c3fb1aaa088a1817521d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0x78183033e69a5f026af2966fc1415dc4166c8d9d04d2b003ba00cf468ea0c833", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0x9727b44e64a03fea0a1e506c345f3dff999fa9daa0afc0d2c144fe2bc624af75", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xa8137de9a59f0e4825c4541300188263203d1b4d599f8b6f8c9d741199e043cb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x9e35e0b078b659ba28de287446cc8fda35b159248412d812ec66133dc93d4a51", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0x5d2577d08ea295a0769ced817ffb3bf38d1aca483390b0f7dc746b2280c6bdae", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x50b2b221fb9c4e18199c7be8d4add56284c31990a284dceedc9a742ab6f25da3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd91e91b7a6a5947313b7b9bdf345d4c31e1e66d9c7c18d8bdff7dfc8de9a8572", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0x66a60ef6fd16da0c8680d15819a3523b124f8ad9d7bd86573c5b7f07bed7fdc0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0xbdf41e3041fb56246d921c370121d90b098ac029e1afc2c2d8be460ee6511ed2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x396beba64a896f7c3afb5d6b5de035174c2071acc59232972ae6bc48eb17ef66", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x636ab27fcba1268b023418a3ef188a66bf17b6c0d3782e8567d60cdf205e876c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x55e22418f945b2a500609de018d868bab7efafc0e419698a817545d1910cbda8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x33654bccd11385815ee0fc3c336883234a756fb5bc430a6367b7d996723a3810", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd21a3cc0ad67939dbce9dc9c97980953357451f1fe1b53b02e9910632e38eccb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0xc08601f27b2f79757572c94d1ac93177500aba0e15f28f1d7bbfa53c04259c5a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x301e65022a71a2be63a9695f4044a883f980eaf24a7565b31d2d52a0d17b92a3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xb4a40c155db4a3ef7cebc0058abfef632cd21f0bf2fd34e6397f319d8e34eed3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0xcfb0ac256d73b1b3357f053e142fd25b2d950cb6b4f4928df60a276f2b8e44c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xf66083430f8f86bd6c9c939f4828dbb070f14aebae8b1115b4215f2123a6da82", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xbe3c67e4f5567f5414bcb686d78643a11a0248451ee8a6ab964076f095b86b9c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf3707f620beb7531c998a8ada02f85567d5cbef5f5066d4adfa24847c7c4c23", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0xf68edcfdb259e52a1c0bc70be4e53787fbe1d256c807c864cd5606c007dc7cef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x8acfa9c6ecc3b1d60515b010e28c67e324440a2c4b3ff6cecf051a067cee3ad4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x81fd62b0ce43d3d67196211bcd4e535a12589288628044e1d57690bcae35ada", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0xbf663b67442ea9dc01f54392d39eb175815c1018164219a03481bad57109a193", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x2c2639f60439393576afc4c4c11614df40613cf3cc316435b487e8ce9d6f69f9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x415bbe3ad4ae11a525d1a8918fb80af5ebfcbb7288caa32e791648ac9c6f5cc7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd80517dee2d08fa72f577e8a7f2c1cec4bba3577ddbcd98191a43eb23cfb8e9a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x6c26ebde5f74f6f512c7c3e3e93cb22f12969d97f25ec47aba900ee152b77c5a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0xf7decc8ebb8db8eccfb980d4d064a54ab2c52b9ee3acc730f70062877d5350cb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xe477cc23dc3a4956c8d5bb5fdd3e5cd537617df0cb25236abf3246fb25e072c1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x6f09c0ff995aa9d002975584bac96e0de4d542a65dde3a1755be468fe523f3a5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0xb68637cbce9d23f6607e68886f75fd49faffee87114a3b0f9fabd103b3319e8d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x640f865f38944c51f8cc6d8b340e306bcbedca94420caec7308fa57e573a3387", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4991b79477cbd9fa23073bfbae3b02955c3b20bfc395de86753cec57f6933f2e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0xa6c1e0b3f26b6cdce7a9404b209d9fc68f975dcd5aa1f88f89ae4b7db4e2f793", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x3d2442947a35f3a973c30fb4ada9b50b12b34f83b16450b917d920ff616b6a8a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x78237ecd00841894ae19ca5b12cd004588870306cde8211761df53860399968c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0xeee089fd9c62a8eaf832b907719b61127e649de01711ff8618a58e7961ded77f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x176b27e8963b5739c4ab69d2029e5a7620bb8c230afd1f107af80651f98f010d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x90acd99b86fc11e92c2fedd569a95bc4d6c3c6cdf9aae36f5bca9816bbfebb87", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6df6c136d1ad84c9a7ca4660fcf16e60772000326b952f27bb02d334e5d913b7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0x22caf049350e7196e76eb65eaa27cec8506e6372f152626a822a1726e3ad13a2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0x4f34bc279608a5dd49fc4c12eca786fdaa89a7bebcdfdaf3110e7cc8bfd34473", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xfcc027c0147bc2f354457c23cc1bd45725be3119b6086e294dd8eb39d2118e44", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0xed1331c74b99f98c9a989030ca09143163898b6de069a3feb8efb2daa661073d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xb542f48e7878205a79dee49731d053026f788f47c071acd4433a7fe90e310a06", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3ed198ebed83112330b132aaede149fe6f3ea73d9a6cc870abcc9ebadd86bc6c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5faddb18aaf133a3f508372abaf1f4557165cc93203b757657f47cdb808c6fc5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0x605c18c437f39a299f001786e668855e93b21b94bf64a0800e092c3c6e5dc3d0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x2d14a3d3d0e5211c115afd6a6b7bc04fa5ad1602edf789ea521de26b6914dfa5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x517adb7c5ef84c534a9d4f1ba93b4a55123c50c84862a4afd53ec12adae5a3df", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0x61aa2e5196079061fe6f74fc43fb9b6002e1c831b55c6c0c80755d746f75a9f9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x223b4160380dbc22c48f6d56be0ccd63fe9e820c7d9a190b0a86c1c06c82b3ca", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x4a2bc5f31b93d4ede706afca896abd5c9a6f9b7430c4242b7fa3e3dc0866619f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7ba47521b69edd44b82ad9eb7f5877e4dea56c13c1edb2eecb25c251583e7f69", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0xee1d70447a110a348a5a8dae9ed4aaa5c1765c25f0558409f411eeaa00f81fd8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x5c876cbbb851a1b59c0e4ca95d9546fc19613ebe92e584c2f496de653cb94740", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x77fab0964bd1eb737a18f42cd4d51e2874b55cdf22cdf6540eecc62116433fdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x701951fe1d19ca35dcea30ceee6089fde4b7e60ec9c97ca1e8757bd8d4c33465", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xf1fd1284817c1aab9dbe749d5deee81396816489738c41a7fc473c671701e2b7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6297bfab7ae924fb17493754e3b513e20df628ddc8552a3fcedb016493dc4ae8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4261b9c18fe606b3d826d4ca3adc1a5298e612e8bf27f7459b3d0ba77e0aa471", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x40c67d63b20a283f53dbace805df12a8d2b9dacaf55d82c85135350dcab160b6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x86cace7e76c00c44500a3919f1a75ca9ef87a8472654ea729a2b2650875e8073", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x82b3e2f8eada702c8988324cfc44efb49dc11cf5897d17947a5efb0d3175c1be", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0x45d1454f7398c8aa49546b58b4f06670f5e005d961b40d79ea68f5b0ce6ed2e5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0xe754b4e248f2cecdb1ee672e7f1ff3ea8eae52546fb2fe171dfd07e67ede2d27", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9588fb9ed3a783d774b8b9b00e043895cade78aa9c05078f207f7e2d2cd93a9c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x98a5168209faa40f42e15e7fae04acb1fdb2421d2331e95049135d2bbc21962", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x9319c09c24b1ae3a907269382e7a9efeead58ecf5371eff00d05a26fc358f138", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x80aded722a95565d721f35614cc178a640d640dd5e0fa00b0850ee0874d0a4ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x2de4644cbc35a85d9e6f098b6e7870b1203f619a11c6a9c3e16a1f3f9e48f416", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0xc7ca05da6002021794488bc9932394acffb2f768fcd6516f90f4c3224e346b94", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0xa2694f02f75c413e2fb50a52566ebb9e0cc2eb7c869b4e47f15a89a30c098c1b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x4c31fc833803d535ddf08d244d1f14f683dc929097f534bec98bce09efe172f6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x754462f7d1f073c9c0fedf21f6ee99b015c5e2cb63e718187bf64f1c396d0d3f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0xfaccb9fefe29ca669ff950f95d2207c95312ab50b5dfe4766bad5bec1f8b5378", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0xf6e017e0a754b22105378011919e865794e434a303b366daa55383ce58497eeb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xdd1e9e27ec66ec8c8e6b61fef73a224e80db6eaf58084cfac200afe2fc867c7e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0xb23c30917b998379937c9b1738723df29a6c5f8adc2ca622566a6bb9049b3437", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x1c2a34744742c87cc229bb072ee8395fd0ac830ad7935654adacfcf0982de9d9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x43bd2c4f1a528a779434055bbd0783d50759ab2e6ea0c67702e1832ba8dee5b2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_0-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa7ee99cf4ab0d77c7651b80374a7f99acd0141fe3445db2584579a02f7e03caf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x782d8cf99e48d408e4cc1e7010ee6af31a627ac2978d09bdb6c351defaba4136", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0x7b7edf3401670aca341cedf38de333718e690ba93395406388aece917965735", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x1d965979f92e3751af3f890fa4243f5723385572f2e63deb7f61b386f9afe462", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0xf58bcdce61ea48b03e3c4d7e54f2976e9d2a7b09546752c56df19daa7d5435fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x2484b9bb99f0df1435a3a84973e0c0c937b70e5b778d2e17dfa46bb228f41ed8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd5e2d46b0ca256ca3a8fbdffaaf59e729d5ca442ee49bec4660685889c5febfe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb7ceee868a302057796617dbeb7422fe1a8be82a0321fb3306bed108ef21113", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0x387166d9929d056f2b24c1f0d76e5f9462feb1c33b3a307d68129f431ba7726f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0xdc685b53baab98fbaeab5c98fa44163baf0ac8d28544a55441a54351cef5ad9f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x98cccab024bd3ec1167091c9455b778d5455641e380cd486c3157ca60b33d2ff", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x68d6263895060a71f0da65591b888274df83088d2a2b8ecb8ad1db32c02175a5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0x91ab2a8d28f16818a1d09e1acff6ea4bb5c02832cbb5114be0af77bd89640a8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1a5fa332d66e47aee366a572d01bff5d52a3ff0c66ab4fa50dc403d62d391104", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x75bb94a64c3e2df791291970bcdf6a8b9f6ff6d217ae7cc3e4a0c7acc705971f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0xd20c0877e82bb56a4ac2bca95095cd2731373b961107e9937cd97c909719b078", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x2ae3a48c4fc6ede2c703f2d6d77093207b88485c1412aafa7826230aeb4766cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x9550d6d57fd9f9f3080e6b6994d83637256a33e56564139be40d854df3c74d1e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x11b892644937f4800c2afbbcc84746d30e911262b742d061d872a3af47b0206c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x132c95c77b0debe0b81011f486f6de0c24552e0c9e598a278f8239fb4924bc68", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xca19b0d41e6dfa4455ca5e2b233a4c703ca4b2e44b154b7bd10fd1c5a31a321e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x468119318a2fbeeea42a548cca44f7e38f909310941f3d576c541f4de03c6953", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xc2c31273d3cc6a6857cdbf5d309ee3b4b3735ec5b67815ec45b4f0f65c920615", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x6ecc3b3645024cbc00d6fb7c296c52d09938054c6c9fe3c811c18565996f585a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xb46d4b6ab3abea58886c2988576e73199cf7bd49846a62088aa9b0c14186cada", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0x753740ef97a8209105e4178a6b6ca06c307a5339074136d322749e3a7ab476ec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x99e1366ec431c73bd831033db2ce1ea2913389df41caabc4e482049c460c330", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7138a19048005eb99947906af0e8c63fa2515c33670a977a2ebb6999e0a62842", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3b98e52abd279def1e2e994f1ad32e8ade696505a80e6b6562ee46466b57c131", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0x7b18cf2743e30f1318a9f6c3f8d2da8a86d510dd26580e067778f66f06c36e9a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0xcfcd3480f0cfe03ec09a519d02a7b4a868e36a3241c898fdb39fabe01d42a976", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x8ce204201cb0dcfc11713d275e60096124f16fef1918d0cd247374d296ee7fa5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x11e3960fa314ae0a117d6ca106ba0364032562f6418b8ef54cf97d7aec2a3b88", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xa64867fda7b34d16c9e4d63d902e908682fc7725abcb4a4338f6d4ab65c76162", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc0b189dfeae8b90c7cbcd62a74e07bd4943e4e66eb92783a3ea7788e9cd3fcdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1679686e2a76cf4d447cd729577a6e906cb8c42aa0aa890fc5e4d614f33c44e9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0xf4a877390d94de34a9ce4e73c5f9baa6ce5dfae186e4d07e25d5faa1669d0954", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0x67c94e9bbc166f05bc91c029a2264ccc466aabccbd801dbb22b11f2d1b93dd6f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x68d7aa1d61fe247517775c058eedb6ecf4ab499fc77fdff1b99730621177cb2e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x2c7f1fac643b65e0422ea1e494f1c59ed3306c67e009c34fb2603f8af489842f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x8cd9e41bc9989cd12a6dfa9ca121e7ecf607096a9720c08cdd9814fe9eebc57b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xf3b9a868251a84083e4c4bb996e1be11b5a619be64b44afe7de9fbc2bb8a352e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6c7af570d4edfb62ca4693f67fa18d6287aecde053123ef4f94daea0a1832ef9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x856ed052866230ba3203dd6661f6b3a3cec36b0560ac7dbb0101f3731c3de74f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0xa3a2e82f249c0a79224752edb69fb8f9a98d21b1d0e50a7b23f198900e315dbe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x2acc4c9a5e2ffa36824defe83699ed2aadd702b8e1862443ac41a7e242fc3170", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0x9c3fec7db7020784a76747cbe950982ddaec34344b053317e1299bfef944051d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xce53ab0070346f83e7cf0481ea1709f58433e1213da65afed86c64060d0253df", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb303f4a96e08e9b51cf496ac05fac771f5a8590557bb53b0af19a228db524b81", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4c10a2c4f1f6a45c082df30d80514f7b57e07d8a841b3246b5a0a08bdce3cc2a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0xf9c1a1cfd6e537b2410a372f18cd69808bcffc951c35646a208c7c431d8e3d86", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x3193ec3bf9548cc54895b516415229fd0c5054b9ec08f179f5dae8d2d5fc7f64", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xefd9ecfb1ab0c18fc07af22abae86791f06c464299a332a20389f5e6315f0b39", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x3d42d65d8812e1351a003ab46358f51c04bb7066ea183455438fffc96894ff93", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0xe9720d8f23e632ffdd25ef3d89a423ac084cd3ff1f4a36334472be253af13a3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x666ee9bce4f38fa110ef04538855ac91253d48d11e435893a6db865a30ab3f99", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xb829e1de11c3121dbb594326c9e469cf8cc06dc2a7a0cdea02fec7340f4972a8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x718c49c2c339e4172e1bcf105fcf8ff9b67555f542af27b5859197261452f115", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x40cdd3dfab3dbfdddf450acf58aff0fc1ecd090436d407b55ea0240911d06ef9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xa88e80823d81c5f5924628e1ae4ee5e25085f2857b3cb169329d974c1facdad8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0xb31aad14f6c2ffe3dac80cc75c6a7ea0ad998d64a2c96af23253aca8b55f0a4a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x6f59d3b0bd5c2ccf5234624a2e71966965dafb70c34e4f9a7aab62180cd0e12e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x79179d362962b3be7239fdf12e52f138d66229156585584c42c1a266e36b3ae6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x29c2d0738da0ba78bd697f33389858ab0503311590341f7486d1b505df5fe32f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0x57e844c1fa66e4d973f8141fe73a62c1792afe8ba0545b0e76e0b0fae61a26f6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0xc8230b8b034c4cb05ae3df33b64fb781d60f629b2b38f1ce25b6ea85881d39", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xf77ae58c64022e410f3b617f1ae6554b441ccd6dacd5ad4b1e800135a326db57", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0xfb5b8e10d225bacc4bee52f8a778d9b2d9ef9da3436702999f5fe93939cae8d6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x54f0bdc01dc9e1ddd5ec863aad2876cf85752310de24a3281c0f3b8d272d23b9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6e0eba8085584d44690c58a2095dfc5a252aab6dad7d2e8332ffdc0b2be9e80c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5ee1a3337a2e07f7ffee7ab6b74cc56d3cc0c7c49ccf15d468e19c848403d9fa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0x8522623bca907ad4a8a95b20d8526cda77c36e92e83c88d69dd22b32297777c9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xa4b805c8c6e949311e6b9caf6ac8e7c6c150e60471549c3b27affc396db78f81", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x94f449575cb4cf4c1f0a44b78132a2483aa59f5d8c09cd3fde916de144748e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0xf873487c6967f043e05552df442838054cfac0c23e453be5fc14cc99396ec796", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0x18b4bb5f98d30262118c47bfef713e609d82f89260be1bf14eec49f6a61d3082", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x562a956ea450676ee7c2692d06ee7718d90e56df0710769f1bdf9096c2ccefd0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x9cb545cc05ba67dc7db10dfe6cddff725e4089342ec49b49eab628fbd25d870b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0x1e4d99278e387eefa7711ea8d69cd7d84393fec3e731a84e13ad0ee9ecdabbd2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x5e4fb0bd511d26fcacd1862f5c6ac5a801222958cec92e3543e94dab20369986", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xb809392b86ee59cd4ea3e9869a1701eb431448802f7fa03063d0e961e9ee5103", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0xbf32e6ac7fc32c586baf790aca5ff5055bd31415bcaca73ba4bcd3d6c6cfb337", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x7fe0632b4a5e8852da7a0b2ebd80f996dc042e3feab2dc77987b8e268703924b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8e61bc36cff09d077c79e6d45cf50462d95ddb05fff69ea94e4c40ecb3c7a487", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xee990036881739e8f61c1175276564f4caca1bbb557c04c45226bc37d0dd6076", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x12c206231ea9ec51833816337606b1a26a641a1b5f0574040e61ee47cfba5b98", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x414887fbe6a1c9a767e174ba7eb4b0d825893720a03741595dd36870c3baa80", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x2488d135a22d6b5d70049b141a96cf6db083d12edba0d8da70971a382f3b2bda", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x8a9917444af76273f0440b4b1e99b8d0b457b62d209cdee14df211ea71e17c52", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xc99a007ccf32f7ab329d0638de0d3b4c2b1729841232569bcc307cd5121742f8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb8671a26914a818a21bd3b40d04f784ca9a4e81a1206d9268aef34792be6f105", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa231bcf011d27334c4b9727da857716295f9294f89f5d23d529e293068719609", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0xf301a6c22f8c800df83d0d2d1d2ec6233f64fc0f13e78acf24f0172ed3b2a285", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x1741b533af4d4bdd0179d885e89ee0c4f3ea73fc8a5329b206951764900eae13", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x4afe72617d8dd95c901166d5505f0bf5249e93936f2efcb3b93ad9ff71f196", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0xedc423cceed0d7f4d1214b15256bab0590afa38f6d2ef94887c60fbbfe246abe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0x583269ca79756a64855b26c12ab70ea8fbb7e307cc00867c04717b724a609091", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x724c7829e187d117b0f55412fc619b88a81e6517c1f3e715b5b7f7174598509", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xe663c2cc052e064d6668ab17c6ca8b772d606a30ed626708f53e08cfb9cf23ad", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x37910081e7c304fda3c6fa11851adb8b754ebebddebca591d60d10adbed5278f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x77f8c0ad25ac782c87792060b8a24076f615cb445e2122b98b17e6f803385478", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x2a8d306cf835a199b13ac6d942cb607821ee0a120570a1c114e8c0a6e52a8fe0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0xfe4e5d001d9c0df3283ef266cc2627ddcc25000acda4a73b40cf7d2fae5b774c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0xad10802e29cd8fe6a8202405c3598ce73efffcf1b117588e8f36be31148102f4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa003da0078e58b1d440f27e4e71378f2532bb63253521e4fa6165272107163b9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x619af4903f71fa5d3d1c05bc92f4dce761a0871122a03a2379ae8cd149e5cf52", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0xfbd0aa14235307967c6739548dd12d7acdb1b7d22bdfbdf03c4e83f24ffb9e05", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0xa376d16bddc6f8e60cb0e396100367c4843ac37de05d5e291ac4adc0478f7059", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x652735b33e3085f4c14ca199633340688a0a49e97d1654eec080bf2595717272", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x2bc4e0107d59ebab531d6bdb9b28ef1e837ef5a4ed1751ec699472c6d2c14351", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0xbc3ae9af58b578c0c87596d0300025c42b403145107af3730d7caeeeba0a172c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6b26a05f6b1f24124a84c4152b47c718b31e43fc8222d43e61ff02cf9783b323", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_10-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x425a979803eb097cdfb9a1ffc148a026ccf556e3f68e58f24cd72c37e80994af", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0x64f948fdc5630d35742b6a181564a93c6d0e835dc8e4ed37c8173d9dc0d8ba08", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0x99cff7990d18978c6fca4efb916561258cdf0d90a069ef318891634d2b52ed62", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x2611f15b1c051de80c9c65f49455b0625a8668b1b9efb2816309e04a04ce150d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0x2b1e161cd2a1afadd8e698052e676db82c472d9036a7e203957f5024bf9bb408", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0xf7583b2b282177f1705887e12803778d090413155a0fc5a3272c5aa4c84066f7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x27f94c91438fb9b6ff415f5a2508e5901a02f1957a1f3c8f06273d58530f6958", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xab40a63351e21726b1c961aa9a8940564ccdbc0d0e4a2866fd8e23aca720ae7c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0x2ccaba74d02c0cdbdcede5d8c50847b486816361694e91661895f960c073f2f3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0x775f7d774279310a4ca304e2ea0c0732aac58cbbeffad3c19d39a939e22b83f8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xe3354291d3b2745857fc0cab108af23e996198abdb6a93dbfde5cd94a5587dc0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x7ed04f6688c65d33673cb221419d3bc259a21c7b0746a2c2bab8690c6cc3087a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0xe291fdefb7b4e2bfc348d6eb11302eef6d32ddf7a9e281470cde1c99a15f2bce", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xdf2b87947e59613440473309926f2dd863c6b0ed40c742417e03e46058c3e18", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x57316fe3172d2ab212d342aa894bf47c3b55466e98be1c498ea6cf1c4d636aa2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0xc31c813fb924934f9fcaf778283f3ffc4596593af3510dab3194b4b9ee5d479a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x55f5de4a06bde7f06a2e7e1d8b46abe237e8eebf4ba3757e408d3bdd1449deb6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xb2d0171b0aa33e6288c2c56a26ef6317c3b1c54a152901569a8f88360895f75a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0x3ba23ebeba17b1fc209b25673d01b6579cfcb4751aca5453a2a7ff5d4a333f8f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0xfae36ec6d0f183b2e8ace8d31a67f0a982618adb03580993f46bda1d8fed4442", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x3e3e7d74c02e8615607639f2e83873b7b716c0c51d51d203e25099d091926cf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4b46d40a7aa21618feb4e89035138cfe1841ad02a983b3959628ffbbf1e03803", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xefb31f46aec388c2ea0675e70eb067b8f326fd0f17817b7158b91a2efc476ddf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0xa3145e4021a12130211baf5c87ffa681cf1d570f033b9655afe580458dcc717", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x5e782d59046c530c72836605bd7f8a3c40c86180319a719061f5e39e28942b2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0xcfc501323f5c8656aea7cf256ad21a2ab33b296d5341e6233b359760fa70b3ff", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0xe14c1e7e5318e9cdf609e4d3c73f37173f588c98d81452b76aa102f9a31c66f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x12c1203daa7d069926b0a6ce425188e4ef882881fcbaa9c700ccd45af3c328dc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x74cb8f057bd3cdaab4821d269e5bef38dc34eb6eac6c15cc2102b5dccb97539", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0x19761689ed5d15f30af364da7d3e97830868f176f0d706e535b878911fae5837", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0x7d8fd0c4433d61e488b365cab6bb208804ef859eb0636e2ab0979d4ef9b42186", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x35a13feaca854e8fc7f59f6ed79c6c5a45c0231f74101031141607fb826e40ad", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x474a1314beec616a41dba6c5760e593a045c4dbb266e86b44103618c36bfbf2c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0x93ce2afbb20635dfae5c068773681ad05d38fef8b8b3d014948afc48c0a5c03e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x1715ede1bb6245a59795baf765e0799660b0f9edae18b48e28f23ab3cb50349c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc305a60968d3adbfb433fca8eddbf41f16928b3dc5a297e968f69ee189541018", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0x5ed2b4f20807011d076b4246d3acad4c04dd401bfd27ee141885f3b2226185b0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0x9c2cd5c02984ebbeae84bde2f101450d34bf2e1cdaf0c48bf8d89a51e12bd2a0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xbcc4ebedb8222cd6bff969bfdc85e92f6b0b817e125396409514f4571762e7cb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0xda25c35f0e8fddd91794b291e059991f9c73531acc2eead322dff1cf955000f6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0x28a8fbd91b376d7c88bedb4e291d16fe339a7176b077b3a94d8548fd2a1e04e1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd3f75bcc3c166386ff965752fe4749390091f5bcf6b83704a28fca2436a7b329", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5c9a801fc80eeaf31c7a7e5e7f4a2512b732d36d8043a6a93ec3b42f02020b70", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x494099d6a031280f8bac5ab2b9f55c94d2b6b07b4fe3ded75d3df6d27b72cf27", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x96ff908bd9186315553dab45c3e98229cb96ba314700028e8591a79fa12e7394", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xe88c7a726aa826d28dda5b7f319e9574c9f30688adb75e0677c6942cd7b47c60", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0xba32ac1cc4506db0dcc682ba1fc591e1b5829c0d4c70a71e987273d30adfccaf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xe11c1ff37f7b3c084792548cd2b17d7b8d76854ce9ce1535fce6bde392ca6e21", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5a2e481dfcaebc4fffd89e6e8c1f7a4e45ee4714c9bf915d087796a0f38132fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x967d03c937b0096d8d5a1c8970e751e50d7374beca49ecc917598d79d3e768fa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0xa9f846ae15fd2cf7baed061390f61a66e1ad3e0fc9fb9384f1d8d9d7892481ff", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x907c525bf7a18a8c227937225ec9eb44dad0aa54acfa80a7dce800b9d0d2ef99", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x705b0f22ef65c1b8621121c29ed1350f7816b03e4fbd1a1afaf7e4e6ae3edb9e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x25b1e343cb62537b77973ca710ac71411520629daf1b2cd0e62e88589a174f4f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x5eb54ccd8db56e5f1a0c5b712f5774dfc6b5423bb6b4f3f0af790a4969573c0f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x54b4c965bf6c7bc0fec08fe6440e5c36a7d67c4b4a5276df66e5404902a755b6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7c868019796a0f95c3b497c5a1c8df95153647a395549d8b5083b9417acba832", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x12d76a8fd8473a16cc48b496175aedad07f5558ec3bfde4870750e2903425d3d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x6fcdf59bb182bd17b68ee913630957949e89632410a2adb5589979e157419a2b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x87ccb86f3e22543a5ab8b35cb798d1766fbb890bd21610733235ea5a2052f642", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x142bba57cd3f654e32e55c7eb352e41cbe1d8061c5dcecf493cc90ea51119661", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0xde5bc6a0e34f4b7e962a69643d0fb6918c36c27e70bda7d4873dcbbc703b0a16", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x712d10667fe17c1458aa6c0b67cef837bf77f47e6872ad55a2cffcc2c571a721", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6139b0a55c27a7b002c0e257e4ef5ed0f2a3e171ad9cfd6ab4dea0cebd1f1ea6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0x2283751b664c588a76aed0120e9c4c4cefdada6fdce06afcf8bb9aad8fd665dd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0x68211ce6f896b2b71b8449400416448b11ce6e6b90b20bb501903cacca1c22ba", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x1aa6072efdd314f441b46189fc53526f1087b7fe17b5a8233fa8e573381887f6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0x51432cb91041cd22558aa8b95525e8bb204e0667b8f0ddb2db56bf40061a1b75", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x74fd2064cc8db7dc2afbfacd34bb16311e87fb3f87e3abe69602fc5089170f51", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x61bd56f2040a4cce300aa1570980fa1e46ced507b5cacbdbdd017ce003b8bd78", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x3663a37dafb3f92794be050b37083c605789a9beeb6fc0e32b3a0d98fce43401", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0xe9cb6c6f6d65b925658adced509257df5cedb0f6091505034cf490ea309294f4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0xfef6ae5c029339ff9f84a2444cf2d45be6802d49e667b76c6a08bb62e720b09d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x6072325e61010dc72b2a1a4a3e55462e4d5cd8d72720791c5b2501bfd8c31273", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0xcd5673d786bdf574182364cb52afe180a6625ea1b288dae8725b252d310c1119", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xd30de3bfa8f28c3d0df1347d54079f2e3f6cdec350fcad3d1ed98dd95fb6522c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa945d0e3586465aff9066fa19c39e55f82f94810190b993f89f8d9de00b04864", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xde5eb0654177d692199b19790e84e4672dd14dc60fd3e7a3790198751149e651", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0x48fe68d79b7588e7bb8fb15d18635e85a6f84cf70e652b12810e4639440d4454", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x8230789920303ff89ed67595b16b22190f0b9a2eda44aa7877b0457edaeecaa4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xbaee6ab64e88ff56cd27ed8ccbbc766a45b2e6f90f4ec5cfe0101c4b750d2b2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0x9704a1b89fb30e10187906b8b2a12c82149bf98ba955af1cc28b05c27f3f0b8d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x15cea5c504e448917d6dd7d0c16d1cd785c795816e93ed3e07e85f340d042a6d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xfbfc7ed997864d9b7ee454a4617874d30e7ddc0c01d6e861964b8e8739bef803", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1293b5bf24e1938d7eadefe8a02c87937baef02ec17dd89a3e9cae758df5079d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x1e6314ed730ae95e8f235ba4f2d1b7ba80ddf4b5d268d36a67bb6acf5881d281", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x2eb5c7d079da2fadd84a49e76af51b87e26075b45652d69521a7546c1111cb9c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xba484a107581579045da656821ce00f41c2f4d01cfbcaa709b638b3af582bb1c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0xf243638901b46eb160caeeb6a5d1c79bed403a97eac8f9a0e793a3d83d20fd9d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xdaa7848e9531598b58f30cb4dcad419a02deef5a83cd3aca92802f41bc34d63e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2a9e6ba6c406cdb483fcda4447068fb0d97f55a42e2b9de4edea48728680024f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x22bde2b3a6e03702be757efafdc25be13c4527d2128f4e2e54eae456e88cb992", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0xc95cd953ba860837a3e8380d50c79e4877c8a3e2fef3d72a1b9937df507fc5dc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x4d28107f3fa63cee7d4db696836b7a22be53b46f0377cc71332bd4a3c5e26834", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x470f9de0e217b4d9bfad38fa2c42a07220e8fde350347158af6e46125942076d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0xd839e86fbe849b3b872d6ea927cdcfd05ec79f851239aed390a831ec7888e3bd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0xcb525a0fc889c1a708544a1ad402cf04c4a43d9f3a48c9bb7f2df1618cad41f7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xc5f09b2599f09b0dd80a220105c6c9181dc11b70f12c3614c4ba35d3b2e2f9e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x7434d90b5c9a43d09bd658a34016fca5147f0016529b00039f7349f3fe3282f0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x466f4fa9cbf3a517d812d770ef88cf870f769c829710bc192af545b0b69f2fcd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0x8b879be8682a1ba083c67be041f5295e043bc7d609f420ed4a4729b0a585b254", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x9482fffafece9803bbb9fd0241939826996cf58ec7f706b989c521ae776afe71", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0xb4320f9234d11a58543f6588dc03803e989ca34f9d2d0fd1436bbf1f547c013f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x3e5a690bc242219a0e7ea02518a62ba9bbc3630a55829600428bd53c34850d18", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8162c1eea45b32f7fef819732eacd2344933a47ca02605ddca48523f419dc187", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xaaded8a6e42eb88dbd7aeb23daf760ec5397439ea062133b1f134b060ce18bed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0xa2c0f684309360e0b78ac0ef211545a00a548c670ad7d16a21413fd28901f734", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0xe51675ca0734fd4baae9c6b382a57216199f3d0b2b0183ea292885b84415bc95", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xf2356f7b01430754057940f395da236ce97e15a6ac0e49fce03ce6d562a13fe2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0xa225a1708d9d1ca348b53cd7950fe67fb7c0cdb5bebe3f13a748c8302b75555c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0x51924611c9c3d3f57f684778fc8a02a017a1f74b8e5ba23cfdc012c31402a532", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xbc22d5573dd78ca4256cbfd3cb80d6c48996c183b4c1c5ba6291e1a1fe6467af", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_20-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x696575f6998d6fce4d3cc71a7decb23a5cdc5b473ec011503faa7d30d4adddce", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_0-opcode_CALL]", + "fixture_hash": "0xad6f53e2cbf8caa4a214fab4e472d05bd9e5bc5e301b3e9f20dc1ff45fba2293", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_0-opcode_CALLCODE]", + "fixture_hash": "0x29fec72310d92aee38e1d8963543def7293188614bbf048a364da398c8ed9113", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0xb433702cd90c8bce3013803ad66e5a8d121f8e94ae34909c5708440a2953ec58", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_0-opcode_STATICCALL]", + "fixture_hash": "0xc1f73af143ba998af60a25e8078b37f974da9bb622ff9bd32bcd62138ae811a1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0xa72fceb60f0a0260e86bac5cdd7b0a55b0051b3baf257858a0954fc97332fb22", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb52d4dc5fdb3b9bb8610539ca9d3582d6a164679ef176322771f5cbedfc44301", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xdb16c422c309043a2294ef4ba2ae7a48f0cd2c79b6ac748f16907313ef8f47b1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_10-opcode_CALL]", + "fixture_hash": "0x6679ababec9f378ef0d4bb7e589393eb3b4dc7016630a36b8f230203f32391bb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_10-opcode_CALLCODE]", + "fixture_hash": "0xfa8564a1a83377226b77d1961496f2fbae30439d9d1e35d813dba96038af90d8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xc932a559bc4c4a72e265b39b4126aa5376bf73ea79a324d09b94273875993b09", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_10-opcode_STATICCALL]", + "fixture_hash": "0x4b16dd85c4c7955412f7fac5a6ec7e8ee28e5fb50e26bb21e3274198f9f9455b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0xd4c8a94f00bd35f334b06ed42cd18342fdc540c670f7ad0f1d93e3c7a60a8b9d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa450a9fa533069fa9dbc8d23f0869e0a3cb3df18ef2ba4938921b3d76764987f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x2b9c3866f476ef4f0389875e4e5969dcc71651fd2a1b7cafd0996818bf761bc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_20-opcode_CALL]", + "fixture_hash": "0x66d31e33f7fa00e7bbadeee2af0c3718c5a6cd1611814ebf36210a7b9800eb43", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_20-opcode_CALLCODE]", + "fixture_hash": "0x3a7618d1a272464c0fc26f258da3990bee5cbf74362a907dd79e1c34f1420e65", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x8cc95e8bbd163662fb77a3a0832f4bc44179bcc52f5ea87a553265c9e21af898", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_20-opcode_STATICCALL]", + "fixture_hash": "0xcfd71675123adfa10aa39739f674aa62fd5b6cebf2e3a44a0cf5ca2d794aff60", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0xd04a6e50ae9601ffd394d8d46deaaae218d2436b51429eb67fa275a004f548ae", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x7e330729358b0f830cf483a10304eb5d18264449e7e9a2e1a44ab0d14ff0c42", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x250132c3c1e6e0a156e59168857411b2855d6621f03a860af2f9f417a0aeacbe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_30-opcode_CALL]", + "fixture_hash": "0xe3846e80e5274ac79cae5a46ec3f121cc2798c652d737b63f94f7f989baa85a4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_30-opcode_CALLCODE]", + "fixture_hash": "0x9543a41d9c3bdd53ff41af454b96a0e06bc30f9b9ea86b500d66e865010ee061", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xc46ade98b58ad8589426480bd29b0111d3f946997ca03cf7dd2f7180a768a6f5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_30-opcode_STATICCALL]", + "fixture_hash": "0xed7fcded17b74646e8198a1e714f5eb0838038cfa8c377ddd225ccecfd92bb60", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0xe732f89f01bb9543b85f89d04c0a1b0f916af9320df3a5fe78f0197b1c10ae26", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x52c01674d8feeb60adb2d107cd0d7fbe8e266c0976f9a94c93b01963693f793a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x76a031daafe9d35e98f29aa158c7d95ed7aef5491b1549157f6d5243fbd0790c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_0-opcode_CALL]", + "fixture_hash": "0xf373440805f7760df1ba6b9735dadfd77ec68207f158cce441528fb5c48028ce", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_0-opcode_CALLCODE]", + "fixture_hash": "0x15611f37a0cc08f3bbc2911831e93b53997e724289c6974e072b19103311487e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x5de14b019d6314c1f36842c4e6fcb1849fb2db6cbdca622efd9f8f0bc3e7f870", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_0-opcode_STATICCALL]", + "fixture_hash": "0x5833f10eeb4542674a1d6d795c34a7d010f311bc256367aad3ea50e1fcfe391a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0x889a901c743d3ff8f68546585b88c30e92083c8645c51b534a74cd3f3c7d55fe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x25d04e8dbb236497f7551425e2f1bba26550f8502053e8621e95161814a08907", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6f536ed2595a94cb025ae0e6284d32ae3f71dff5599db3c0b6cc883afc3eecb4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_10-opcode_CALL]", + "fixture_hash": "0x1ea23073d5599bec277274f63eb9d6f5a4e9977d24e91cce8af78013822fb488", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_10-opcode_CALLCODE]", + "fixture_hash": "0xca03dd3f8914abb40adc6c804e6db97273d2bcfdf35d4b0ff5d1de76cedd734d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xb077b4bc0b6f510e65edcf44df73dc7be66751b12fd39ca76fe377f0974bdc4a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_10-opcode_STATICCALL]", + "fixture_hash": "0x61b9c0af7befa6526c09dc834756639c627cdf95893563fce069464dea28db6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0xf0fc011278deb22b9b3cb5174aebc12fa231618d80873ab2f8858edb4ea31710", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xee7e1bd1e9145f9d12f76d98e4a3d8ac025e18095c9f198fcc08acb148b7fab3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1d2f8cdb3867a417d36c4b1ecb45023a4fe8504e208b145937a5d9ae1b38526a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_20-opcode_CALL]", + "fixture_hash": "0x172cc2696e3dfe3b04f8935989c6fe3c84c00d24b72728e3d8d82773ff111920", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_20-opcode_CALLCODE]", + "fixture_hash": "0x49a9cdc7ac0ac563723a74d6119f78e0782245c92fa71d7a36e50038b9d22d7a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xf9a8481ec24a2e405d16f16bd6ad9832ba97a1c9115a6e905daf1ea019c6b702", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_20-opcode_STATICCALL]", + "fixture_hash": "0x315d6535b258c484a889f1d9122764133f6b4737ef7e29dec446b77485da5394", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0x839c35b3dfcd5b074dcc5612b2453f09720ffe02610fa9ba2211864cedeab310", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xaeb6d8cafe21be32a40d6ddf8e0b1022f9d362bf70775e7047e0444f43cad210", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x62646881464d6b15b605561b826b465edc74e14586cfd46ef61da6bb31e678e8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_30-opcode_CALL]", + "fixture_hash": "0x832bd1f1c4179f03cd74dc98964acb155ccb28b44e9190e0d53f1f3156d9965d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_30-opcode_CALLCODE]", + "fixture_hash": "0x52bf42ba754cbd71c391c9a92eb7c893c2570e223582c51e619dfd7d67ee455", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xc8bbf4987877ad6d877b6866784a8df866f6e5d93a96c24d69388364b64f4fe1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_30-opcode_STATICCALL]", + "fixture_hash": "0x29826469e8c2437e837ca48de233cc149d889a77bac5c1baf90e5cd25e821e1b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x4628bc47ccc0ce6a35c2c23d94f721444b4210d08874b5264427938a6abfe36b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x434dce627d69a9b3d4ca14a2012782f7bb7facf719cfa1403e05e1b82713da00", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x26ff58b020374c8c832a2252961cd286e147391d61548f6fdbcba62e0decf437", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_0-opcode_CALL]", + "fixture_hash": "0x6d777f5fea6fdc5c375d42935d3da901eb727c898bfacf3787deea8369a43538", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_0-opcode_CALLCODE]", + "fixture_hash": "0x32d8a0d17d10737e41bf70ec23facbe24b1040f9b6ba2e32a98c535209823ed5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x4143682151e1f4a87c1b586c88456c2e7e6321900852d768bdf4bb99f503ff9e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_0-opcode_STATICCALL]", + "fixture_hash": "0x66f9f85f79d1781e49b39fa7f8ab03025166ab15f14e6c9c1837e321b6fdbb67", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0x84f37b7a7a6aa518b340c6001ab0a8b6f4647330933496066333f2ba24736904", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb47c193fc532b7bef1d2799d8fd06d106eb82e7786c295081f4d7cfc5504f00b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x19016064f9ebd0fde2f8519b54321667287f6e6318241ed07d1db17b8a5cdff5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_10-opcode_CALL]", + "fixture_hash": "0xeef7761399091ff066c3117f66b89b56d8fdccf714beabc46465b967dcdd82c7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_10-opcode_CALLCODE]", + "fixture_hash": "0xd0cdb18293760c55b3197657a8ccd166dae7f93d7f4df281b482d3bcce296e86", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0x5cc05246caa532171e800e64680a5d9d66418128011ce3322e97af9e33a69c7a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_10-opcode_STATICCALL]", + "fixture_hash": "0xbce4d0ccc6d4725a75f2b36f9ed85cde30af29fa48f766d897446a13f85f9c43", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0x663d4005c6b0162271711d24f9abf81461082b614dec0dfc23cd78f49fbaffc3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x6fac8ac1d223645bba2deb4a3efd5c19a6d77316966c99eb771f99f64b508c4f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x90b8184311637df593fa07c9cc4186536e5eed4f86ab0975bee5b6d4c6bef69c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_20-opcode_CALL]", + "fixture_hash": "0xdeca4cb08a863a1c6193d35feea3c8534e1310956b8bd92139d093c8c2cd6386", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_20-opcode_CALLCODE]", + "fixture_hash": "0x6ecaf9492ad4590ad96606eada7f95999a0d60248796e24ba543502a25ec1c3b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0xd880ca46c8be18947042d98161a20e8022133249b3aa3287d1a82340d539803a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_20-opcode_STATICCALL]", + "fixture_hash": "0x2f2c71affdb3e682e0d3844e5e41d32886eaef196ac2870b3f59df6f5aa82887", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0xe07b52880652d6508ceeca398eaf411f087d30d61e3ce96d5c12c116c952cdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xaf12bdfcf28e4e44b776b50b821dd38dc9932cac8c0897a1f00852daadc28d7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x329b98fad062028c981ed2c7529c3806de90a01bbee791312e159fc5a9cdad04", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_30-opcode_CALL]", + "fixture_hash": "0x3e826b140cdffc6e0fc6d75630db198327fe99b1d96e6431103304846daeff16", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_30-opcode_CALLCODE]", + "fixture_hash": "0x34de46c83f04f81d5cb5eaf390dacb719b6248b54810cf6bf0f7ef2e055ac1fb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0x69ca30ff165307ad5e13651eb81f98b75fc82e0a7504ae623778d4eb6abb02f6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_30-opcode_STATICCALL]", + "fixture_hash": "0x3c2630d7886af0dbdeecb07efbee87e4b6dfb01bf26c30b82b987abca7edc028", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0xb8552a0b55e814c30abbdfc0c978f805a3797dcba58af07f6c1d0525507e6e88", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x19d42ad4b294e076afb9c487ee7051a111d8cc5b6917e122e20b7ca3ef78c88", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x1536ec0fb74ff5e535c2d757f9fbb69769475db58028e5bcc674e3721c71580a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_0-opcode_CALL]", + "fixture_hash": "0x559cd591b2647a6840c3505130bc4558c8a6b3a3401511d9eefc43296ddc8645", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_0-opcode_CALLCODE]", + "fixture_hash": "0x7b4a816acc827f7c7c33477dbd02ba9df047948f4597eea437371d303cc52ab7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_0-opcode_DELEGATECALL]", + "fixture_hash": "0x4133bc82072faf3e76ed4bb761b30506ce28813443272671adef348f715b232c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_0-opcode_STATICCALL]", + "fixture_hash": "0x53d6b1d68bb1be972f10ea6b49caa16db7ac07e97e6420eed88ff4c1208aeeb9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xee96dd6803c1800a1ba24af9479bc897ed264dd1703d05c5ed01693958ccf96c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x2500d6d7f37fd0b75255e5c3e22e170d82f5d9fa4dd84f618045530791bf0c4d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6dd6f014249b113114e3f7bf13b82a260f945355a6574f0458cda04af55d4c33", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_10-opcode_CALL]", + "fixture_hash": "0x26cb9452d2bfe51d32f7ada8f2e84991d32559728fc68565729f35439bdcbaed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_10-opcode_CALLCODE]", + "fixture_hash": "0x459e1926d9672e0a3c418da2a581725a993c393f6fa504cf2d41367c9d27d11c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_10-opcode_DELEGATECALL]", + "fixture_hash": "0xcd3bf27885ef9384d3d23640dbbf0216e1ea4885d5d16fe124c9a051dcb8dbd0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_10-opcode_STATICCALL]", + "fixture_hash": "0xedb0986149e51dfd46cf1d6175cc16ea978f42c95ac6292593eaa66738135c63", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0xcb336e909952c307551ab7e0ea7ff563e32a9a2cf6800c2fe9d9f2597c2eeeed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x9864861a9f6232eeb2d41a29fc789fee21c3ee9a0580c9a3e337479cb691d9e0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x8d4059a1ef46f09128375f714ea7ef746f6eea01681ae29274576a327c2b3a06", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_20-opcode_CALL]", + "fixture_hash": "0x8bdf03a7ad7b9a99aae2811641ae479d21fdfe792cd31ec0de23ccc0a1919b56", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_20-opcode_CALLCODE]", + "fixture_hash": "0xe4ecfb02e8a2e2d4b4060dcb57618689776626744a6aa71ac1083ccfa7e5a10b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_20-opcode_DELEGATECALL]", + "fixture_hash": "0x105a90817ae3bf9fa3b219a8403e9eae02d2e0e6cee50de95c0012e9b91dbfdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_20-opcode_STATICCALL]", + "fixture_hash": "0xafcbc0b94db703f63cae8efc702f1336607b40ca8676d3aafd7e29c68c30840b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x6c21fee894995734096412b9c10d69e7043d7fd30e4b007bf2837ea9443f7510", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5878cc526a76e30cbcc7a4b5ca78d24d80ef997699b12ad56203cd967c57c237", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x38f02f031b76e326af33bf21384e3e79d8f6d44c134cdf84a1761a9f15cbfbd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_30-opcode_CALL]", + "fixture_hash": "0x8cc79686146023ec59f45a4dadf311f259b21554964286ace7f5d089f106b4bd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_30-opcode_CALLCODE]", + "fixture_hash": "0x59870f312ac752c060a3ccf2847ebba2313fbb0de0c1f1221bc3d9c9fc8bad0a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_30-opcode_DELEGATECALL]", + "fixture_hash": "0xa5055ab3045e90499115f2d06bc5ea82fd37e39733ff3bf872e29e428b7f9125", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_30-opcode_STATICCALL]", + "fixture_hash": "0x92742592247321b3e2e637d8bb72fd92a8da27783409b8cedd78a25f685b8db4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0xff7dd9810ef051cb7717f81973e21f8af57901b1a4a324fd39b30c7a8c51f56f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xae092be17eb2acc5898a0029d4d9ad00dd768d5a64b31f34bca548e0d3106bcc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndatacopy_handling[fork_CancunEIP7692-blockchain_test-size_30-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0xba838860e91455a7e7f70a04890f56a624ffcaedc73bef273c6d3c510ed50091", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndatacopy_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_0-opcode_EXTCALL]", + "fixture_hash": "0x8735cd64e4a081dca464fde369cc80f7b196f377b4c38aafe2643d004127886", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xb77d49959d0c8faddab3f5ea9b4d5c71f94992f143a15139d01d5c4cd91926ec", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x5aa366aaa0b980a3c875ba659aac7aa8c874b33cf47e1363ffb64051c8d99863", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_10-opcode_EXTCALL]", + "fixture_hash": "0xb16de8997901c5a3d491763b728c26f344095a4017381d5047cb91980bb55747", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x38e3fc57f8543c2fa264463e2c3afb9d0f175f7ce1eaa2735921fd7051749596", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xdddfc34aadce151394b1a1e8630ab1662c4c59ddfce33003b7e25139f8c8f427", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_20-opcode_EXTCALL]", + "fixture_hash": "0x811f44389bc85d2448e04dfd4cbbf3fc575d2085a9d4ff023e5ce4374284ab7c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8745e905f5c1ba54dcec4451af6b986f64aec64a4799ceba053608d0fc88d66a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xa924634baaa37bb47f25a9f45a2736c39ceec038bd63a206485e2836eb078d3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_30-opcode_EXTCALL]", + "fixture_hash": "0x469995da1635181a11275d19e93496eed124dddd2c127ab8071525a4f60b5b40", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x86151e1169bb85c5378a035025178ffd7f10b136f4d4df1cd6e0a33438b65ce3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_0-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x488bb3b2736b80c3845d39e65d07de75326b75fc4a46e1d9302b3f0ad3d3f875", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_0-opcode_EXTCALL]", + "fixture_hash": "0xd1334cb3c9b07551f0802ce5b87289a2595df63b63dd9ef50921fc67cae03b69", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x27070cf089d9790c109392c2546907ecf93e6700f185867c870ef45f16684e2f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0x59906fb02493943d55726b2cf7fc432d59ba20c7a7584b56e3e2306adcdf244c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_10-opcode_EXTCALL]", + "fixture_hash": "0xf747b6a9e466669115ff76d9885651fae0f88cc759395c36c1e9c76a576b44ba", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa3602e2adb9d190d7c92fe2595007147107068dc54d0fdf6a89827cc5598b240", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x44db54723fd1b500c983d30bb0bd701543649d3a2f6442ba641df74c5c751d08", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_20-opcode_EXTCALL]", + "fixture_hash": "0xe178a9dcc490ec5b3c3adf07107dbd5d8c7e7832097c6cbc0469fa3cdeae1819", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xa2dc4eb4a260bed4f4a079b5f5d16bd486b0ec4f95462a302b97e316beae0773", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xab280cbc4d7940c8267037fd5e2eb7fdc9640dd7534a61bdf966550b226053d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_30-opcode_EXTCALL]", + "fixture_hash": "0x927bb19aa96a196ec5ab75c453aa45b8344d7e214a0e92bebc2b07f06b610777", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x929398a1cf8b697ce35c008219373fbfed963f8dc33e1e37a22efe6e81e594df", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_10-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x9a51f0150469682bac6d918ed43078ba1b9d19cee4df565b70a22758e23f6200", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_0-opcode_EXTCALL]", + "fixture_hash": "0xab98f3e9e64f5810f43105b8b25b17cde114b2e02878c6512b70ac6d665c76db", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x8005b41a6a89a8ca98519be56b393fd49e31050fb0b128a01374e3e5cd41a151", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd9ead72e52bc1c4f8434dc472f71d6d26d1c3fb688d420487b6ff07f4c28e816", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_10-opcode_EXTCALL]", + "fixture_hash": "0xae51cf7caaf564016deaab80b0e249a95a8cb5a18601a5b2f97ce0ebb89b9ba9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xe12fd8eeed3cb91d7e3385482aa9f23a7410212856f5e4a06c25a81cd238154b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0x6944fa4936ed4de56804700ad790fb231b49872cc0c644d3df2088199c4a50aa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_20-opcode_EXTCALL]", + "fixture_hash": "0x6780564c55de26323de13bcc5e00365a974078f3c927b13d7182ddeb60c498de", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x5ce096417bcd32ddce5a7ed745bd0d20cbdefb38007c9f2f82c988d3ad81b843", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0xc2fd28cbfdda542a3fa578ce509c42d57d82b50d02ae1528038d47717fc4bb5a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_30-opcode_EXTCALL]", + "fixture_hash": "0x9deb28a0d564b5a22073036cf1cf6e9ea07c36b793d93e05da0722311ccda3f9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x119c2f36d4fadf23c5d0c997f34e60333b1bbc68bab92d4a01cc6d6176e37e13", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_20-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x4ff1294a71482fd51b23bc01ba9c3ff3dbca1e3aabd450a8f85a0f1693337b5b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_0-opcode_EXTCALL]", + "fixture_hash": "0xa9a32d54d06cdd2c1de7d552f493b871559109f120a9b9caff6d671825c02f59", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_0-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x69a04f24c3bc0da36893b51e4895f4891113b18b1541862f5c23b95d3997b6ca", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_0-opcode_EXTSTATICCALL]", + "fixture_hash": "0xd8d8ced9c5c7e6ffaa5165c8fad8fd12ed508cec3e7a1bbab1bf9c306fb5185", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_10-opcode_EXTCALL]", + "fixture_hash": "0xc3643ce7febbc3f41e25db8a000b0f019d338698eda5433113a52c9f94fb5b9c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_10-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x50de980cfbb55f2f93837349d745c92c83a6044f04bd281b3353cf3896b4710d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_10-opcode_EXTSTATICCALL]", + "fixture_hash": "0xf7164f0f00d02ef59bc3e6ca7295e1220ca644d91db16e088fab20d68ed105a0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_20-opcode_EXTCALL]", + "fixture_hash": "0x65b806b7fdcde72c75439f5bcd1a23e20224c6d4e6b54fbcc0eaebe7d337ba6c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_20-opcode_EXTDELEGATECALL]", + "fixture_hash": "0x390daa04ed6956dee0f1783e03b965dfd758708c19c43105dd41629f50c462c0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_20-opcode_EXTSTATICCALL]", + "fixture_hash": "0x948b14ef83780497a0adf983ee06f94cab5be5ac7f7fe1e9c02f5c0283687141", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_30-opcode_EXTCALL]", + "fixture_hash": "0xee8f80733aebc6d57334ef400a2712b173887a68837f4d759d24c8b5c512c762", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_30-opcode_EXTDELEGATECALL]", + "fixture_hash": "0xd47997ff03e3f26f1ca60a2eda5d13abf8326142ec347afbb8458434c07e98c0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndataload.py::test_returndataload_handling[fork_CancunEIP7692-blockchain_test-offset_30-len_30-opcode_EXTSTATICCALL]", + "fixture_hash": "0x63c5d8f69fdf0c6e9915d6d7b8cf0adc3786997a208292378f6a242ac46afcf4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndataload/returndataload_handling.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x5221d60de8c91e97dc6f629c826201f8e9e3a7b49dcdd7a0c8fbb0c4e49268a7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x9b5e44e5ab7b47ca34d5841bcb1201afc8f53b6008b0eeac768872f3421540f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x5f59c385740c133cb840b4c6bc798c4dd03564ff39e7fcf7e378a4215904959f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x6e9fbf1efb33b18579442b12c3d7d2b377d6fa65d98aeb333fcc1331abbed894", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x6746eed0cdf4e345b4e7261dc3ea39eef796d753b02ade7c8a7486830507af51", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x8a0df374025878e623c4853b777dea0afe6ce97a9b0fb03336fd537594a188d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0xf3af1cf11d2b29632f2327a322bcc4f680342e25e9a09e090992970f78e27797", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x5290428e9d54379795ecd62bf6ef209e7136d76754a400205c36c0a5333f5cf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0x32e88131f3bc99ec4926b401411da783557323120d6c0315bc91055055b9c6a1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x6a702b3cae45738f48a1d678b5ff94832afc871f3e84505f4cf4096a6b782666", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x8b4a10ac26639de0a9046deeead865082c73b76ac9fdb0c6cf1d37a489ae346e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x4d7a5e35c97f3be4eea79332c39978dfad2dc0515028da4681f8a2eff0c85b58", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0x2ed746b197f7918f6957ba5ab2acad35df65908ba1a0ddf04240a1cb6eac8032", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x481df631cad7474aff778623c65b69696efa1e8299796088cf6e4e885eb95da6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xa8939035bcc67f5844f7d70c3806e3b4f2744fae645cd3aeb7ba937a9145acc6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0xa6579b6c3f7c452cec46c78144af1fd0845e729a825ad0f608604cb82b951944", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0x76d5fce6a9245ee2321acbb54eedeacec1e0dd2dd0ec316712501861148b8d51", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x9703346407996a32c0027a08e2d4c241ee45b2eb7469588761cdfa76b0458920", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0xd77bca5cdfc7fc4a6870e50e31ad7fd018ad8e1c83d5e5db07338735a6dc09aa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x9fe83189d1385e0ba2efc41a8023446bf134bc3b374be412acca285df840e266", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-single_byte_expansion]", + "fixture_hash": "0x3a49a340332351f820e975c4cc1dc6c3e79ff948b87030662e963a7470cccf6a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-single_byte_expansion_2]", + "fixture_hash": "0x8e229c540c292db018026c00fd0b728b9780ce2b9d1080486091afc4f51aa042", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-single_byte_expansion_word_boundary]", + "fixture_hash": "0x17b76cba9c0eb03fc100a44978ca4f55b82fd1571894c1d148fa8661668a0eed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0xf78cf29345497515a90c607e1d9747694975e3584ed2e87a026f3a0a2ec317bb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-multi_word_expansion]", + "fixture_hash": "0x3079fb5c3dcba4723e67300b16cad0938dabbc429e61b77d6d2837952b3e911", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-multi_word_expansion_2]", + "fixture_hash": "0x4fcdfc8e767b00afe343d4ad1e920984932d47d8895e0f6866aad9fac5d5c93", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-zero_length_expansion]", + "fixture_hash": "0x38abd612c385d7c1e422f3679708fc23828fd5632470accabfa6983ded38a29f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-huge_dest_zero_length]", + "fixture_hash": "0x38eeda9d0ed01a58d66401d42a2412e3adaf6d0c2fdd574eada1006fa5001769", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-huge_src_zero_length]", + "fixture_hash": "0xa35c3402152411bcde2fbf4659b6537da4f5916aa6444f959cc29845e8e8cad", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_True-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x10f27d1f2104c2019bb099eb4dcba3800c41759c49842fabc876bf9e43a32ad5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-single_byte_expansion]", + "fixture_hash": "0x606d7837abd2e34fd8c66afe9a28c38cb26862d725ff04ae220e0686a424107b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-single_byte_expansion_2]", + "fixture_hash": "0x698be387f457f07e528459a80ff4b20d2d588ff22a81ce8a5f3414dc6f31e695", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-single_byte_expansion_word_boundary]", + "fixture_hash": "0xf87afcea6750cbc04cd4f931f6b6502da7d0df8fc41ce6fdaf2e2afc20a159a3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-single_byte_expansion_word_boundary_2]", + "fixture_hash": "0x7000205988dffc3b0c8003a027d9bd15f4834d2495f93067964f069f58493b4c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-multi_word_expansion]", + "fixture_hash": "0xdb05ebefb9a6635a550fbf71b3f3e1d9a749252c8fead59b0b3f5b8bcf5926a6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-multi_word_expansion_2]", + "fixture_hash": "0x397afd6f963f20ec6ef51bde4578a3df71c0ea5199da858c857c81f2c5e3539", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-zero_length_expansion]", + "fixture_hash": "0xbabf3f6cf5f0843f0668913ec5c5be286aeec461094e2e369bef23aaaa8b8c5c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-huge_dest_zero_length]", + "fixture_hash": "0x6d32616e1f3f46fffd4a46a935c7c0a788927d38c8f6c7101a8581d4d7bb1e91", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-huge_src_zero_length]", + "fixture_hash": "0x5bfd899872a3f4d13cb5b593eff7c09d320644e64913c7b2f20ce5f547b7395c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False-huge_dest_huge_src_zero_length]", + "fixture_hash": "0x44441da0b62c59f90058f1342be6811da5fd0bdf7ee4213528e7b7278606c81", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x2e88ad3f321f8f2548e91d672b753ceba5031c1c86773949ef939f3b372db2d5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x5bd298208b8f90905e32898243bc13d7250aee7b19162fbb9aa21ca14d7c11dc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0x81a4a4a3fc67b7325b354d0c4ebb828a0f5f21a4f361261ff5436290e4fc6db3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xbeb752b2f5eaf6d72f5ec1f6975f251ee5cd8d8404582601baf3623a6e25fb2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0xf75fb3db056184867a5e558b6a660574e5a5a5332beef73de8c3fa73016d6232", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_existent_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x1f399cc8b7d4649b6f52eca30fb758a8c59c11ba8303c37829a28ee881229655", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False--max_dest_single_byte_expansion]", + "fixture_hash": "0x6af984953c5315f8ce3976dcc519dd86d8813720feee3ad6c1233d50cc235397", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False--max_dest_minus_one_single_byte_expansion]", + "fixture_hash": "0x649faa36d9fc99a627b2ef7bf94d22df27a1d26c7669c2edc6c1100b26ad17c6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False--half_max_dest_single_byte_expansion]", + "fixture_hash": "0xe22b54e0388a43a3db73eedea1707816ffd864861423629f74f2ab97cd523cbc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False--max_length_expansion]", + "fixture_hash": "0xb495e1ea2221669f6c1cc816148d3d2cc97dbe0aa87e1b1e1d2023aab61e5414", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False--max_length_minus_one_expansion]", + "fixture_hash": "0x51c431bf6b527fa473ee52b6b879cf6afe84b7fea5bf3577e6222544bbe72562", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip7069_extcall/test_returndatacopy_memory_expansion.py::test_returndatacopy_huge_memory_expansion[fork_CancunEIP7692-blockchain_test-from_empty_memory-successful_False--half_max_length_expansion]", + "fixture_hash": "0x298cffe2d052d2221c59fb2e2449b5c351c05902a8a4d24ba261556900cccb9c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip7069_extcall/returndatacopy_memory_expansion/returndatacopy_huge_memory_expansion.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_zero[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xa5cdb6ae0b6fc94c7a9c68516ce3e525d93d3fbe99a7e27c839879ffdbcf5a85", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_forwards[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x1f27ac7b8685c0304e60c74b6e812e481fe9f2940bfc1b30cb43cc8f8528de71", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_forward[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xea808f5b21eebb3a5036cfb73031ab7ffca97706a1be93c7f1dcef842e68319b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_backwards[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x7c3bdecc30d88115e110254e9fee66813dcc6cc022d81661c79ce447512ebe40", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_zero[fork_CancunEIP7692-blockchain_test-False]", + "fixture_hash": "0xf637aaacafcc6e4e028493487360a374a5b5416a3bb249eac83d1f1b0462863e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_zero[fork_CancunEIP7692-blockchain_test-True]", + "fixture_hash": "0x57894f521632f6d9d64ac7132915b05e4f3b1e8465fa67260a44ce6a91079a58", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_max_backward[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x4dd4d91f5f1443999538ea541da4811266d24550900e7dda274aa9426dce65c4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_max_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_backwards[fork_CancunEIP7692-blockchain_test-False]", + "fixture_hash": "0xedd8a0055429a3d9da4cb899c1ac5379869eed00dbe2870e8bf8488cc6a500fd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_backwards[fork_CancunEIP7692-blockchain_test-True]", + "fixture_hash": "0xa39c33fad12d01be757e2035cb13b58c8c5cdff28ef9301df323f45e002feb30", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_forwards[fork_CancunEIP7692-blockchain_test-False]", + "fixture_hash": "0xf7fe1f82f4e8fc65d8001cf40e98b22c0533f7703d40a2af0ff9dfc0d46fdbdd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpi.py::test_rjumpi_condition_forwards[fork_CancunEIP7692-blockchain_test-True]", + "fixture_hash": "0xc432a321d824759f1666153782272f536ace6022a0b2b927accd487d58af6cda", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpi/rjumpi_condition_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_maxes[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x1992a68bd61c6ab0dbe0637d0aa94d053131d72481ecfbfa7f407a21af406e2d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_maxes.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative_with_data[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x6742ba3d12e1d7c6711e16cfadd4b3b6504260c9d2661f97a6cfd32d3b7fd671", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative_with_data.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_zero[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xcb8140df52512343c77083420b1696d705504922e307d3c6d7fd83b40c1fd243", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjump.py::test_rjump_positive_negative[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xea589ede17d13caa8eeb96ef2fda45122d4a042063ced48b063b0a193afc00eb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjump/rjump_positive_negative.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_forwards[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x85afe1eecd8f2c300b2580ef0f6002d13c75e0cd46b2d69a33e6e2f498322518", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xe069c59af6a51b971e3d288dc2ab2d4359d0dd26650dcf124bc3fb618ef8ce1a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_backwards[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x515b204c1dcf0409fd98c9d31a31a32a7bcdd6f4cd9b300782b5390e780f27ab", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_backwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_size_3[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x9ada3e6ac823430557a33205031d1edfbddfc6da2c3aca9778d8834fa9116c3f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_size_3.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_last[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x590c0737b34a619fa04469da2dee1009d3a2d0e1cd97eb1d0b310ed7cd8ceeab", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_last.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_mid[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x9742ce0678ac4ac8e9932fb30e6e0d31749c684b835a417655f380209485f429", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_mid.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_full_table_end[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xd112dd10f6962f24da8c7796ae6ddd3f7daabeef7dedffc1598ac79ea541e94", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_full_table_end.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_max_forwards[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xeb88440c24d8807bb71069aa5899bc84d1004c6041a58cd3e406e15356bb69c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_max_forwards.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_zero[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x39a13dfc2934b87d04b232beb5a5e527770b2e0c2ab74cb8a077d120f0a77c03", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_zero.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t1-c0]", + "fixture_hash": "0xe86bed1d8eff01e4719a9c7a70126d7075642a8754b450ba3a3566f0381fe352", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t1-c1]", + "fixture_hash": "0x6186857a4dfe62d5e85996e914546ff1ba7878651d87823890a70ef7870a95cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t1-c3]", + "fixture_hash": "0x990c7df5553d50541aeb6557ee682be720ade49ab6cb03852fb1f588911bf85f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t1-c255]", + "fixture_hash": "0x58a69bd89edbdd2a96ce640ca6aa27e1b188f5da5c9ee63533947e04059fefdb", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t1-c256]", + "fixture_hash": "0xe71e5ffbc67ef985ecbe30ef3a5da151cb8d77f545008fda8e417ad590a3136d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t1-c2^256-1]", + "fixture_hash": "0x238ecbe7f1735ef46ed95f7a60a703acaf41bff8e0e87901e7067be50f309f80", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t3-c0]", + "fixture_hash": "0xf4952cb2e00b114e9d4c20b35f93770689dacb1db2e717f889a9d83ba113fd64", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t3-c1]", + "fixture_hash": "0x97bc8b60276e8ad4b38c0ae020b0bac36a485e3a536f3c377d83e3db6ce873c0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t3-c3]", + "fixture_hash": "0x3498e88a5692cb3849ca4258137d2b0172f902d5a1dfe31f104e0538abac6890", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t3-c255]", + "fixture_hash": "0x34ea09d1bbd360df0a5a6d9a5c6e9d5d282f28aa0a600fa51af78c1c99f2b93d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t3-c256]", + "fixture_hash": "0x1764aeed0e58ede838db64c214eae643fdefe3a5444221d5fe5e9364682a509d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t3-c2^256-1]", + "fixture_hash": "0xe3e354a743259dd7b59699f0d949d103a4a02e4709c21a9f9739205af41c2c2d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t256-c0]", + "fixture_hash": "0x59e2cce5365044a93a39b940bffae838ad41456b2db7ae1d24da15760f2d4fc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t256-c1]", + "fixture_hash": "0x9cdd6207430c2baa031b607458d44eb2179b938f0db926410276f21774096551", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t256-c3]", + "fixture_hash": "0xc29d5414afbcf92ed8fc176deb4297669a427ffbafe00b9f6dca060bd77dcc3b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t256-c255]", + "fixture_hash": "0xdd79d360986c467a0ddc01bf65c9a56303a8cd1ce6f5407c324f66faeb3f05d3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t256-c256]", + "fixture_hash": "0xe70e825e4a0877cb7ad9f8cadd41f91ec5053b099e76f9751eadb53e2b15b9fc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4200_relative_jumps/test_rjumpv.py::test_rjumpv_condition[fork_CancunEIP7692-blockchain_test-t256-c2^256-1]", + "fixture_hash": "0x445436661f6528ec30bc1f742d02f8a828974742cafcbb5f5a5323907957becf", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4200_relative_jumps/rjumpv/rjumpv_condition.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xc93758fefd395d6189fea997dbcb9bb51cbb67e078869b4e7b314b11b4632910", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_overflow[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x621682f6741bc289a98b268728bc83f882b63851639ccc4cc4d6a84cbde4b280", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_overflow[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xd0abdc99f409f38822d214c7d85b59058adf4fba962c72dec33b53ce780c6fa2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x4a4941a2aa20c473938a04c41c2347b5042e3847446b2169ac244d7ad6ed78ef", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024_at_callf[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x9c80c6a4b97fcc5b259b043dda3ca14ead6f2565c7b6391e17e533793828309c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024_at_callf.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_stack_size_1024[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xd2200568499e7da5bb989ec6a4016615dd64e8d52379438fbb2779ecf21cf673", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip4750_functions/test_callf_execution.py::test_callf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x7878d96a12fbbd93445713249b0670ca8a4c3f187b0f37f81217aa4f4386c165", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip4750_functions/callf_execution/callf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_within_deep_nested[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xbf69f46cf1626e57cea6ebc0f437b286cb0a118f9e49af6ed4a18e9bd1814783", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_within_deep_nested.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test-invalid_opcode]", + "fixture_hash": "0xf9d16c277b3ba9d4be329922c4a3a1857ac7e15873a20791dbdde5e901aff585", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test-overflow_recursive_callf]", + "fixture_hash": "0x1e25cc97a06776f727a98467623bc76da4f4125771a9c5246b513edb45999d3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test-overflow_recursive_callf_sstore]", + "fixture_hash": "0xe5a4f783b40f55068305a04cf2bcd82ea143a22946c70b4f8b7f2c1d6862adf6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_fail[fork_CancunEIP7692-blockchain_test-overflow_recursive_callf_memory]", + "fixture_hash": "0xc89233e291b15ff8f86c9ddcdb27802fb2b2d0e68aff6ec999ca0fe6ff4d1d63", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_fail.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test-function_finishes_contract_execution]", + "fixture_hash": "0x5f132fb713cb72de316e6e378d37314631ee9837579ca2303afe3f4d3d341c0f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test-max_recursive_callf]", + "fixture_hash": "0x15ed11840ef916dac1673e66313f60f39dbaf9d2d03e34d7e5febc285249a1cc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test-max_recursive_callf_sstore]", + "fixture_hash": "0xeeb8796b13917d885f17d922db9f19909d44a9f05a4ffc0de94f4babcba32101", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_execution_function.py::test_eof_functions_contract_call_succeed[fork_CancunEIP7692-blockchain_test-max_recursive_callf_memory]", + "fixture_hash": "0x7916399e9a1d4a9208ea7ab65051aa27f26b22087d6c59456d3e0c1200ad4efa", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/execution_function/eof_functions_contract_call_succeed.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_extcode.py::test_legacy_calls_eof_sstore[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x85a65adf22c14e64035e4d502418b924ad8ccd5e9a019956f0bd628864597150", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/extcode/legacy_calls_eof_sstore.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-DUPN]", + "fixture_hash": "0xfcd0852e8249e279c41b9f7921e51b1402ba5bc457322427a72fb1d371a914c7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-SWAPN]", + "fixture_hash": "0x6d51082a4f529d2583eaa0a816654b86434d5c2075ddcf7b64578639678ae89d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-EXCHANGE]", + "fixture_hash": "0xeb921438f40e41d1e2e0bfce46b4b519eadbf2d5081991a81cfa157fed522a25", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-RJUMP]", + "fixture_hash": "0xcb4d88771ed7c54caaf728c4523a85d2b011e79f9bde3893615748e08528577", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-RJUMPI0]", + "fixture_hash": "0x4f01f817eca9b9a1407c3c2128a3cddef78b09b19394cb7c71ab9b460775a0d4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-RJUMPI1]", + "fixture_hash": "0xb97fdcc069606c1f35c320d0cd7366189b716e30d0b20fd0d25fcd6f12ca963b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-CALLF]", + "fixture_hash": "0xc680d560d794c8b33ae226bc49e4ed60f12b37bba35e4348081bf3f00eb0f10d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-RETF]", + "fixture_hash": "0x5c9495d5c9701771a05a03923e9606d64203227f03b9c3aa06023dc814684bee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-JUMPF]", + "fixture_hash": "0xce7f9cef85d678537eb103303e6dfb8851699a490787e59889c5f42407cbc6b7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-EXTCALL]", + "fixture_hash": "0xbe85dcab840938a4f0fcddb0ae4361152012fb3a30604834eb8200b827343365", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-EXTDELEGATECALL]", + "fixture_hash": "0x150bde548e5cc707336cbcda0a8dab971b49c5af706c44007d3a838f89e87ba9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-EXTSTATICCALL]", + "fixture_hash": "0x973459b2a91dc66a2fdf5683aa43d3b52efc6d2ee1be8863447d4417d0005bcd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-DATALOAD]", + "fixture_hash": "0x65d3b3ca4dc2dff212055e9deaaa57d6a8aaf66b13de03767c2abda582065b1c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-DATALOADN]", + "fixture_hash": "0x8393d8779643f7780e510a612df999a91bc504d6d19b32ce1cd7b7d91ed9daf1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-DATASIZE]", + "fixture_hash": "0xf3a03ba91ccd1904532a9316346cf786d6aca069125fcff2fe6303260cbfd334", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-DATACOPY]", + "fixture_hash": "0xb832112496b32ce646e98cc189114b1689f8a8afeafe49933972e61ea2776ed6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-EOFCREATE]", + "fixture_hash": "0x365e31ef1b9e90228a733efea4c0732cec81e2f8efe7f8146b9419c8dad5f8a6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip3540_eof_v1/test_opcodes_in_legacy.py::test_opcodes_in_legacy[fork_CancunEIP7692-blockchain_test-RETURNCONTRACT]", + "fixture_hash": "0xbddaa5a5678e851154f47b7d68ec633de101678c72049db3b6c191223b76c3ad", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip3540_eof_v1/opcodes_in_legacy/opcodes_in_legacy.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_dupn.py::test_dupn_all_valid_immediates[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x58df9cee52f7894b5709d638babc98f992b76765c59cbd2c550e84ad4496e6a9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/dupn/dupn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_exchange.py::test_exchange_all_valid_immediates[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xb4609b8952a2a0b60a970b1d8eea5f59b18e8e573dc15c2020ae699891e9e591", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/exchange/exchange_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/test_swapn.py::test_swapn_all_valid_immediates[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x45c48b5ec5029fa49b759b9ab66993b1d9d96ba30dfd5c5f54932baef1c9d5d0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip663_dupn_swapn_exchange/swapn/swapn_all_valid_immediates.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-2-to-0-so-0]", + "fixture_hash": "0xc2b416d4180674f62ed7c197e28202c0144297d09f9ca2c3f240634ccf9688c3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-2-to-0-so-2]", + "fixture_hash": "0xc9260eb3519907f4b7ab1d6b67f0e07e8a65242eddf225633d6619c0bf8f3f01", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-2-to-0-so-4]", + "fixture_hash": "0x6a7e5f3f7ea4bb32ca56028cfc13742aac91a11da30b4062fe32ecd277fdb994", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-2-to-2-so-2]", + "fixture_hash": "0x24f969c4e0d503dc2d1d89a2cc70098d873015baff6c994b595820bc04c29d0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-2-to-2-so-4]", + "fixture_hash": "0x1ff9ac2c0eea554bcb17f7b840a3e8bf07c9da95f3211873eee7400dde18b2f7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-2-to-4-so-4]", + "fixture_hash": "0x4591051635838eb5df58f51f5680f36cdfcbf2fabe99f26eb8ede6082020d64b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-4-to-0-so-0]", + "fixture_hash": "0xbb657d45b40765ab033a9e3277523c187c624ecfd198359dce4ea6ef6ee0f6c9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-4-to-0-so-2]", + "fixture_hash": "0x6ec8e6282cdbc2fff5c80f315a784a9b1f26395daae6fe50dc7a7adcf4d49c50", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-4-to-0-so-4]", + "fixture_hash": "0xbb72da758f9ed6275290eb8795169874cbce86915d619d8bc8e15491deecdb03", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-4-to-2-so-2]", + "fixture_hash": "0x1c99fc202e0f5aea5deb73a8297848c7d4bc56bf80a21275e6e1e0225c04420", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-4-to-2-so-4]", + "fixture_hash": "0x6bac074126f8c000c183bdd20cd8c626f24f839fe99f5ff6c5c77c6439572168", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-less-stack-to-4-to-4-so-4]", + "fixture_hash": "0x797b1918ec6ff517192873e7b87d5eff41f3d5fdfbdb615cacafcef098cf853e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-0-to-0-so-0]", + "fixture_hash": "0xd843f07e901171833abf0bf80eee5d43798b54b5953ac3e20d6640f96ecb47fc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-0-to-0-so-2]", + "fixture_hash": "0x2aa45e193f8ea5972c410bd79e1704ca2a228f7d27d9cb6474d92646bde25f02", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-0-to-0-so-4]", + "fixture_hash": "0x366e510bb107fe4528f6b41f8f6a8b9ec9742c9c98fbf7840ab01f35f74af926", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-0-to-2-so-2]", + "fixture_hash": "0xbe1393d0597818644052bb2c1d5156f73d3ebdbebebd6855ce592c3968b88b82", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-0-to-2-so-4]", + "fixture_hash": "0x2af4c0d099a3fca3ff6e22d765f518bd35dbbc60dd6aa4b278f780c71ef99dd4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-0-to-4-so-4]", + "fixture_hash": "0x6dd5f79bbca69c654bd67322b6ea34f03b7ced7482c8702399ca2385c015d4e5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-2-to-0-so-0]", + "fixture_hash": "0x5be305e6728872feeec87ae426d421f4d83ee045c861ad5388290bed1d16464", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-2-to-0-so-2]", + "fixture_hash": "0x26d7afcd4bafdf60138804b6e5d4aea671aeefe1239569bad5117358460841fe", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-2-to-0-so-4]", + "fixture_hash": "0x8c37cf99efde504e7cf578acacdba375f3524d6a185a76447a9a29f8bcc77f9d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-2-to-2-so-2]", + "fixture_hash": "0x57145c9f1b4e095925a9b589c1f42197808c156c4088699ce04fd15b9fe5e7b9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-2-to-2-so-4]", + "fixture_hash": "0xd19a98e3ab1fb5b4b0743426467108eadabe2f1c33004e53b71d7670f579f8ca", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-2-to-4-so-4]", + "fixture_hash": "0xde6ce10b0a00f54f56420055864c960e234e82e9551ed4bdd3416c63bab39a02", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-4-to-0-so-0]", + "fixture_hash": "0xbfa905d57ac168f7b04aa86337d2476a8599557306ac01f84ff9f531256632a4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-4-to-0-so-2]", + "fixture_hash": "0x9043d969f26de269dd14366defd386d2c9a6848057f08e8cbb6e4b94ee444148", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-4-to-0-so-4]", + "fixture_hash": "0xe1e7002559f107d71658c1b18a8a4c7740eaf6879d54eeebe1e128d056bce7da", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-4-to-2-so-2]", + "fixture_hash": "0x5be887b16689beb409c0310d49e4ede8e7f26c47730bb6529b5277d96c0bf8a1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-4-to-2-so-4]", + "fixture_hash": "0xe701695b7b69180c5b619c04d87fec55a73d0e8b9bfe05a048e0932b35252147", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-same-stack-to-4-to-4-so-4]", + "fixture_hash": "0xca48f1721192df0632a8886742db16753487e3178bdab62b8070fdbc9df73c3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-0-to-0-so-0]", + "fixture_hash": "0x28a9d403ea15188d0a5cacc1c50da1b9218243da7ae7ae87b04da7875d51aafd", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-0-to-0-so-2]", + "fixture_hash": "0x1b0bc3ee39d541b65395abe343221a9a1e36a57a2547d43684efe1b3cb951b93", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-0-to-0-so-4]", + "fixture_hash": "0x8567ba59849de3f0f6d51dd80fbc98f8dc77ad6913224961f4b0e84298a7932c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-0-to-2-so-2]", + "fixture_hash": "0x3372c212c02dbb24d750f3ce910325884d20f118973532198fa049c0c0d3cd3f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-0-to-2-so-4]", + "fixture_hash": "0xbf91999760f4f0a2574a1e505d84505cdb62b655b8b0bf82ffc1968e4ec39bd3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-0-to-4-so-4]", + "fixture_hash": "0x8ca9df081bc12b29f10469aa8515a5367ef55a2835748a99f299ce4e121bd812", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-2-to-0-so-0]", + "fixture_hash": "0x5fa60829d379001306db5be6ca6bd25f5673d01fa5b24619eaf68503855a20ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-2-to-0-so-2]", + "fixture_hash": "0xb9ae42e868253057ff4079cf6d2244ac341775cab0b36d982ebc1576a8559936", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-2-to-0-so-4]", + "fixture_hash": "0x2a124ca14e8b507cb34ed2a6a3f1df6f790f6c1d72c143a674b97709e547af5a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-2-to-2-so-2]", + "fixture_hash": "0x392f7c194cadffa48a7dfd0be11b075e3ccd548cbcd351fa6b51c13fec920279", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-2-to-2-so-4]", + "fixture_hash": "0x5f08817b4eab05c675e2239b4b74b22b255a25f14337249ce7b25021fa180a1f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-2-to-4-so-4]", + "fixture_hash": "0xd613b74a2db067cdae241a9302f2913933117dcadac66dd5938f3fcf671b0dde", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-4-to-0-so-0]", + "fixture_hash": "0x110de239a90456a8dcb04b70b209350ac2b3af75dd5d36ec7e127bc5ee3afa0c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-4-to-0-so-2]", + "fixture_hash": "0x8b8288658614fd8c51c2862697e81ad7b6162dbf540ae32ffbfc1f207fa998ca", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-4-to-0-so-4]", + "fixture_hash": "0x35c4e9733040d19d7287de174b03f52dfeefbe79834da9d5d66f08499267ead7", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-4-to-2-so-2]", + "fixture_hash": "0xf1527b9907ed9528e79270deac95dfcea7e254b70dcef98151067d6a8cc62c3e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-4-to-2-so-4]", + "fixture_hash": "0x7cb46bc3952f5dd491b4ce3df9c71fcde6fb0bb220ebd82a760ab093cb03a982", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_returning_rules[fork_CancunEIP7692-blockchain_test-more-stack-to-4-to-4-so-4]", + "fixture_hash": "0x621686ba55b4a357f19750e350dad04e1c69939a1d9ce98cf4215a1e13bae31b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-0-ti-0]", + "fixture_hash": "0x2986dc717011d68a04c6b6cc504140d5e2e487231042409dbe2fd8a8a207899c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-0-ti-2]", + "fixture_hash": "0x1df7ffb6b359277575cca636e6174b797bb229ddbcb77344df682d5830bde3ac", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-0-ti-4]", + "fixture_hash": "0xb4f19cffa4d2d427cedb4a17c3fdd3864a2fe551457dcbe33cdac0e90bd9055f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-2-ti-0]", + "fixture_hash": "0xff5a0048f007e0660d3f614dcca6a19b7262484f21bbf17964454b2f3d1aca3", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-2-ti-2]", + "fixture_hash": "0x8622fedefc1ae33fd592d2c83ffc3fcfc13ebe2d3a30c41345d8d859f5f12307", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-2-ti-4]", + "fixture_hash": "0xaf3fe0241b3e29c680b8039b89543bc063085006d2d6eff44b6c3df01f18cd2e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-4-ti-0]", + "fixture_hash": "0x859c3a5ad4c437844c6505654a98c3cb1b69027f8c5b30fffc75904979cac769", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-4-ti-2]", + "fixture_hash": "0xfa9b2d87c6805c7f1dee136038f3fc644611f90a03296dfe509bb7b5f9174511", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_stack.py::test_jumpf_stack_non_returning_rules[fork_CancunEIP7692-blockchain_test-h-4-ti-4]", + "fixture_hash": "0xee23929028b26f02f219b57f366597d06d96e0189a0ecb312d0e5831cb91991f", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_stack/jumpf_stack_non_returning_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-N-to-N]", + "fixture_hash": "0xcf08bebf9ec6328e0325dc72a9f7f4ff0df3f63ad9be5fadab90c2d5472d8541", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-N-to-0]", + "fixture_hash": "0xc0d092a13a6e77a7292dc318f42a9b2bcd57ef1aa1477779f041b0ca93d5a481", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-N-to-2]", + "fixture_hash": "0x175ca363dbac048dfe69ef87fec8cbceef7a1b5fd0e6f30705f329172720372", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-N-to-4]", + "fixture_hash": "0x20bbebfa19065467b554cdee58cb2bdf7077497d53662ef839e085ebf53f86a1", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-N-to-127]", + "fixture_hash": "0xfe06179a75ff2f4cf485087c9bf848e0cacbc01f18e52e4e777f00fd629001b0", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-0-to-N]", + "fixture_hash": "0x2f7d5af9246bba0af621a9828aa18e740da569d99328c296d9405098f6868d0c", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-0-to-0]", + "fixture_hash": "0xf7084d2908e4fa75c37f87ef3dcbe7e16a22992f73236fab927731f8808c6256", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-0-to-2]", + "fixture_hash": "0xe4cfd5ada71184e9aa335bfba9ca1e5b009ad3e3a8a693bdfd4e221f9667c2ee", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-0-to-4]", + "fixture_hash": "0x9a58bdc350e4a73050cdc81aadd227b16dfd6d4534449f4f46d81a100dd5901a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-0-to-127]", + "fixture_hash": "0xa607ce4f3aa07fd8236fd9526eb2e1106bcfc4048fd039b6a156e30103dab454", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-2-to-N]", + "fixture_hash": "0xb97e8c766a7ef9d0e858bffd3ef293f64fad5334cd8f29cce0d8433c917503f5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-2-to-0]", + "fixture_hash": "0x3056b9818e1ba2bd6c46e6107615a5c90a97945bf8d2c42410802afac8f65c7a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-2-to-2]", + "fixture_hash": "0x5e16172775b1393a559307233e2ffb6b4e1b40d4249fb7414e367245366e5a47", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-2-to-4]", + "fixture_hash": "0xe5a476e365d40fdbf27dd8ded2f371f6688c9dbd637e53a84b963cda198011e4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-2-to-127]", + "fixture_hash": "0xfb9fb4df6ce9f7461ffd64ce136d9682d7d2acefc556e05b23bc65d11e717e06", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-4-to-N]", + "fixture_hash": "0xb29b514822ad7950074dac1c9c177518d84bb8a655a10f8096e713d18d7409da", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-4-to-0]", + "fixture_hash": "0x36899d65ad3837641b71ca86a136564a01c8d82761e83717d4f7adef384d342b", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-4-to-2]", + "fixture_hash": "0xfa7c1dd437993c7574bd4a42826725355c252d0a1eac1011039a3c9e427cd56a", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-4-to-4]", + "fixture_hash": "0x56d324917f25e29ebe86b631d6a96bdd3e38c8888fc55ca2d21227ae956a790d", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-4-to-127]", + "fixture_hash": "0x969fd69cae001f20724ccb803407dfaf0097643d3c46ae81a0eef06ec47bae65", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-127-to-N]", + "fixture_hash": "0xa0a315cbad59d28d1dce5a74a41ed81908c41b2f9733fda6849f7fa93956135e", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-127-to-0]", + "fixture_hash": "0xcb44e98f3c55820ecdf8e8852b78011cd492bfb314315eed975016eea4f07de4", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-127-to-2]", + "fixture_hash": "0x17753c4923bb4964d1937b60a9ec0099ce3a744188f7f05d1f7a898f801282a8", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-127-to-4]", + "fixture_hash": "0xa1767c799d1ab62240874b760b553e12114b42321b10d76012df1f17a42de7b5", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_target.py::test_jumpf_target_rules[fork_CancunEIP7692-blockchain_test-so-127-to-127]", + "fixture_hash": "0x6f6b1f173840f9675e6398fa9b3aae084a5010b3db87e1936514c3ff46dc1629", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_target/jumpf_target_rules.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_way_too_large[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xda90dad9f1594f41e4bd2b0afcc8420748d19f8ae158fc8fbea27603a6b8aed", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_way_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xf1b7f568981b80c1b3b6e0dc669ea4e2362d9416e3d77834ce45fb2a5a911cf9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_forward[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x57310dfe2e97909032f553b12aa3fd601d1093a60305698475464c85f62fe536", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_forward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_too_large[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xbcf2fe6699c7dc2c0f8de5018ae7fb7d0a490f7feeaccd3069117badf00fb968", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_too_large.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_callf_to_non_returning_section[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x10b20e1b7e70e7b22a71445c07d5cdfed177c5105d5f09c0e9ce377e4b331d44", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/callf_to_non_returning_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_backward[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xd449e2a5447e9837570ae5082fc7782136cab87e5fffde2b3b8c34dea7a154e6", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_backward.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xfc2dbb71dc288c48bf1305fc09c0d0ec1a2b7fc033721c806bf9d7621739a393", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_size_1024_at_push[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x9dd7c5a6c6fd4fcdc78bd97d911057a9cf4fbeb212f90763941b62a19b96d0dc", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_size_1024_at_push.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_size_1024[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xf35cb552de04b96a38d4e3bf3d9e3ac9b1d9fe77e6997c54f72ff222153c520", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_size_1024.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_nonexistent_section[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x22b5bdafbc9428378bcbe579942d40bd0ddd780a8fd16010c0ec11e6fe7115e2", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_nonexistent_section.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_stack_overflow[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0xab5abd0943edc9429b68e2014897140d81c594410e8c55c9a226cef9bbf512e9", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_with_inputs_stack_overflow[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x30d36eb41011e4696a832675eadfa7e73cc1c05d22cc96eb75253d2ee3ac9223", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_with_inputs_stack_overflow.json" + }, + { + "id": "tests/prague/eip7692_eof_v1/eip6206_jumpf/test_jumpf_execution.py::test_jumpf_to_self[fork_CancunEIP7692-blockchain_test]", + "fixture_hash": "0x91b784dcd1e522ce254e8524564ea6522ff990891658aae164817a52a9b24862", + "fork": "Prague", + "format": "blockchain_test", + "json_path": "blockchain_tests/prague/eip7692_eof_v1/eip6206_jumpf/jumpf_execution/jumpf_to_self.json" + } + ] +} \ No newline at end of file diff --git a/tests/eof_suite/eest/.meta/report_fill.html b/tests/eof_suite/eest/.meta/report_fill.html new file mode 100644 index 0000000000..bb391b2ba8 --- /dev/null +++ b/tests/eof_suite/eest/.meta/report_fill.html @@ -0,0 +1,771 @@ + + +
+ +Report generated on 29-Aug-2024 at 15:51:00 by pytest-html + v4.1.1
+6850 tests took 00:03:58.
+(Un)check the boxes to filter the results.
+Result | +Test | +Duration | +JSON Fixture File | +EVM Dump Dir | +
---|