├── .git-blame-ignore-revs ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── build-evm-base │ │ └── action.yaml │ ├── build-evm-client │ │ ├── besu │ │ │ └── action.yaml │ │ ├── ethjs │ │ │ └── action.yml │ │ ├── evmone │ │ │ └── action.yaml │ │ └── geth │ │ │ └── action.yaml │ ├── build-fixtures │ │ └── action.yaml │ └── fetch-binary │ │ └── action.yaml ├── configs │ ├── eels_resolutions.json │ ├── evm-impl.yaml │ ├── evm.yaml │ └── feature.yaml ├── scripts │ ├── fill_introduced_tests.sh │ ├── fill_prepatched_tests.sh │ ├── generate_eip_report.py │ ├── get_release_props.py │ └── parse_ported_tests.sh └── workflows │ ├── check_eip_versions.yaml │ ├── check_links.yml │ ├── coverage.yaml │ ├── docs_deploy.yaml │ ├── fixtures.yaml │ ├── fixtures_feature.yaml │ └── tox_verify.yaml ├── .gitignore ├── .lycheeignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .pyspelling.yml ├── .readthedocs.yaml ├── .vscode ├── extensions.json ├── launch.recommended.json └── settings.json ├── CLAUDE.md ├── CONTRIBUTING.md ├── HUMANS.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── CHANGELOG.md ├── changelog_section_template.md ├── dev │ ├── coding_style.md │ ├── configurations.md │ ├── deps_and_packaging.md │ ├── docs.md │ ├── documenting_clis.md │ ├── index.md │ ├── interactive_usage.md │ ├── logging.md │ ├── precommit.md │ └── test_actions_locally.md ├── filling_tests │ ├── debugging_t8n_tools.md │ ├── filling_tests_command_line.md │ ├── filling_tests_dev_fork.md │ ├── filling_tests_vs_code.md │ ├── getting_started.md │ ├── img │ │ ├── evm_dump_dir_in_html_report.png │ │ ├── pytest_collect_only.png │ │ ├── pytest_run_example.png │ │ ├── vs_code_executing_tests.kra │ │ ├── vs_code_executing_tests.png │ │ ├── vs_code_exploring_tests.kra │ │ └── vs_code_exploring_tests.png │ ├── index.md │ ├── test_ids.md │ └── transition_tool_support.md ├── getting_started │ ├── code_standards.md │ ├── code_standards_details.md │ ├── getting_help.md │ ├── img │ │ ├── testing_pandas.png │ │ └── vscode_extension_disable_for_workspace.png │ ├── installation.md │ ├── installation_troubleshooting.md │ ├── repository_overview.md │ └── setup_vs_code.md ├── img │ ├── ETH-logo-icon.svg │ ├── Ethereum-logo-600px.png │ ├── annotated-coverage.jpg │ ├── execution_spec_tests.jpg │ ├── favicon.ico │ └── original-coverage-loss.png ├── index.md ├── javascripts │ └── site.js ├── library │ ├── cli │ │ ├── eest.md │ │ ├── evm_bytes.md │ │ ├── extract_config.md │ │ └── index.md │ ├── ethereum_clis.md │ ├── ethereum_test_base_types.md │ ├── ethereum_test_exceptions.md │ ├── ethereum_test_fixtures.md │ ├── ethereum_test_forks.md │ ├── ethereum_test_specs.md │ ├── ethereum_test_tools.md │ ├── ethereum_test_types.md │ ├── ethereum_test_vm.md │ ├── index.md │ └── pytest_plugins │ │ ├── filler.md │ │ ├── forks.md │ │ ├── index.md │ │ └── spec_version_checker.md ├── navigation.md ├── running_tests │ ├── consume │ │ ├── cache.md │ │ ├── direct.md │ │ ├── exceptions.md │ │ ├── index.md │ │ └── simulators.md │ ├── execute │ │ ├── eth_config.md │ │ ├── hive.md │ │ ├── index.md │ │ ├── remote.md │ │ └── transaction_metadata.md │ ├── hive │ │ ├── ci_integration.md │ │ ├── client_config.md │ │ ├── common_options.md │ │ ├── dev_mode.md │ │ ├── hiveview.md │ │ └── index.md │ ├── index.md │ ├── releases.md │ ├── running.md │ ├── test_formats │ │ ├── blockchain_test.md │ │ ├── blockchain_test_engine.md │ │ ├── blockchain_test_engine_x.md │ │ ├── blockchain_test_sync.md │ │ ├── common_types.md │ │ ├── exceptions.md │ │ ├── index.md │ │ ├── state_test.md │ │ └── transaction_test.md │ └── useful_pytest_options.md ├── scripts │ ├── copy_repo_docs_to_mkdocs.py │ ├── gen_test_case_reference.py │ └── generate_fill_help.py ├── stylesheets │ └── custom.css ├── templates │ ├── base.md.j2 │ ├── directory.md.j2 │ ├── function.html.j2 │ ├── function.md.j2 │ ├── function_parameter_datatable.html.j2 │ ├── markdown_header.md.j2 │ └── module.md.j2 └── writing_tests │ ├── adding_a_new_test.md │ ├── benchmarks.md │ ├── checklist_templates │ ├── eip_testing_checklist_template.md │ └── index.md │ ├── code_standards.md │ ├── eip_checklist.md │ ├── exception_tests.md │ ├── fork_methods.md │ ├── fuzzer_bridge.md │ ├── gas_optimization.md │ ├── img │ ├── eest_make_test.mp4 │ ├── eip_reference_spec_console_output.png │ └── eip_reference_spec_console_output_fail.png │ ├── index.md │ ├── porting_legacy_tests.md │ ├── post_mortems.md │ ├── reference_specification.md │ ├── test_markers.md │ ├── tutorials │ ├── blockchain.md │ └── state_transition.md │ ├── types_of_tests.md │ ├── verifying_changes.md │ └── writing_a_new_test.md ├── mkdocs.yml ├── pyproject.toml ├── pyrightconfig.json ├── scripts └── convert_addresses.py ├── src ├── cli │ ├── __init__.py │ ├── check_fixtures.py │ ├── compare_fixtures.py │ ├── diff_opcode_counts.py │ ├── eest │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── clean.py │ │ │ └── info.py │ │ ├── make │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── env.py │ │ │ │ └── test.py │ │ │ └── templates │ │ │ │ ├── blockchain_test.py.j2 │ │ │ │ └── state_test.py.j2 │ │ └── quotes.py │ ├── eofwrap.py │ ├── evm_bytes.py │ ├── extract_config.py │ ├── fillerconvert │ │ ├── fillerconvert.py │ │ └── verify_filled.py │ ├── fuzzer_bridge │ │ ├── README.md │ │ ├── __init__.py │ │ ├── blocktest_builder.py │ │ ├── cli.py │ │ ├── converter.py │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── comprehensive_large.json │ │ │ ├── comprehensive_largest.json │ │ │ ├── comprehensive_medium_1.json │ │ │ ├── comprehensive_medium_2.json │ │ │ └── comprehensive_smallest.json │ │ ├── models.py │ │ ├── performance_utils.py │ │ └── production_test.py │ ├── gen_index.py │ ├── generate_checklist_stubs.py │ ├── gentest │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── request_manager.py │ │ ├── source_code_generator.py │ │ ├── templates │ │ │ └── blockchain_test │ │ │ │ └── transaction.py.j2 │ │ ├── test_context_providers.py │ │ ├── test_providers.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_cli.py │ ├── hasher.py │ ├── input │ │ ├── __init__.py │ │ ├── input_repository.py │ │ └── questionary_input_repository.py │ ├── modify_static_test_gas_limits.py │ ├── order_fixtures.py │ ├── pytest_commands │ │ ├── __init__.py │ │ ├── base.py │ │ ├── check_eip_versions.py │ │ ├── checklist.py │ │ ├── consume.py │ │ ├── execute.py │ │ ├── fill.py │ │ ├── processors.py │ │ ├── pytest_ini_files │ │ │ ├── pytest-check-eip-versions.ini │ │ │ ├── pytest-consume.ini │ │ │ ├── pytest-execute-eth-config.ini │ │ │ ├── pytest-execute-hive.ini │ │ │ ├── pytest-execute-recover.ini │ │ │ ├── pytest-execute.ini │ │ │ └── pytest-fill.ini │ │ └── watcher.py │ ├── show_pre_alloc_group_stats.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_eofwrap.py │ │ ├── test_evm_bytes.py │ │ ├── test_fuzzer_bridge.py │ │ ├── test_generate_all_formats.py │ │ ├── test_order_fixtures.py │ │ ├── test_pytest_execute_command.py │ │ ├── test_pytest_fill_command.py │ │ └── vectors │ │ │ ├── fuzzer_test_0.json │ │ │ ├── fuzzer_test_1.json │ │ │ ├── fuzzer_test_2.json │ │ │ ├── fuzzer_test_3.json │ │ │ └── fuzzer_test_4.json │ └── tox_helpers.py ├── config │ ├── __init__.py │ ├── app.py │ ├── check_eip_versions.py │ ├── docs.py │ ├── env.py │ └── templates │ │ └── env.yaml.j2 ├── conftest.py ├── ethereum_clis │ ├── __init__.py │ ├── cli_types.py │ ├── clis │ │ ├── __init__.py │ │ ├── besu.py │ │ ├── erigon.py │ │ ├── ethereumjs.py │ │ ├── ethrex.py │ │ ├── evmone.py │ │ ├── execution_specs.py │ │ ├── geth.py │ │ ├── nethermind.py │ │ ├── nimbus.py │ │ └── reth.py │ ├── ethereum_cli.py │ ├── file_utils.py │ ├── fixture_consumer_tool.py │ ├── py.typed │ ├── tests │ │ ├── fixtures │ │ │ ├── 1 │ │ │ │ ├── alloc.json │ │ │ │ ├── env.json │ │ │ │ ├── exp.json │ │ │ │ └── txs.json │ │ │ └── 3 │ │ │ │ ├── alloc.json │ │ │ │ ├── env.json │ │ │ │ ├── exp.json │ │ │ │ ├── readme.md │ │ │ │ └── txs.json │ │ ├── test_execution_specs.py │ │ ├── test_transition_tool.py │ │ └── test_transition_tools_support.py │ └── transition_tool.py ├── ethereum_test_base_types │ ├── __init__.py │ ├── base_types.py │ ├── base_types_json.py │ ├── composite_types.py │ ├── constants.py │ ├── conversions.py │ ├── mixins.py │ ├── py.typed │ ├── pydantic.py │ ├── reference_spec │ │ ├── __init__.py │ │ ├── git_reference_spec.py │ │ └── reference_spec.py │ ├── serialization.py │ └── tests │ │ ├── __init__.py │ │ ├── test_base_types.py │ │ └── test_reference_spec.py ├── ethereum_test_benchmark │ ├── __init__.py │ └── benchmark_code_generator.py ├── ethereum_test_checklists │ ├── __init__.py │ ├── eip_checklist.py │ ├── eip_checklist.pyi │ └── tests │ │ ├── __init__.py │ │ └── test_checklist_template_consistency.py ├── ethereum_test_exceptions │ ├── __init__.py │ ├── engine_api.py │ ├── exception_mapper.py │ ├── exceptions.py │ ├── exceptions │ │ ├── __init__.py │ │ ├── base.py │ │ ├── block.py │ │ ├── eof.py │ │ ├── exceptions_types.py │ │ └── transaction.py │ ├── py.typed │ └── tests │ │ ├── __init__.py │ │ └── test_exceptions.py ├── ethereum_test_execution │ ├── __init__.py │ ├── base.py │ ├── blob_transaction.py │ └── transaction_post.py ├── ethereum_test_fixtures │ ├── __init__.py │ ├── base.py │ ├── blockchain.py │ ├── collector.py │ ├── common.py │ ├── consume.py │ ├── eof.py │ ├── file.py │ ├── pre_alloc_groups.py │ ├── py.typed │ ├── state.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_blockchain.py │ │ ├── test_eof.py │ │ └── test_state.py │ └── transaction.py ├── ethereum_test_forks │ ├── __init__.py │ ├── base_decorators.py │ ├── base_fork.py │ ├── forks │ │ ├── __init__.py │ │ ├── contracts │ │ │ ├── consolidation_request.bin │ │ │ ├── deposit_contract.bin │ │ │ ├── history_contract.bin │ │ │ └── withdrawal_request.bin │ │ ├── forks.py │ │ ├── helpers.py │ │ └── transition.py │ ├── gas_costs.py │ ├── helpers.py │ ├── py.typed │ ├── tests │ │ ├── __init__.py │ │ ├── test_fork_range_descriptor.py │ │ └── test_forks.py │ └── transition_base_fork.py ├── ethereum_test_rpc │ ├── __init__.py │ ├── rpc.py │ ├── rpc_types.py │ └── tests │ │ ├── __init__.py │ │ └── test_types.py ├── ethereum_test_specs │ ├── __init__.py │ ├── base.py │ ├── base_static.py │ ├── benchmark.py │ ├── blobs.py │ ├── blockchain.py │ ├── debugging.py │ ├── eof.py │ ├── helpers.py │ ├── py.typed │ ├── state.py │ ├── static_state │ │ ├── __init__.py │ │ ├── account.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── compile_yul.py │ │ │ └── tags.py │ │ ├── environment.py │ │ ├── expect_section.py │ │ ├── general_transaction.py │ │ └── state_static.py │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── blockchain_london_invalid_filled.json │ │ │ ├── blockchain_london_valid_filled.json │ │ │ ├── blockchain_shanghai_invalid_filled_engine.json │ │ │ ├── blockchain_shanghai_valid_filled_engine.json │ │ │ ├── chainid_cancun_blockchain_test_engine_tx_type_0.json │ │ │ ├── chainid_cancun_blockchain_test_tx_type_0.json │ │ │ ├── chainid_cancun_state_test_tx_type_0.json │ │ │ ├── chainid_cancun_state_test_tx_type_1.json │ │ │ ├── chainid_istanbul_blockchain_test_tx_type_0.json │ │ │ ├── chainid_london_blockchain_test_tx_type_0.json │ │ │ ├── chainid_paris_blockchain_test_engine_tx_type_0.json │ │ │ ├── chainid_paris_state_test_tx_type_0.json │ │ │ ├── chainid_shanghai_blockchain_test_engine_tx_type_0.json │ │ │ ├── chainid_shanghai_state_test_tx_type_0.json │ │ │ └── tx_simple_type_0_shanghai.json │ │ ├── helpers.py │ │ ├── test_benchmark.py │ │ ├── test_expect.py │ │ ├── test_fixtures.py │ │ ├── test_transaction.py │ │ └── test_types.py │ └── transaction.py ├── ethereum_test_tools │ ├── __init__.py │ ├── py.typed │ ├── tests │ │ ├── __init__.py │ │ ├── test_code.py │ │ └── test_filling │ │ │ └── fixtures │ │ │ └── blockchain_shanghai_invalid_filled_engine.json │ ├── tools_code │ │ ├── __init__.py │ │ ├── generators.py │ │ └── yul.py │ └── utility │ │ ├── __init__.py │ │ ├── generators.py │ │ ├── pytest.py │ │ ├── tests │ │ └── test_pytest.py │ │ └── versioning.py ├── ethereum_test_types │ ├── __init__.py │ ├── account_types.py │ ├── blob_types.py │ ├── block_access_list │ │ ├── __init__.py │ │ ├── account_absent_values.py │ │ ├── account_changes.py │ │ ├── exceptions.py │ │ ├── expectations.py │ │ ├── modifiers.py │ │ └── t8n.py │ ├── block_types.py │ ├── chain_config_types.py │ ├── eof │ │ ├── __init__.py │ │ ├── constants.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── constants.py │ ├── helpers.py │ ├── kzg_trusted_setup.txt │ ├── phase_manager.py │ ├── py.typed │ ├── receipt_types.py │ ├── request_types.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_blob_types.py │ │ ├── test_block_access_lists.py │ │ ├── test_eof_v1.py │ │ ├── test_helpers.py │ │ ├── test_phase_manager.py │ │ ├── test_post_alloc.py │ │ ├── test_transactions.py │ │ └── test_types.py │ ├── transaction_types.py │ ├── trie.py │ └── utils.py ├── ethereum_test_vm │ ├── __init__.py │ ├── bytecode.py │ ├── evm_types.py │ ├── helpers.py │ ├── opcodes.py │ ├── py.typed │ └── tests │ │ ├── __init__.py │ │ └── test_vm.py └── pytest_plugins │ ├── __init__.py │ ├── concurrency.py │ ├── consume │ ├── __init__.py │ ├── consume.py │ ├── direct │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_via_direct.py │ ├── hive_engine_test │ │ └── __init__.py │ ├── hive_simulators_reorg │ │ └── __init__.py │ ├── releases.py │ ├── simulators │ │ ├── __init__.py │ │ ├── base.py │ │ ├── engine │ │ │ ├── __init__.py │ │ │ └── conftest.py │ │ ├── exceptions.py │ │ ├── helpers │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── ruleset.py │ │ │ └── timing.py │ │ ├── rlp │ │ │ ├── __init__.py │ │ │ └── conftest.py │ │ ├── simulator_logic │ │ │ ├── __init__.py │ │ │ ├── test_via_engine.py │ │ │ ├── test_via_rlp.py │ │ │ └── test_via_sync.py │ │ ├── single_test_client.py │ │ ├── sync │ │ │ ├── __init__.py │ │ │ └── conftest.py │ │ ├── test_case_description.py │ │ └── timing_data.py │ └── tests │ │ ├── __init__.py │ │ ├── release_information.json │ │ ├── test_consume_args.py │ │ ├── test_fixtures_source_input_types.py │ │ └── test_releases.py │ ├── custom_logging │ ├── __init__.py │ ├── plugin_logging.py │ └── tests │ │ ├── __init__.py │ │ └── test_logging.py │ ├── eels_resolutions.json │ ├── eels_resolver.py │ ├── execute │ ├── __init__.py │ ├── eth_config │ │ ├── __init__.py │ │ ├── eth_config.py │ │ ├── execute_eth_config.py │ │ ├── execute_types.py │ │ ├── networks.yml │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── genesis_example.json │ │ │ ├── test_execute_eth_config.py │ │ │ └── test_genesis.py │ ├── execute.py │ ├── execute_recover.py │ ├── pre_alloc.py │ ├── recover.py │ ├── rpc │ │ ├── __init__.py │ │ ├── chain_builder_eth_rpc.py │ │ ├── hive.py │ │ ├── remote.py │ │ └── remote_seed_sender.py │ ├── sender.py │ └── tests │ │ ├── __init__.py │ │ └── test_pre_alloc.py │ ├── filler │ ├── __init__.py │ ├── eip_checklist.py │ ├── filler.py │ ├── fixture_output.py │ ├── gen_test_doc │ │ ├── __init__.py │ │ ├── gen_test_doc.py │ │ └── page_props.py │ ├── ported_tests.py │ ├── pre_alloc.py │ ├── static_filler.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_benchmarking.py │ │ ├── test_collect_only.py │ │ ├── test_eip_checklist.py │ │ ├── test_filler.py │ │ ├── test_filling_session.py │ │ ├── test_format_selector.py │ │ ├── test_generate_all_formats.py │ │ ├── test_output_directory.py │ │ ├── test_phase_manager.py │ │ ├── test_pre_alloc.py │ │ ├── test_prealloc_group.py │ │ ├── test_prealloc_group_usage_example.py │ │ ├── test_slow_marker_pre_alloc.py │ │ └── test_verify_sync_marker.py │ └── witness.py │ ├── fix_package_test_path.py │ ├── forks │ ├── __init__.py │ ├── forks.py │ └── tests │ │ ├── __init__.py │ │ ├── test_bad_command_line_options.py │ │ ├── test_bad_validity_markers.py │ │ ├── test_covariant_markers.py │ │ ├── test_fork_parametrizer_types.py │ │ ├── test_forks.py │ │ └── test_markers.py │ ├── help │ ├── __init__.py │ ├── help.py │ └── tests │ │ └── test_help.py │ ├── py.typed │ ├── pytest_hive │ ├── hive_info.py │ └── pytest_hive.py │ ├── shared │ ├── benchmarking.py │ ├── execute_fill.py │ ├── helpers.py │ └── transaction_fixtures.py │ ├── solc │ ├── __init__.py │ └── solc.py │ └── spec_version_checker │ ├── __init__.py │ └── spec_version_checker.py ├── stubs ├── joblib │ └── __init__.pyi ├── jwt │ ├── __init__.pyi │ └── encode.pyi ├── pytest_metadata │ ├── __init__.pyi │ └── plugin.pyi ├── trie │ ├── __init__.pyi │ └── hexary.pyi └── xdist │ ├── __init__.pyi │ └── methods.pyi ├── tests ├── __init__.py ├── amsterdam │ ├── __init__.py │ └── eip7928_block_level_access_lists │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_block_access_lists.py │ │ ├── test_block_access_lists_eip7702.py │ │ ├── test_block_access_lists_invalid.py │ │ ├── test_block_access_lists_opcodes.py │ │ └── test_cases.md ├── benchmark │ ├── __init__.py │ ├── conftest.py │ ├── helpers.py │ ├── stateful │ │ ├── __init__.py │ │ ├── bloatnet │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── test_bloatnet.py │ │ │ ├── test_multi_opcode.py │ │ │ └── test_single_opcode.py │ │ └── conftest.py │ ├── test_worst_blocks.py │ ├── test_worst_bytecode.py │ ├── test_worst_compute.py │ ├── test_worst_memory.py │ ├── test_worst_opcode.py │ └── test_worst_stateful_opcodes.py ├── berlin │ ├── __init__.py │ ├── eip2929_gas_cost_increases │ │ ├── __init__.py │ │ ├── test_call.py │ │ └── test_precompile_warming.py │ └── eip2930_access_list │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_acl.py │ │ └── test_tx_intrinsic_gas.py ├── byzantium │ ├── __init__.py │ └── eip198_modexp_precompile │ │ ├── __init__.py │ │ ├── helpers.py │ │ └── test_modexp.py ├── cancun │ ├── __init__.py │ ├── eip1153_tstore │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_basic_tload.py │ │ ├── test_tload_calls.py │ │ ├── test_tload_reentrancy.py │ │ ├── test_tstorage.py │ │ ├── test_tstorage_clear_after_tx.py │ │ ├── test_tstorage_create_contexts.py │ │ ├── test_tstorage_execution_contexts.py │ │ ├── test_tstorage_reentrancy_contexts.py │ │ ├── test_tstorage_selfdestruct.py │ │ └── test_tstore_reentrancy.py │ ├── eip4788_beacon_root │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── spec.py │ │ └── test_beacon_root_contract.py │ ├── eip4844_blobs │ │ ├── __init__.py │ │ ├── common.py │ │ ├── conftest.py │ │ ├── point_evaluation_vectors │ │ │ ├── README.md │ │ │ ├── concat_kzg_vectors_to_json.py │ │ │ ├── go_kzg_4844_verify_kzg_proof.json │ │ │ └── requirements.txt │ │ ├── spec.py │ │ ├── test_blob_txs.py │ │ ├── test_blob_txs_full.py │ │ ├── test_blobhash_opcode.py │ │ ├── test_blobhash_opcode_contexts.py │ │ ├── test_excess_blob_gas.py │ │ ├── test_excess_blob_gas_fork_transition.py │ │ ├── test_point_evaluation_precompile.py │ │ └── test_point_evaluation_precompile_gas.py │ ├── eip5656_mcopy │ │ ├── __init__.py │ │ ├── common.py │ │ ├── test_mcopy.py │ │ ├── test_mcopy_contexts.py │ │ └── test_mcopy_memory_expansion.py │ ├── eip6780_selfdestruct │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_dynamic_create2_selfdestruct_collision.py │ │ ├── test_reentrancy_selfdestruct_revert.py │ │ ├── test_selfdestruct.py │ │ └── test_selfdestruct_revert.py │ └── eip7516_blobgasfee │ │ ├── __init__.py │ │ └── test_blobgasfee_opcode.py ├── constantinople │ ├── __init__.py │ ├── eip1014_create2 │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_create_returndata.py │ │ └── test_recreate.py │ └── eip145_bitwise_shift │ │ ├── __init__.py │ │ ├── spec.py │ │ └── test_shift_combinations.py ├── frontier │ ├── __init__.py │ ├── create │ │ ├── __init__.py │ │ ├── test_create_one_byte.py │ │ ├── test_create_suicide_during_init.py │ │ └── test_create_suicide_store.py │ ├── examples │ │ ├── __init__.py │ │ └── test_block_intermediate_state.py │ ├── identity_precompile │ │ ├── __init__.py │ │ ├── common.py │ │ ├── conftest.py │ │ ├── test_identity.py │ │ └── test_identity_returndatasize.py │ ├── opcodes │ │ ├── __init__.py │ │ ├── test_all_opcodes.py │ │ ├── test_blockhash.py │ │ ├── test_call.py │ │ ├── test_call_and_callcode_gas_calculation.py │ │ ├── test_calldatacopy.py │ │ ├── test_calldataload.py │ │ ├── test_calldatasize.py │ │ ├── test_dup.py │ │ ├── test_push.py │ │ ├── test_selfdestruct.py │ │ └── test_swap.py │ ├── precompiles │ │ ├── __init__.py │ │ ├── test_precompile_absence.py │ │ └── test_precompiles.py │ └── scenarios │ │ ├── __init__.py │ │ ├── common.py │ │ ├── programs │ │ ├── __init__.py │ │ ├── all_frontier_opcodes.py │ │ ├── context_calls.py │ │ ├── invalid_opcodes.py │ │ └── static_violation.py │ │ ├── scenarios │ │ ├── __init__.py │ │ ├── call_combinations.py │ │ ├── create_combinations.py │ │ ├── double_call_combinations.py │ │ └── revert_combinations.py │ │ └── test_scenarios.py ├── homestead │ ├── __init__.py │ ├── coverage │ │ ├── __init__.py │ │ └── test_coverage.py │ ├── identity_precompile │ │ ├── __init__.py │ │ └── test_identity.py │ └── yul │ │ └── __init__.py ├── istanbul │ ├── __init__.py │ ├── eip1344_chainid │ │ ├── __init__.py │ │ └── test_chainid.py │ └── eip152_blake2 │ │ ├── __init__.py │ │ ├── common.py │ │ ├── conftest.py │ │ ├── spec.py │ │ ├── test_blake2.py │ │ └── test_blake2_delegatecall.py ├── osaka │ ├── __init__.py │ ├── eip7594_peerdas │ │ ├── __init__.py │ │ ├── spec.py │ │ ├── test_get_blobs.py │ │ └── test_max_blob_per_tx.py │ ├── eip7823_modexp_upper_bounds │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── eip_checklist_external_coverage.txt │ │ ├── eip_checklist_not_applicable.txt │ │ ├── spec.py │ │ └── test_modexp_upper_bounds.py │ ├── eip7825_transaction_gas_limit_cap │ │ ├── __init__.py │ │ ├── eip_checklist_external_coverage.txt │ │ ├── eip_checklist_not_applicable.txt │ │ ├── spec.py │ │ ├── test_tx_gas_limit.py │ │ └── test_tx_gas_limit_transition_fork.py │ ├── eip7883_modexp_gas_increase │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── eip_checklist_external_coverage.txt │ │ ├── eip_checklist_not_applicable.txt │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_modexp_thresholds.py │ │ ├── test_modexp_thresholds_transition.py │ │ └── vector │ │ │ ├── legacy.json │ │ │ └── vectors.json │ ├── eip7918_blob_reserve_price │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── spec.py │ │ ├── test_blob_base_fee.py │ │ ├── test_blob_reserve_price_with_bpo.py │ │ └── test_blob_reserve_price_with_bpo_transitions.py │ ├── eip7934_block_rlp_limit │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── eip_checklist_external_coverage.txt │ │ ├── eip_checklist_not_applicable.txt │ │ ├── spec.py │ │ └── test_max_block_rlp_size.py │ ├── eip7939_count_leading_zeros │ │ ├── __init__.py │ │ ├── eip_checklist_external_coverage.txt │ │ ├── eip_checklist_not_applicable.txt │ │ ├── spec.py │ │ └── test_count_leading_zeros.py │ └── eip7951_p256verify_precompiles │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── eip_checklist_external_coverage.txt │ │ ├── eip_checklist_not_applicable.txt │ │ ├── helpers.py │ │ ├── scripts │ │ └── find_low_p256_points.sage │ │ ├── spec.py │ │ ├── test_p256verify.py │ │ ├── test_p256verify_before_fork.py │ │ └── vectors │ │ ├── secp256r1_k_and_s.json │ │ ├── secp256r1_modified_r_s.json │ │ ├── secp256r1_public_key.json │ │ ├── secp256r1_shamir_multiplication.json │ │ ├── secp256r1_signature_specific.json │ │ ├── secp256r1_small_large_r_s.json │ │ ├── secp256r1_special_case_hash.json │ │ ├── secp256r1_special_case_r_s.json │ │ ├── secp256r1_special_points.json │ │ └── secp256r1_u1_u2.json ├── paris │ ├── __init__.py │ ├── eip7610_create_collision │ │ ├── __init__.py │ │ └── test_initcollision.py │ └── security │ │ ├── __init__.py │ │ └── test_selfdestruct_balance_bug.py ├── prague │ ├── __init__.py │ ├── eip2537_bls_12_381_precompiles │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_bls12_g1add.py │ │ ├── test_bls12_g1msm.py │ │ ├── test_bls12_g1mul.py │ │ ├── test_bls12_g2add.py │ │ ├── test_bls12_g2msm.py │ │ ├── test_bls12_g2mul.py │ │ ├── test_bls12_map_fp2_to_g2.py │ │ ├── test_bls12_map_fp_to_g1.py │ │ ├── test_bls12_pairing.py │ │ ├── test_bls12_precompiles_before_fork.py │ │ ├── test_bls12_variable_length_input_contracts.py │ │ ├── test_eip_mainnet.py │ │ └── vectors │ │ │ ├── add_G1_bls.json │ │ │ ├── add_G2_bls.json │ │ │ ├── fail-add_G1_bls.json │ │ │ ├── fail-add_G2_bls.json │ │ │ ├── fail-map_fp2_to_G2_bls.json │ │ │ ├── fail-map_fp_to_G1_bls.json │ │ │ ├── fail-msm_G1_bls.json │ │ │ ├── fail-msm_G2_bls.json │ │ │ ├── fail-mul_G1_bls.json │ │ │ ├── fail-mul_G2_bls.json │ │ │ ├── fail-pairing_check_bls.json │ │ │ ├── map_fp2_to_G2_bls.json │ │ │ ├── map_fp_to_G1_bls.json │ │ │ ├── msm_G1_bls.json │ │ │ ├── msm_G2_bls.json │ │ │ ├── mul_G1_bls.json │ │ │ ├── mul_G2_bls.json │ │ │ ├── pairing_check_bls.json │ │ │ └── test-vectors.md │ ├── eip2935_historical_block_hashes_from_state │ │ ├── __init__.py │ │ ├── contract_deploy_tx.json │ │ ├── spec.py │ │ ├── test_block_hashes.py │ │ ├── test_contract_deployment.py │ │ └── test_eip_mainnet.py │ ├── eip6110_deposits │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_deposits.py │ │ ├── test_eip_mainnet.py │ │ └── test_modified_contract.py │ ├── eip7002_el_triggerable_withdrawals │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── contract_deploy_tx.json │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_contract_deployment.py │ │ ├── test_eip_mainnet.py │ │ ├── test_modified_withdrawal_contract.py │ │ ├── test_withdrawal_requests.py │ │ └── test_withdrawal_requests_during_fork.py │ ├── eip7251_consolidations │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── contract_deploy_tx.json │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_consolidations.py │ │ ├── test_consolidations_during_fork.py │ │ ├── test_contract_deployment.py │ │ ├── test_eip_mainnet.py │ │ └── test_modified_consolidation_contract.py │ ├── eip7623_increase_calldata_cost │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_eip_mainnet.py │ │ ├── test_execution_gas.py │ │ ├── test_refunds.py │ │ └── test_transaction_validity.py │ ├── eip7685_general_purpose_el_requests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── spec.py │ │ └── test_multi_type_requests.py │ └── eip7702_set_code_tx │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_calls.py │ │ ├── test_eip_mainnet.py │ │ ├── test_gas.py │ │ ├── test_invalid_tx.py │ │ ├── test_set_code_txs.py │ │ └── test_set_code_txs_2.py ├── shanghai │ ├── __init__.py │ ├── eip3651_warm_coinbase │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── spec.py │ │ └── test_warm_coinbase.py │ ├── eip3855_push0 │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── spec.py │ │ └── test_push0.py │ ├── eip3860_initcode │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── helpers.py │ │ ├── spec.py │ │ ├── test_initcode.py │ │ └── test_with_eof.py │ └── eip4895_withdrawals │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── spec.py │ │ └── test_withdrawals.py ├── static │ ├── README.md │ ├── __init__.py │ └── state_tests │ │ ├── Cancun │ │ ├── __init__.py │ │ ├── stEIP1153_transientStorage │ │ │ ├── 10_revertUndoesStoreAfterReturnFiller.yml │ │ │ ├── 14_revertAfterNestedStaticcallFiller.yml │ │ │ ├── 15_tstoreCannotBeDosdFiller.yml │ │ │ ├── 17_tstoreGasFiller.yml │ │ │ ├── 19_oogUndoesTransientStoreFiller.yml │ │ │ ├── 21_tstoreCannotBeDosdOOOFiller.yml │ │ │ ├── __init__.py │ │ │ ├── transStorageOKFiller.yml │ │ │ └── transStorageResetFiller.yml │ │ ├── stEIP4844_blobtransactions │ │ │ ├── __init__.py │ │ │ ├── createBlobhashTxFiller.yml │ │ │ ├── emptyBlobhashListFiller.yml │ │ │ ├── opcodeBlobhBoundsFiller.yml │ │ │ ├── opcodeBlobhashOutOfRangeFiller.yml │ │ │ └── wrongBlobhashVersionFiller.yml │ │ └── stEIP5656_MCOPY │ │ │ ├── MCOPYFiller.yml │ │ │ ├── MCOPY_copy_costFiller.yml │ │ │ ├── MCOPY_memory_expansion_costFiller.yml │ │ │ ├── MCOPY_memory_hashFiller.yml │ │ │ └── __init__.py │ │ ├── README.md │ │ ├── Shanghai │ │ ├── __init__.py │ │ ├── stEIP3651_warmcoinbase │ │ │ ├── __init__.py │ │ │ ├── coinbaseWarmAccountCallGasFailFiller.yml │ │ │ └── coinbaseWarmAccountCallGasFiller.yml │ │ ├── stEIP3855_push0 │ │ │ ├── __init__.py │ │ │ ├── push0Filler.yml │ │ │ ├── push0Filler_test.yml │ │ │ ├── push0Gas2Filler.yml │ │ │ └── push0GasFiller.yml │ │ └── stEIP3860_limitmeterinitcode │ │ │ ├── __init__.py │ │ │ ├── create2InitCodeSizeLimitFiller.yml │ │ │ ├── createInitCodeSizeLimitFiller.yml │ │ │ └── creationTxInitCodeSizeLimitFiller.yml │ │ ├── VMTests │ │ ├── __init__.py │ │ ├── vmArithmeticTest │ │ │ ├── __init__.py │ │ │ ├── addFiller.yml │ │ │ ├── addmodFiller.yml │ │ │ ├── arithFiller.yml │ │ │ ├── divByZeroFiller.yml │ │ │ ├── divFiller.yml │ │ │ ├── expFiller.yml │ │ │ ├── expPower256Filler.yml │ │ │ ├── expPower256Of256Filler.yml │ │ │ ├── expPower2Filler.yml │ │ │ ├── fibFiller.yml │ │ │ ├── modFiller.yml │ │ │ ├── mulFiller.yml │ │ │ ├── mulmodFiller.yml │ │ │ ├── notFiller.yml │ │ │ ├── sdivFiller.yml │ │ │ ├── signextendFiller.yml │ │ │ ├── smodFiller.yml │ │ │ ├── subFiller.yml │ │ │ ├── twoOpsFiller.yml │ │ │ └── twoOpsGen.js │ │ ├── vmBitwiseLogicOperation │ │ │ ├── __init__.py │ │ │ ├── andFiller.yml │ │ │ ├── byteFiller.yml │ │ │ ├── eqFiller.yml │ │ │ ├── gtFiller.yml │ │ │ ├── iszeroFiller.yml │ │ │ ├── ltFiller.yml │ │ │ ├── notFiller.yml │ │ │ ├── orFiller.yml │ │ │ ├── sgtFiller.yml │ │ │ ├── sltFiller.yml │ │ │ └── xorFiller.yml │ │ ├── vmIOandFlowOperations │ │ │ ├── __init__.py │ │ │ ├── codecopyFiller.yml │ │ │ ├── gasFiller.yml │ │ │ ├── jumpFiller.yml │ │ │ ├── jumpToPushFiller.yml │ │ │ ├── jumpiFiller.yml │ │ │ ├── loop_stacklimitFiller.yml │ │ │ ├── loopsConditionalsFiller.yml │ │ │ ├── mloadFiller.yml │ │ │ ├── msizeFiller.yml │ │ │ ├── mstore8Filler.yml │ │ │ ├── mstoreFiller.yml │ │ │ ├── pcFiller.yml │ │ │ ├── popFiller.yml │ │ │ ├── returnFiller.yml │ │ │ └── sstore_sloadFiller.yml │ │ ├── vmLogTest │ │ │ ├── __init__.py │ │ │ ├── log0Filler.yml │ │ │ ├── log1Filler.yml │ │ │ ├── log2Filler.yml │ │ │ ├── log3Filler.yml │ │ │ └── log4Filler.yml │ │ └── vmTests │ │ │ ├── __init__.py │ │ │ ├── blockInfoFiller.yml │ │ │ ├── envInfoFiller.yml │ │ │ ├── randomFiller.yml │ │ │ ├── sha3Filler.yml │ │ │ └── suicideFiller.yml │ │ ├── __init__.py │ │ ├── stArgsZeroOneBalance │ │ ├── README.md │ │ ├── __init__.py │ │ ├── addNonConstFiller.yml │ │ ├── addmodNonConstFiller.yml │ │ ├── andNonConstFiller.yml │ │ ├── balanceNonConstFiller.yml │ │ ├── byteNonConstFiller.yml │ │ ├── callNonConstFiller.yml │ │ ├── callcodeNonConstFiller.yml │ │ ├── calldatacopyNonConstFiller.yml │ │ ├── calldataloadNonConstFiller.yml │ │ ├── codecopyNonConstFiller.yml │ │ ├── createNonConstFiller.yml │ │ ├── delegatecallNonConstFiller.yml │ │ ├── divNonConstFiller.yml │ │ ├── eqNonConstFiller.yml │ │ ├── expNonConstFiller.yml │ │ ├── extcodecopyNonConstFiller.yml │ │ ├── extcodesizeNonConstFiller.yml │ │ ├── gtNonConstFiller.yml │ │ ├── iszeroNonConstFiller.yml │ │ ├── jumpNonConstFiller.yml │ │ ├── jumpiNonConstFiller.yml │ │ ├── log0NonConstFiller.yml │ │ ├── log1NonConstFiller.yml │ │ ├── log2NonConstFiller.yml │ │ ├── log3NonConstFiller.yml │ │ ├── ltNonConstFiller.yml │ │ ├── mloadNonConstFiller.yml │ │ ├── modNonConstFiller.yml │ │ ├── mstore8NonConstFiller.yml │ │ ├── mstoreNonConstFiller.yml │ │ ├── mulNonConstFiller.yml │ │ ├── mulmodNonConstFiller.yml │ │ ├── notNonConstFiller.yml │ │ ├── orNonConstFiller.yml │ │ ├── returnNonConstFiller.yml │ │ ├── sdivNonConstFiller.yml │ │ ├── sgtNonConstFiller.yml │ │ ├── sha3NonConstFiller.yml │ │ ├── signextNonConstFiller.yml │ │ ├── sloadNonConstFiller.yml │ │ ├── sltNonConstFiller.yml │ │ ├── smodNonConstFiller.yml │ │ ├── sstoreNonConstFiller.yml │ │ ├── subNonConstFiller.yml │ │ ├── suicideNonConstFiller.yml │ │ └── xorNonConstFiller.yml │ │ ├── stAttackTest │ │ ├── ContractCreationSpamFiller.json │ │ ├── CrashingTransactionFiller.json │ │ └── __init__.py │ │ ├── stBadOpcode │ │ ├── __init__.py │ │ ├── eip2315NotRemovedFiller.json │ │ ├── invalidAddrFiller.yml │ │ ├── measureGasFiller.yml │ │ ├── operationDiffGasFiller.yml │ │ └── undefinedOpcodeFirstByteFiller.yml │ │ ├── stBugs │ │ ├── __init__.py │ │ ├── randomStatetestDEFAULT-Tue_07_58_41-15153-575192Filler.json │ │ ├── randomStatetestDEFAULT-Tue_07_58_41-15153-575192_londonFiller.json │ │ ├── returndatacopyPythonBug_Tue_03_48_41-1432Filler.json │ │ └── staticcall_createfailsFiller.json │ │ ├── stCallCodes │ │ ├── __init__.py │ │ ├── call_OOG_additionalGasCosts1Filler.json │ │ ├── call_OOG_additionalGasCosts2Filler.json │ │ ├── callcall_00Filler.json │ │ ├── callcall_00_OOGEFiller.json │ │ ├── callcall_00_OOGE_valueTransferFiller.json │ │ ├── callcall_00_SuicideEndFiller.json │ │ ├── callcallcall_000Filler.json │ │ ├── callcallcall_000_OOGEFiller.json │ │ ├── callcallcall_000_OOGMAfterFiller.json │ │ ├── callcallcall_000_OOGMBeforeFiller.json │ │ ├── callcallcall_000_SuicideEndFiller.json │ │ ├── callcallcall_000_SuicideMiddleFiller.json │ │ ├── callcallcall_ABCB_RECURSIVEFiller.json │ │ ├── callcallcallcode_001Filler.json │ │ ├── callcallcallcode_001_OOGEFiller.json │ │ ├── callcallcallcode_001_OOGMAfterFiller.json │ │ ├── callcallcallcode_001_OOGMBeforeFiller.json │ │ ├── callcallcallcode_001_SuicideEndFiller.json │ │ ├── callcallcallcode_001_SuicideMiddleFiller.json │ │ ├── callcallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcallcode_01Filler.json │ │ ├── callcallcode_01_OOGEFiller.json │ │ ├── callcallcode_01_SuicideEndFiller.json │ │ ├── callcallcodecall_010Filler.json │ │ ├── callcallcodecall_010_OOGEFiller.json │ │ ├── callcallcodecall_010_OOGMAfterFiller.json │ │ ├── callcallcodecall_010_OOGMBeforeFiller.json │ │ ├── callcallcodecall_010_SuicideEndFiller.json │ │ ├── callcallcodecall_010_SuicideMiddleFiller.json │ │ ├── callcallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── callcallcodecallcode_011Filler.json │ │ ├── callcallcodecallcode_011_OOGEFiller.json │ │ ├── callcallcodecallcode_011_OOGMAfterFiller.json │ │ ├── callcallcodecallcode_011_OOGMBeforeFiller.json │ │ ├── callcallcodecallcode_011_SuicideEndFiller.json │ │ ├── callcallcodecallcode_011_SuicideMiddleFiller.json │ │ ├── callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcodeDynamicCode2SelfCallFiller.json │ │ ├── callcodeDynamicCodeFiller.json │ │ ├── callcodeEmptycontractFiller.json │ │ ├── callcodeInInitcodeToEmptyContractFiller.json │ │ ├── callcodeInInitcodeToExisContractWithVTransferNEMoneyFiller.json │ │ ├── callcodeInInitcodeToExistingContractFiller.json │ │ ├── callcodeInInitcodeToExistingContractWithValueTransferFiller.json │ │ ├── callcode_checkPCFiller.json │ │ ├── callcodecall_10Filler.json │ │ ├── callcodecall_10_OOGEFiller.json │ │ ├── callcodecall_10_SuicideEndFiller.json │ │ ├── callcodecallcall_100Filler.json │ │ ├── callcodecallcall_100_OOGEFiller.json │ │ ├── callcodecallcall_100_OOGMAfterFiller.json │ │ ├── callcodecallcall_100_OOGMBeforeFiller.json │ │ ├── callcodecallcall_100_SuicideEndFiller.json │ │ ├── callcodecallcall_100_SuicideMiddleFiller.json │ │ ├── callcodecallcall_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcallcode_101Filler.json │ │ ├── callcodecallcallcode_101_OOGEFiller.json │ │ ├── callcodecallcallcode_101_OOGMAfterFiller.json │ │ ├── callcodecallcallcode_101_OOGMBeforeFiller.json │ │ ├── callcodecallcallcode_101_SuicideEndFiller.json │ │ ├── callcodecallcallcode_101_SuicideMiddleFiller.json │ │ ├── callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcode_11Filler.json │ │ ├── callcodecallcode_11_OOGEFiller.json │ │ ├── callcodecallcode_11_SuicideEndFiller.json │ │ ├── callcodecallcodecall_110Filler.json │ │ ├── callcodecallcodecall_110_OOGEFiller.json │ │ ├── callcodecallcodecall_110_OOGMAfterFiller.json │ │ ├── callcodecallcodecall_110_OOGMBeforeFiller.json │ │ ├── callcodecallcodecall_110_SuicideEndFiller.json │ │ ├── callcodecallcodecall_110_SuicideMiddleFiller.json │ │ ├── callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcodecallcode_111Filler.json │ │ ├── callcodecallcodecallcode_111_OOGEFiller.json │ │ ├── callcodecallcodecallcode_111_OOGMAfterFiller.json │ │ ├── callcodecallcodecallcode_111_OOGMBeforeFiller.json │ │ ├── callcodecallcodecallcode_111_SuicideEndFiller.json │ │ ├── callcodecallcodecallcode_111_SuicideMiddleFiller.json │ │ └── callcodecallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── stCallCreateCallCodeTest │ │ ├── Call1024BalanceTooLowFiller.json │ │ ├── Call1024OOGFiller.json │ │ ├── Call1024PreCallsFiller.json │ │ ├── CallLoseGasOOGFiller.json │ │ ├── CallRecursiveBombPreCallFiller.json │ │ ├── Callcode1024BalanceTooLowFiller.json │ │ ├── Callcode1024OOGFiller.json │ │ ├── CallcodeLoseGasOOGFiller.json │ │ ├── __init__.py │ │ ├── callOutput1Filler.json │ │ ├── callOutput2Filler.json │ │ ├── callOutput3FailFiller.json │ │ ├── callOutput3Filler.json │ │ ├── callOutput3partialFailFiller.json │ │ ├── callOutput3partialFiller.json │ │ ├── callWithHighValueAndGasOOGFiller.json │ │ ├── callWithHighValueAndOOGatTxLevelFiller.json │ │ ├── callWithHighValueFiller.json │ │ ├── callWithHighValueOOGinCallFiller.json │ │ ├── callcodeOutput1Filler.json │ │ ├── callcodeOutput2Filler.json │ │ ├── callcodeOutput3FailFiller.json │ │ ├── callcodeOutput3Filler.json │ │ ├── callcodeOutput3partialFailFiller.json │ │ ├── callcodeOutput3partialFiller.json │ │ ├── callcodeWithHighValueAndGasOOGFiller.json │ │ ├── callcodeWithHighValueFiller.json │ │ ├── contractCreationMakeCallThatAskMoreGasThenTransactionProvidedFiller.json │ │ ├── createFailBalanceTooLowFiller.json │ │ ├── createInitFailBadJumpDestination2Filler.json │ │ ├── createInitFailBadJumpDestinationFiller.json │ │ ├── createInitFailStackSizeLargerThan1024Filler.json │ │ ├── createInitFailStackUnderflowFiller.json │ │ ├── createInitFailUndefinedInstruction2Filler.json │ │ ├── createInitFailUndefinedInstructionFiller.json │ │ ├── createInitFail_OOGduringInit2Filler.json │ │ ├── createInitFail_OOGduringInitFiller.json │ │ ├── createInitOOGforCREATEFiller.json │ │ ├── createJS_ExampleContractFiller.json │ │ ├── createJS_NoCollisionFiller.json │ │ ├── createNameRegistratorPerTxsFiller.json │ │ ├── createNameRegistratorPerTxsNotEnoughGasFiller.json │ │ ├── createNameRegistratorPreStore1NotEnoughGasFiller.json │ │ └── createNameRegistratorendowmentTooHighFiller.json │ │ ├── stCallDelegateCodesCallCodeHomestead │ │ ├── __init__.py │ │ ├── callcallcallcode_001Filler.json │ │ ├── callcallcallcode_001_OOGEFiller.json │ │ ├── callcallcallcode_001_OOGMAfterFiller.json │ │ ├── callcallcallcode_001_OOGMBeforeFiller.json │ │ ├── callcallcallcode_001_SuicideEndFiller.json │ │ ├── callcallcallcode_001_SuicideMiddleFiller.json │ │ ├── callcallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcallcode_01Filler.json │ │ ├── callcallcode_01_OOGEFiller.json │ │ ├── callcallcode_01_SuicideEndFiller.json │ │ ├── callcallcodecall_010Filler.json │ │ ├── callcallcodecall_010_OOGEFiller.json │ │ ├── callcallcodecall_010_OOGMAfterFiller.json │ │ ├── callcallcodecall_010_OOGMBeforeFiller.json │ │ ├── callcallcodecall_010_SuicideEndFiller.json │ │ ├── callcallcodecall_010_SuicideMiddleFiller.json │ │ ├── callcallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── callcallcodecallcode_011Filler.json │ │ ├── callcallcodecallcode_011_OOGEFiller.json │ │ ├── callcallcodecallcode_011_OOGMAfterFiller.json │ │ ├── callcallcodecallcode_011_OOGMBeforeFiller.json │ │ ├── callcallcodecallcode_011_SuicideEndFiller.json │ │ ├── callcallcodecallcode_011_SuicideMiddleFiller.json │ │ ├── callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcodecall_10Filler.json │ │ ├── callcodecall_10_OOGEFiller.json │ │ ├── callcodecall_10_SuicideEndFiller.json │ │ ├── callcodecallcall_100Filler.json │ │ ├── callcodecallcall_100_OOGEFiller.json │ │ ├── callcodecallcall_100_OOGMAfterFiller.json │ │ ├── callcodecallcall_100_OOGMBeforeFiller.json │ │ ├── callcodecallcall_100_SuicideEndFiller.json │ │ ├── callcodecallcall_100_SuicideMiddleFiller.json │ │ ├── callcodecallcall_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcallcode_101Filler.json │ │ ├── callcodecallcallcode_101_OOGEFiller.json │ │ ├── callcodecallcallcode_101_OOGMAfterFiller.json │ │ ├── callcodecallcallcode_101_OOGMBeforeFiller.json │ │ ├── callcodecallcallcode_101_SuicideEndFiller.json │ │ ├── callcodecallcallcode_101_SuicideMiddleFiller.json │ │ ├── callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcode_11Filler.json │ │ ├── callcodecallcode_11_OOGEFiller.json │ │ ├── callcodecallcode_11_SuicideEndFiller.json │ │ ├── callcodecallcodecall_110Filler.json │ │ ├── callcodecallcodecall_110_OOGEFiller.json │ │ ├── callcodecallcodecall_110_OOGMAfterFiller.json │ │ ├── callcodecallcodecall_110_OOGMBeforeFiller.json │ │ ├── callcodecallcodecall_110_SuicideEndFiller.json │ │ ├── callcodecallcodecall_110_SuicideMiddleFiller.json │ │ ├── callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcodecallcode_111Filler.json │ │ ├── callcodecallcodecallcode_111_OOGEFiller.json │ │ ├── callcodecallcodecallcode_111_OOGMAfterFiller.json │ │ ├── callcodecallcodecallcode_111_OOGMBeforeFiller.json │ │ ├── callcodecallcodecallcode_111_SuicideEndFiller.json │ │ ├── callcodecallcodecallcode_111_SuicideMiddleFiller.json │ │ └── callcodecallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── stCallDelegateCodesHomestead │ │ ├── __init__.py │ │ ├── callcallcallcode_001Filler.json │ │ ├── callcallcallcode_001_OOGEFiller.json │ │ ├── callcallcallcode_001_OOGMAfterFiller.json │ │ ├── callcallcallcode_001_OOGMBeforeFiller.json │ │ ├── callcallcallcode_001_SuicideEndFiller.json │ │ ├── callcallcallcode_001_SuicideMiddleFiller.json │ │ ├── callcallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcallcode_01Filler.json │ │ ├── callcallcode_01_OOGEFiller.json │ │ ├── callcallcode_01_SuicideEndFiller.json │ │ ├── callcallcodecall_010Filler.json │ │ ├── callcallcodecall_010_OOGEFiller.json │ │ ├── callcallcodecall_010_OOGMAfterFiller.json │ │ ├── callcallcodecall_010_OOGMBeforeFiller.json │ │ ├── callcallcodecall_010_SuicideEndFiller.json │ │ ├── callcallcodecall_010_SuicideMiddleFiller.json │ │ ├── callcallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── callcallcodecallcode_011Filler.json │ │ ├── callcallcodecallcode_011_OOGEFiller.json │ │ ├── callcallcodecallcode_011_OOGMAfterFiller.json │ │ ├── callcallcodecallcode_011_OOGMBeforeFiller.json │ │ ├── callcallcodecallcode_011_SuicideEndFiller.json │ │ ├── callcallcodecallcode_011_SuicideMiddleFiller.json │ │ ├── callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcodecall_10Filler.json │ │ ├── callcodecall_10_OOGEFiller.json │ │ ├── callcodecall_10_SuicideEndFiller.json │ │ ├── callcodecallcall_100Filler.json │ │ ├── callcodecallcall_100_OOGEFiller.json │ │ ├── callcodecallcall_100_OOGMAfterFiller.json │ │ ├── callcodecallcall_100_OOGMBeforeFiller.json │ │ ├── callcodecallcall_100_SuicideEndFiller.json │ │ ├── callcodecallcall_100_SuicideMiddleFiller.json │ │ ├── callcodecallcall_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcallcode_101Filler.json │ │ ├── callcodecallcallcode_101_OOGEFiller.json │ │ ├── callcodecallcallcode_101_OOGMAfterFiller.json │ │ ├── callcodecallcallcode_101_OOGMBeforeFiller.json │ │ ├── callcodecallcallcode_101_SuicideEndFiller.json │ │ ├── callcodecallcallcode_101_SuicideMiddleFiller.json │ │ ├── callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcode_11Filler.json │ │ ├── callcodecallcode_11_OOGEFiller.json │ │ ├── callcodecallcode_11_SuicideEndFiller.json │ │ ├── callcodecallcodecall_110Filler.json │ │ ├── callcodecallcodecall_110_OOGEFiller.json │ │ ├── callcodecallcodecall_110_OOGMAfterFiller.json │ │ ├── callcodecallcodecall_110_OOGMBeforeFiller.json │ │ ├── callcodecallcodecall_110_SuicideEndFiller.json │ │ ├── callcodecallcodecall_110_SuicideMiddleFiller.json │ │ ├── callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── callcodecallcodecallcode_111Filler.json │ │ ├── callcodecallcodecallcode_111_OOGEFiller.json │ │ ├── callcodecallcodecallcode_111_OOGMAfterFiller.json │ │ ├── callcodecallcodecallcode_111_OOGMBeforeFiller.json │ │ ├── callcodecallcodecallcode_111_SuicideEndFiller.json │ │ ├── callcodecallcodecallcode_111_SuicideMiddleFiller.json │ │ └── callcodecallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── stChainId │ │ ├── __init__.py │ │ ├── chainIdFiller.json │ │ └── chainIdGasCostFiller.json │ │ ├── stCodeCopyTest │ │ ├── ExtCodeCopyTargetRangeLongerThanCodeTestsFiller.json │ │ ├── ExtCodeCopyTestsParisFiller.json │ │ └── __init__.py │ │ ├── stCodeSizeLimit │ │ ├── __init__.py │ │ ├── codesizeInitFiller.json │ │ ├── codesizeOOGInvalidSizeFiller.json │ │ ├── codesizeValidFiller.json │ │ ├── create2CodeSizeLimitFiller.yml │ │ └── createCodeSizeLimitFiller.yml │ │ ├── stCreate2 │ │ ├── CREATE2_Bounds2Filler.json │ │ ├── CREATE2_Bounds3Filler.json │ │ ├── CREATE2_BoundsFiller.json │ │ ├── CREATE2_ContractSuicideDuringInit_ThenStoreThenReturnFiller.json │ │ ├── CREATE2_FirstByte_loopFiller.yml │ │ ├── CREATE2_HighNonceDelegatecallFiller.yml │ │ ├── CREATE2_HighNonceFiller.yml │ │ ├── CREATE2_HighNonceMinus1Filler.yml │ │ ├── CREATE2_SuicideFiller.json │ │ ├── Create2OOGFromCallRefundsFiller.yml │ │ ├── Create2OOGafterInitCodeFiller.json │ │ ├── Create2OOGafterInitCodeReturndata2Filler.json │ │ ├── Create2OOGafterInitCodeReturndata3Filler.json │ │ ├── Create2OOGafterInitCodeReturndataFiller.json │ │ ├── Create2OOGafterInitCodeReturndataSizeFiller.json │ │ ├── Create2OOGafterInitCodeRevert2Filler.json │ │ ├── Create2OOGafterInitCodeRevertFiller.json │ │ ├── Create2OnDepth1023Filler.json │ │ ├── Create2OnDepth1024Filler.json │ │ ├── Create2RecursiveFiller.json │ │ ├── CreateMessageRevertedFiller.json │ │ ├── CreateMessageRevertedOOGInInit2Filler.json │ │ ├── RevertDepthCreate2OOGBerlinFiller.json │ │ ├── RevertDepthCreate2OOGFiller.json │ │ ├── RevertDepthCreateAddressCollisionBerlinFiller.json │ │ ├── RevertDepthCreateAddressCollisionFiller.json │ │ ├── RevertInCreateInInitCreate2ParisFiller.json │ │ ├── RevertOpcodeCreateFiller.json │ │ ├── RevertOpcodeInCreateReturnsCreate2Filler.json │ │ ├── __init__.py │ │ ├── call_outsize_then_create2_successful_then_returndatasizeFiller.json │ │ ├── call_then_create2_successful_then_returndatasizeFiller.json │ │ ├── create2InitCodesFiller.json │ │ ├── create2SmartInitCodeFiller.json │ │ ├── create2callPrecompilesFiller.json │ │ ├── create2checkFieldsInInitcodeFiller.json │ │ ├── create2collisionBalanceFiller.json │ │ ├── create2collisionCode2Filler.json │ │ ├── create2collisionCodeFiller.json │ │ ├── create2collisionNonceFiller.json │ │ ├── create2collisionSelfdestructed2Filler.json │ │ ├── create2collisionSelfdestructedFiller.json │ │ ├── create2collisionSelfdestructedOOGFiller.json │ │ ├── create2collisionSelfdestructedRevertFiller.json │ │ ├── create2collisionStorageParisFiller.json │ │ ├── create2noCashFiller.json │ │ ├── returndatacopy_0_0_following_successful_createFiller.json │ │ ├── returndatacopy_afterFailing_createFiller.json │ │ ├── returndatacopy_following_createFiller.json │ │ ├── returndatacopy_following_revert_in_createFiller.json │ │ ├── returndatacopy_following_successful_createFiller.json │ │ └── returndatasize_following_successful_createFiller.json │ │ ├── stCreateTest │ │ ├── CREATE2_CallDataFiller.yml │ │ ├── CREATE2_RefundEFFiller.yml │ │ ├── CREATE_ContractRETURNBigOffsetFiller.yml │ │ ├── CREATE_ContractSSTOREDuringInitFiller.json │ │ ├── CREATE_EContractCreateEContractInInit_TrFiller.json │ │ ├── CREATE_EContractCreateNEContractInInitOOG_TrFiller.json │ │ ├── CREATE_EContractCreateNEContractInInit_TrFiller.json │ │ ├── CREATE_EContract_ThenCALLToNonExistentAccFiller.json │ │ ├── CREATE_EmptyContractAndCallIt_0weiFiller.json │ │ ├── CREATE_EmptyContractAndCallIt_1weiFiller.json │ │ ├── CREATE_EmptyContractFiller.json │ │ ├── CREATE_EmptyContractWithBalanceFiller.json │ │ ├── CREATE_EmptyContractWithStorageAndCallIt_0weiFiller.json │ │ ├── CREATE_EmptyContractWithStorageAndCallIt_1weiFiller.json │ │ ├── CREATE_EmptyContractWithStorageFiller.json │ │ ├── CREATE_HighNonceFiller.yml │ │ ├── CREATE_HighNonceMinus1Filler.yml │ │ ├── CREATE_empty000CreateinInitCode_TransactionFiller.json │ │ ├── CodeInConstructorFiller.yml │ │ ├── CreateAddressWarmAfterFailFiller.yml │ │ ├── CreateCollisionResultsFiller.yml │ │ ├── CreateCollisionToEmpty2Filler.json │ │ ├── CreateOOGFromCallRefundsFiller.yml │ │ ├── CreateOOGFromEOARefundsFiller.yml │ │ ├── CreateOOGafterInitCodeFiller.json │ │ ├── CreateOOGafterInitCodeReturndata2Filler.json │ │ ├── CreateOOGafterInitCodeReturndata3Filler.json │ │ ├── CreateOOGafterInitCodeReturndataFiller.json │ │ ├── CreateOOGafterInitCodeReturndataSizeFiller.json │ │ ├── CreateOOGafterInitCodeRevert2Filler.json │ │ ├── CreateOOGafterInitCodeRevertFiller.json │ │ ├── CreateOOGafterMaxCodesizeFiller.yml │ │ ├── CreateResultsFiller.yml │ │ ├── CreateTransactionCallDataFiller.yml │ │ ├── CreateTransactionHighNonceFiller.yml │ │ ├── CreateTransactionRefundEFFiller.yml │ │ ├── TransactionCollisionToEmpty2Filler.json │ │ ├── TransactionCollisionToEmptyButCodeFiller.json │ │ ├── TransactionCollisionToEmptyButNonceFiller.json │ │ ├── __init__.py │ │ ├── createFailResultFiller.yml │ │ └── createLargeResultFiller.yml │ │ ├── stDelegatecallTestHomestead │ │ ├── Call1024BalanceTooLowFiller.json │ │ ├── Call1024OOGFiller.json │ │ ├── Call1024PreCallsFiller.json │ │ ├── CallLoseGasOOGFiller.json │ │ ├── CallRecursiveBombPreCallFiller.json │ │ ├── CallcodeLoseGasOOGFiller.json │ │ ├── Delegatecall1024Filler.json │ │ ├── Delegatecall1024OOGFiller.json │ │ ├── __init__.py │ │ ├── callOutput1Filler.json │ │ ├── callOutput2Filler.json │ │ ├── callOutput3Filler.json │ │ ├── callOutput3partialFailFiller.json │ │ ├── callOutput3partialFiller.json │ │ ├── callWithHighValueAndGasOOGFiller.json │ │ ├── callcodeOutput3Filler.json │ │ ├── callcodeWithHighValueAndGasOOGFiller.json │ │ ├── deleagateCallAfterValueTransferFiller.json │ │ ├── delegatecallAndOOGatTxLevelFiller.json │ │ ├── delegatecallBasicFiller.json │ │ ├── delegatecallEmptycontractFiller.json │ │ ├── delegatecallInInitcodeToEmptyContractFiller.json │ │ ├── delegatecallInInitcodeToExistingContractFiller.json │ │ ├── delegatecallInInitcodeToExistingContractOOGFiller.json │ │ ├── delegatecallOOGinCallFiller.json │ │ ├── delegatecallSenderCheckFiller.json │ │ ├── delegatecallValueCheckFiller.json │ │ ├── delegatecodeDynamicCode2SelfCallFiller.json │ │ └── delegatecodeDynamicCodeFiller.json │ │ ├── stEIP150Specific │ │ ├── CallAndCallcodeConsumeMoreGasThenTransactionHasFiller.json │ │ ├── CallAskMoreGasOnDepth2ThenTransactionHasFiller.json │ │ ├── CallGoesOOGOnSecondLevel2Filler.json │ │ ├── CallGoesOOGOnSecondLevelFiller.json │ │ ├── CreateAndGasInsideCreateFiller.json │ │ ├── DelegateCallOnEIPFiller.json │ │ ├── ExecuteCallThatAskForeGasThenTrabsactionHasFiller.json │ │ ├── NewGasPriceForCodesFiller.json │ │ ├── SuicideToExistingContractFiller.json │ │ ├── SuicideToNotExistingContractFiller.json │ │ ├── Transaction64Rule_d64e0Filler.json │ │ ├── Transaction64Rule_d64m1Filler.json │ │ ├── Transaction64Rule_d64p1Filler.json │ │ ├── Transaction64Rule_integerBoundariesFiller.yml │ │ └── __init__.py │ │ ├── stEIP150singleCodeGasPrices │ │ ├── RawBalanceGasFiller.json │ │ ├── RawCallCodeGasAskFiller.json │ │ ├── RawCallCodeGasFiller.json │ │ ├── RawCallCodeGasMemoryAskFiller.json │ │ ├── RawCallCodeGasMemoryFiller.json │ │ ├── RawCallCodeGasValueTransferAskFiller.json │ │ ├── RawCallCodeGasValueTransferFiller.json │ │ ├── RawCallCodeGasValueTransferMemoryAskFiller.json │ │ ├── RawCallCodeGasValueTransferMemoryFiller.json │ │ ├── RawCallGasAskFiller.json │ │ ├── RawCallGasFiller.json │ │ ├── RawCallGasValueTransferAskFiller.json │ │ ├── RawCallGasValueTransferFiller.json │ │ ├── RawCallGasValueTransferMemoryAskFiller.json │ │ ├── RawCallGasValueTransferMemoryFiller.json │ │ ├── RawCallMemoryGasAskFiller.json │ │ ├── RawCallMemoryGasFiller.json │ │ ├── RawCreateFailGasValueTransfer2Filler.json │ │ ├── RawCreateFailGasValueTransferFiller.json │ │ ├── RawCreateGasFiller.json │ │ ├── RawCreateGasMemoryFiller.json │ │ ├── RawCreateGasValueTransferFiller.json │ │ ├── RawCreateGasValueTransferMemoryFiller.json │ │ ├── RawDelegateCallGasAskFiller.json │ │ ├── RawDelegateCallGasFiller.json │ │ ├── RawDelegateCallGasMemoryAskFiller.json │ │ ├── RawDelegateCallGasMemoryFiller.json │ │ ├── RawExtCodeCopyGasFiller.json │ │ ├── RawExtCodeCopyMemoryGasFiller.json │ │ ├── RawExtCodeSizeGasFiller.json │ │ ├── __init__.py │ │ ├── eip2929-ffFiller.yml │ │ ├── eip2929Filler.yml │ │ ├── eip2929OOGFiller.yml │ │ ├── gasCostBerlinFiller.yml │ │ ├── gasCostExpFiller.yml │ │ ├── gasCostFiller.yml │ │ ├── gasCostJumpFiller.yml │ │ ├── gasCostMemSegFiller.yml │ │ ├── gasCostMemoryFiller.yml │ │ └── gasCostReturnFiller.yml │ │ ├── stEIP1559 │ │ ├── __init__.py │ │ ├── baseFeeDiffPlacesFiller.yml │ │ ├── baseFeeDiffPlacesOsakaFiller.yml │ │ ├── gasPriceDiffPlacesFiller.yml │ │ ├── gasPriceDiffPlacesOsakaFiller.yml │ │ ├── lowFeeCapFiller.yml │ │ ├── lowGasLimitFiller.yml │ │ ├── lowGasPriceOldTypesFiller.yml │ │ ├── outOfFundsFiller.yml │ │ ├── outOfFundsOldTypesFiller.yml │ │ ├── senderBalanceFiller.yml │ │ ├── tipTooHighFiller.yml │ │ ├── transactionIntinsicBug_ParisFiller.yml │ │ ├── typeTwoBerlinFiller.yml │ │ └── valCausesOOFFiller.yml │ │ ├── stEIP158Specific │ │ ├── CALL_OneVCallSuicide2Filler.json │ │ ├── CALL_OneVCallSuicideFiller.json │ │ ├── CALL_ZeroVCallSuicideFiller.json │ │ ├── EXP_EmptyFiller.json │ │ ├── EXTCODESIZE_toEpmtyParisFiller.json │ │ ├── EXTCODESIZE_toNonExistentFiller.json │ │ ├── __init__.py │ │ ├── callToEmptyThenCallErrorParisFiller.json │ │ └── vitalikTransactionTestParisFiller.json │ │ ├── stEIP2930 │ │ ├── __init__.py │ │ ├── addressOpcodesFiller.yml │ │ ├── coinbaseT01Filler.yml │ │ ├── coinbaseT2Filler.yml │ │ ├── manualCreateFiller.yml │ │ ├── storageCostsFiller.yml │ │ ├── transactionCostsFiller.yml │ │ └── variedContextFiller.yml │ │ ├── stEIP3607 │ │ ├── __init__.py │ │ ├── initCollidingWithNonEmptyAccountFiller.yml │ │ ├── transactionCollidingWithNonEmptyAccount_callsFiller.yml │ │ ├── transactionCollidingWithNonEmptyAccount_callsItselfFiller.yml │ │ ├── transactionCollidingWithNonEmptyAccount_init_ParisFiller.yml │ │ └── transactionCollidingWithNonEmptyAccount_send_ParisFiller.yml │ │ ├── stExample │ │ ├── __init__.py │ │ ├── accessListExampleFiller.yml │ │ ├── add11Filler.json │ │ ├── add11_ymlFiller.yml │ │ ├── basefeeExampleFiller.yml │ │ ├── eip1559Filler.yml │ │ ├── indexesOmitExampleFiller.yml │ │ ├── invalidTrFiller.json │ │ ├── labelsExampleFiller.yml │ │ ├── mergeTestFiller.yml │ │ ├── rangesExampleFiller.yml │ │ └── yulExampleFiller.yml │ │ ├── stExtCodeHash │ │ ├── __init__.py │ │ ├── callToNonExistentFiller.json │ │ ├── callToSuicideThenExtcodehashFiller.json │ │ ├── codeCopyZero_ParisFiller.yml │ │ ├── createEmptyThenExtcodehashFiller.json │ │ ├── dynamicAccountOverwriteEmpty_ParisFiller.yml │ │ ├── extCodeCopyBoundsFiller.yml │ │ ├── extCodeHashAccountWithoutCodeFiller.yml │ │ ├── extCodeHashCALLCODEFiller.json │ │ ├── extCodeHashCALLFiller.json │ │ ├── extCodeHashChangedAccountFiller.json │ │ ├── extCodeHashCreatedAndDeletedAccountCallFiller.json │ │ ├── extCodeHashCreatedAndDeletedAccountFiller.json │ │ ├── extCodeHashCreatedAndDeletedAccountRecheckInOuterCallFiller.json │ │ ├── extCodeHashCreatedAndDeletedAccountStaticCallFiller.json │ │ ├── extCodeHashDELEGATECALLFiller.json │ │ ├── extCodeHashDeletedAccount1CancunFiller.yml │ │ ├── extCodeHashDeletedAccount1Filler.yml │ │ ├── extCodeHashDeletedAccount2CancunFiller.yml │ │ ├── extCodeHashDeletedAccount2Filler.yml │ │ ├── extCodeHashDeletedAccount3Filler.yml │ │ ├── extCodeHashDeletedAccount4Filler.yml │ │ ├── extCodeHashDeletedAccountCancunFiller.yml │ │ ├── extCodeHashDeletedAccountFiller.yml │ │ ├── extCodeHashDynamicArgumentFiller.json │ │ ├── extCodeHashInInitCodeFiller.json │ │ ├── extCodeHashMaxCodeSizeFiller.yml │ │ ├── extCodeHashNewAccountFiller.json │ │ ├── extCodeHashNonExistingAccountFiller.yml │ │ ├── extCodeHashPrecompilesFiller.yml │ │ ├── extCodeHashSTATICCALLFiller.json │ │ ├── extCodeHashSelfFiller.json │ │ ├── extCodeHashSelfInInitFiller.json │ │ ├── extCodeHashSubcallOOGFiller.yml │ │ ├── extCodeHashSubcallSuicideCancunFiller.yml │ │ ├── extCodeHashSubcallSuicideFiller.yml │ │ └── extcodehashEmpty_ParisFiller.yml │ │ ├── stHomesteadSpecific │ │ ├── __init__.py │ │ ├── contractCreationOOGdontLeaveEmptyContractFiller.json │ │ ├── contractCreationOOGdontLeaveEmptyContractViaTransactionFiller.json │ │ ├── createContractViaContractFiller.json │ │ ├── createContractViaContractOOGInitCodeFiller.json │ │ └── createContractViaTransactionCost53000Filler.json │ │ ├── stInitCodeTest │ │ ├── CallContractToCreateContractAndCallItOOGFiller.json │ │ ├── CallContractToCreateContractNoCashFiller.json │ │ ├── CallContractToCreateContractOOGBonusGasFiller.json │ │ ├── CallContractToCreateContractOOGFiller.json │ │ ├── CallContractToCreateContractWhichWouldCreateContractIfCalledFiller.json │ │ ├── CallContractToCreateContractWhichWouldCreateContractInInitCodeFiller.json │ │ ├── CallRecursiveContractFiller.json │ │ ├── CallTheContractToCreateEmptyContractFiller.json │ │ ├── OutOfGasContractCreationFiller.json │ │ ├── OutOfGasPrefundedContractCreationFiller.json │ │ ├── ReturnTest2Filler.json │ │ ├── ReturnTestFiller.json │ │ ├── StackUnderFlowContractCreationFiller.json │ │ ├── TransactionCreateAutoSuicideContractFiller.json │ │ ├── TransactionCreateRandomInitCodeFiller.json │ │ ├── TransactionCreateStopInInitcodeFiller.json │ │ ├── TransactionCreateSuicideInInitcodeFiller.json │ │ └── __init__.py │ │ ├── stLogTests │ │ ├── __init__.py │ │ ├── log0_emptyMemFiller.json │ │ ├── log0_logMemStartTooHighFiller.json │ │ ├── log0_logMemsizeTooHighFiller.json │ │ ├── log0_logMemsizeZeroFiller.json │ │ ├── log0_nonEmptyMemFiller.json │ │ ├── log0_nonEmptyMem_logMemSize1Filler.json │ │ ├── log0_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ ├── log1_CallerFiller.json │ │ ├── log1_MaxTopicFiller.json │ │ ├── log1_emptyMemFiller.json │ │ ├── log1_logMemStartTooHighFiller.json │ │ ├── log1_logMemsizeTooHighFiller.json │ │ ├── log1_logMemsizeZeroFiller.json │ │ ├── log1_nonEmptyMemFiller.json │ │ ├── log1_nonEmptyMem_logMemSize1Filler.json │ │ ├── log1_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ ├── log2_CallerFiller.json │ │ ├── log2_MaxTopicFiller.json │ │ ├── log2_emptyMemFiller.json │ │ ├── log2_logMemStartTooHighFiller.json │ │ ├── log2_logMemsizeTooHighFiller.json │ │ ├── log2_logMemsizeZeroFiller.json │ │ ├── log2_nonEmptyMemFiller.json │ │ ├── log2_nonEmptyMem_logMemSize1Filler.json │ │ ├── log2_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ ├── log3_CallerFiller.json │ │ ├── log3_MaxTopicFiller.json │ │ ├── log3_PCFiller.json │ │ ├── log3_emptyMemFiller.json │ │ ├── log3_logMemStartTooHighFiller.json │ │ ├── log3_logMemsizeTooHighFiller.json │ │ ├── log3_logMemsizeZeroFiller.json │ │ ├── log3_nonEmptyMemFiller.json │ │ ├── log3_nonEmptyMem_logMemSize1Filler.json │ │ ├── log3_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ ├── log4_CallerFiller.json │ │ ├── log4_MaxTopicFiller.json │ │ ├── log4_PCFiller.json │ │ ├── log4_emptyMemFiller.json │ │ ├── log4_logMemStartTooHighFiller.json │ │ ├── log4_logMemsizeTooHighFiller.json │ │ ├── log4_logMemsizeZeroFiller.json │ │ ├── log4_nonEmptyMemFiller.json │ │ ├── log4_nonEmptyMem_logMemSize1Filler.json │ │ ├── log4_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ └── logInOOG_CallFiller.json │ │ ├── stMemExpandingEIP150Calls │ │ ├── CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCallsFiller.json │ │ ├── CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCallsFiller.json │ │ ├── CallGoesOOGOnSecondLevel2WithMemExpandingCallsFiller.json │ │ ├── CallGoesOOGOnSecondLevelWithMemExpandingCallsFiller.json │ │ ├── CreateAndGasInsideCreateWithMemExpandingCallsFiller.json │ │ ├── DelegateCallOnEIPWithMemExpandingCallsFiller.json │ │ ├── ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCallsFiller.json │ │ ├── NewGasPriceForCodesWithMemExpandingCallsFiller.json │ │ ├── OOGinReturnFiller.yml │ │ └── __init__.py │ │ ├── stMemoryStressTest │ │ ├── CALLCODE_Bounds2Filler.json │ │ ├── CALLCODE_Bounds3Filler.json │ │ ├── CALLCODE_Bounds4Filler.json │ │ ├── CALLCODE_BoundsFiller.json │ │ ├── CALL_Bounds2Filler.json │ │ ├── CALL_Bounds2aFiller.json │ │ ├── CALL_Bounds3Filler.json │ │ ├── CALL_BoundsFiller.json │ │ ├── CREATE_Bounds2Filler.json │ │ ├── CREATE_Bounds3Filler.json │ │ ├── CREATE_BoundsFiller.json │ │ ├── DELEGATECALL_Bounds2Filler.json │ │ ├── DELEGATECALL_Bounds3Filler.json │ │ ├── DELEGATECALL_BoundsFiller.json │ │ ├── DUP_BoundsFiller.json │ │ ├── FillStackFiller.json │ │ ├── JUMPI_BoundsFiller.json │ │ ├── JUMP_Bounds2Filler.json │ │ ├── JUMP_BoundsFiller.json │ │ ├── MLOAD_Bounds2Filler.json │ │ ├── MLOAD_Bounds3Filler.json │ │ ├── MLOAD_BoundsFiller.json │ │ ├── MSTORE_Bounds2Filler.json │ │ ├── MSTORE_Bounds2aFiller.json │ │ ├── MSTORE_BoundsFiller.json │ │ ├── POP_BoundsFiller.json │ │ ├── RETURN_BoundsFiller.json │ │ ├── SLOAD_BoundsFiller.json │ │ ├── SSTORE_BoundsFiller.json │ │ ├── __init__.py │ │ ├── mload32bitBound2Filler.json │ │ ├── mload32bitBoundFiller.json │ │ ├── mload32bitBound_MsizeFiller.json │ │ ├── mload32bitBound_return2Filler.json │ │ ├── mload32bitBound_returnFiller.json │ │ ├── static_CALL_Bounds2Filler.json │ │ ├── static_CALL_Bounds2aFiller.json │ │ ├── static_CALL_Bounds3Filler.json │ │ └── static_CALL_BoundsFiller.json │ │ ├── stMemoryTest │ │ ├── __init__.py │ │ ├── bufferFiller.yml │ │ ├── bufferSrcOffsetFiller.yml │ │ ├── callDataCopyOffsetFiller.json │ │ ├── calldatacopy_dejavu2Filler.json │ │ ├── calldatacopy_dejavuFiller.json │ │ ├── codeCopyOffsetFiller.json │ │ ├── codecopy_dejavu2Filler.json │ │ ├── codecopy_dejavuFiller.json │ │ ├── extcodecopy_dejavuFiller.json │ │ ├── log1_dejavuFiller.json │ │ ├── log2_dejavuFiller.json │ │ ├── log3_dejavuFiller.json │ │ ├── log4_dejavuFiller.json │ │ ├── mem0b_singleByteFiller.json │ │ ├── mem31b_singleByteFiller.json │ │ ├── mem32b_singleByteFiller.json │ │ ├── mem32kb+1Filler.json │ │ ├── mem32kb+31Filler.json │ │ ├── mem32kb+32Filler.json │ │ ├── mem32kb+33Filler.json │ │ ├── mem32kb-1Filler.json │ │ ├── mem32kb-31Filler.json │ │ ├── mem32kb-32Filler.json │ │ ├── mem32kb-33Filler.json │ │ ├── mem32kbFiller.json │ │ ├── mem32kb_singleByte+1Filler.json │ │ ├── mem32kb_singleByte+31Filler.json │ │ ├── mem32kb_singleByte+32Filler.json │ │ ├── mem32kb_singleByte+33Filler.json │ │ ├── mem32kb_singleByte-1Filler.json │ │ ├── mem32kb_singleByte-31Filler.json │ │ ├── mem32kb_singleByte-32Filler.json │ │ ├── mem32kb_singleByte-33Filler.json │ │ ├── mem32kb_singleByteFiller.json │ │ ├── mem33b_singleByteFiller.json │ │ ├── mem64kb+1Filler.json │ │ ├── mem64kb+31Filler.json │ │ ├── mem64kb+32Filler.json │ │ ├── mem64kb+33Filler.json │ │ ├── mem64kb-1Filler.json │ │ ├── mem64kb-31Filler.json │ │ ├── mem64kb-32Filler.json │ │ ├── mem64kb-33Filler.json │ │ ├── mem64kbFiller.json │ │ ├── mem64kb_singleByte+1Filler.json │ │ ├── mem64kb_singleByte+31Filler.json │ │ ├── mem64kb_singleByte+32Filler.json │ │ ├── mem64kb_singleByte+33Filler.json │ │ ├── mem64kb_singleByte-1Filler.json │ │ ├── mem64kb_singleByte-31Filler.json │ │ ├── mem64kb_singleByte-32Filler.json │ │ ├── mem64kb_singleByte-33Filler.json │ │ ├── mem64kb_singleByteFiller.json │ │ ├── memCopySelfFiller.yml │ │ ├── memReturnFiller.json │ │ ├── mload16bitBoundFiller.json │ │ ├── mload8bitBoundFiller.json │ │ ├── mload_dejavuFiller.json │ │ ├── mstore_dejavuFiller.json │ │ ├── mstroe8_dejavuFiller.json │ │ ├── oogFiller.yml │ │ ├── sha3_dejavuFiller.json │ │ ├── stackLimitGas_1023Filler.json │ │ ├── stackLimitGas_1024Filler.json │ │ ├── stackLimitGas_1025Filler.json │ │ ├── stackLimitPush31_1023Filler.json │ │ ├── stackLimitPush31_1024Filler.json │ │ ├── stackLimitPush31_1025Filler.json │ │ ├── stackLimitPush32_1023Filler.json │ │ ├── stackLimitPush32_1024Filler.json │ │ └── stackLimitPush32_1025Filler.json │ │ ├── stNonZeroCallsTest │ │ ├── NonZeroValue_CALLCODEFiller.json │ │ ├── NonZeroValue_CALLCODE_ToEmpty_ParisFiller.json │ │ ├── NonZeroValue_CALLCODE_ToNonNonZeroBalanceFiller.json │ │ ├── NonZeroValue_CALLCODE_ToOneStorageKey_ParisFiller.json │ │ ├── NonZeroValue_CALLFiller.json │ │ ├── NonZeroValue_CALL_ToEmpty_ParisFiller.json │ │ ├── NonZeroValue_CALL_ToNonNonZeroBalanceFiller.json │ │ ├── NonZeroValue_CALL_ToOneStorageKey_ParisFiller.json │ │ ├── NonZeroValue_DELEGATECALLFiller.json │ │ ├── NonZeroValue_DELEGATECALL_ToEmpty_ParisFiller.json │ │ ├── NonZeroValue_DELEGATECALL_ToNonNonZeroBalanceFiller.json │ │ ├── NonZeroValue_DELEGATECALL_ToOneStorageKey_ParisFiller.json │ │ ├── NonZeroValue_SUICIDEFiller.json │ │ ├── NonZeroValue_SUICIDE_ToEmpty_ParisFiller.json │ │ ├── NonZeroValue_SUICIDE_ToNonNonZeroBalanceFiller.json │ │ ├── NonZeroValue_SUICIDE_ToOneStorageKey_ParisFiller.json │ │ ├── NonZeroValue_TransactionCALLFiller.json │ │ ├── NonZeroValue_TransactionCALL_ToEmpty_ParisFiller.json │ │ ├── NonZeroValue_TransactionCALL_ToNonNonZeroBalanceFiller.json │ │ ├── NonZeroValue_TransactionCALL_ToOneStorageKey_ParisFiller.json │ │ ├── NonZeroValue_TransactionCALLwithDataFiller.json │ │ ├── NonZeroValue_TransactionCALLwithData_ToEmpty_ParisFiller.json │ │ ├── NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalanceFiller.json │ │ ├── NonZeroValue_TransactionCALLwithData_ToOneStorageKey_ParisFiller.json │ │ └── __init__.py │ │ ├── stPreCompiledContracts │ │ ├── __init__.py │ │ ├── modexpFiller.json │ │ ├── modexpTestsFiller.yml │ │ ├── precompsEIP2929CancunFiller.yml │ │ └── sec80Filler.json │ │ ├── stPreCompiledContracts2 │ │ ├── CALLCODEEcrecover0Filler.json │ │ ├── CALLCODEEcrecover0_0inputFiller.json │ │ ├── CALLCODEEcrecover0_Gas2999Filler.json │ │ ├── CALLCODEEcrecover0_NoGasFiller.json │ │ ├── CALLCODEEcrecover0_completeReturnValueFiller.json │ │ ├── CALLCODEEcrecover0_gas3000Filler.json │ │ ├── CALLCODEEcrecover0_overlappingInputOutputFiller.json │ │ ├── CALLCODEEcrecover1Filler.json │ │ ├── CALLCODEEcrecover2Filler.json │ │ ├── CALLCODEEcrecover3Filler.json │ │ ├── CALLCODEEcrecover80Filler.json │ │ ├── CALLCODEEcrecoverH_prefixed0Filler.json │ │ ├── CALLCODEEcrecoverR_prefixed0Filler.json │ │ ├── CALLCODEEcrecoverS_prefixed0Filler.json │ │ ├── CALLCODEEcrecoverV_prefixed0Filler.json │ │ ├── CALLCODEEcrecoverV_prefixedf0Filler.json │ │ ├── CALLCODERipemd160_0Filler.json │ │ ├── CALLCODERipemd160_1Filler.json │ │ ├── CALLCODERipemd160_2Filler.json │ │ ├── CALLCODERipemd160_3Filler.json │ │ ├── CALLCODERipemd160_3_postfixed0Filler.json │ │ ├── CALLCODERipemd160_3_prefixed0Filler.json │ │ ├── CALLCODERipemd160_4Filler.json │ │ ├── CALLCODERipemd160_4_gas719Filler.json │ │ ├── CALLCODERipemd160_5Filler.json │ │ ├── CALLCODESha256_0Filler.json │ │ ├── CALLCODESha256_1Filler.json │ │ ├── CALLCODESha256_1_nonzeroValueFiller.json │ │ ├── CALLCODESha256_2Filler.json │ │ ├── CALLCODESha256_3Filler.json │ │ ├── CALLCODESha256_3_postfix0Filler.json │ │ ├── CALLCODESha256_3_prefix0Filler.json │ │ ├── CALLCODESha256_4Filler.json │ │ ├── CALLCODESha256_4_gas99Filler.json │ │ ├── CALLCODESha256_5Filler.json │ │ ├── CallEcrecover0Filler.json │ │ ├── CallEcrecover0_0inputFiller.json │ │ ├── CallEcrecover0_Gas2999Filler.json │ │ ├── CallEcrecover0_NoGasFiller.json │ │ ├── CallEcrecover0_completeReturnValueFiller.json │ │ ├── CallEcrecover0_gas3000Filler.json │ │ ├── CallEcrecover0_overlappingInputOutputFiller.json │ │ ├── CallEcrecover1Filler.json │ │ ├── CallEcrecover2Filler.json │ │ ├── CallEcrecover3Filler.json │ │ ├── CallEcrecover80Filler.json │ │ ├── CallEcrecoverCheckLengthFiller.json │ │ ├── CallEcrecoverCheckLengthWrongVFiller.json │ │ ├── CallEcrecoverH_prefixed0Filler.json │ │ ├── CallEcrecoverInvalidSignatureFiller.json │ │ ├── CallEcrecoverR_prefixed0Filler.json │ │ ├── CallEcrecoverS_prefixed0Filler.json │ │ ├── CallEcrecoverUnrecoverableKeyFiller.json │ │ ├── CallEcrecoverV_prefixed0Filler.json │ │ ├── CallEcrecover_OverflowFiller.yml │ │ ├── CallRipemd160_0Filler.json │ │ ├── CallRipemd160_1Filler.json │ │ ├── CallRipemd160_2Filler.json │ │ ├── CallRipemd160_3Filler.json │ │ ├── CallRipemd160_3_postfixed0Filler.json │ │ ├── CallRipemd160_3_prefixed0Filler.json │ │ ├── CallRipemd160_4Filler.json │ │ ├── CallRipemd160_4_gas719Filler.json │ │ ├── CallRipemd160_5Filler.json │ │ ├── CallSha256_0Filler.json │ │ ├── CallSha256_1Filler.json │ │ ├── CallSha256_1_nonzeroValueFiller.json │ │ ├── CallSha256_2Filler.json │ │ ├── CallSha256_3Filler.json │ │ ├── CallSha256_3_postfix0Filler.json │ │ ├── CallSha256_3_prefix0Filler.json │ │ ├── CallSha256_4Filler.json │ │ ├── CallSha256_4_gas99Filler.json │ │ ├── CallSha256_5Filler.json │ │ ├── __init__.py │ │ ├── ecrecoverShortBuffFiller.yml │ │ ├── ecrecoverWeirdVFiller.yml │ │ ├── modexpRandomInputFiller.json │ │ ├── modexp_0_0_0_20500Filler.json │ │ ├── modexp_0_0_0_22000Filler.json │ │ ├── modexp_0_0_0_25000Filler.json │ │ └── modexp_0_0_0_35000Filler.json │ │ ├── stQuadraticComplexityTest │ │ ├── Call1MB1024CalldepthFiller.json │ │ ├── Call20KbytesContract50_1Filler.json │ │ ├── Call20KbytesContract50_2Filler.json │ │ ├── Call20KbytesContract50_3Filler.json │ │ ├── Call50000Filler.json │ │ ├── Call50000_ecrecFiller.json │ │ ├── Call50000_identity2Filler.json │ │ ├── Call50000_identityFiller.json │ │ ├── Call50000_rip160Filler.json │ │ ├── Call50000_sha256Filler.json │ │ ├── Callcode50000Filler.json │ │ ├── Create1000ByzantiumFiller.json │ │ ├── Create1000Filler.json │ │ ├── Create1000ShnghaiFiller.json │ │ ├── QuadraticComplexitySolidity_CallDataCopyFiller.json │ │ ├── Return50000Filler.json │ │ ├── Return50000_2Filler.json │ │ └── __init__.py │ │ ├── stRandom │ │ ├── __init__.py │ │ ├── randomStatetest0Filler.json │ │ ├── randomStatetest100Filler.json │ │ ├── randomStatetest102Filler.json │ │ ├── randomStatetest103Filler.json │ │ ├── randomStatetest104Filler.json │ │ ├── randomStatetest105Filler.json │ │ ├── randomStatetest106Filler.json │ │ ├── randomStatetest107Filler.json │ │ ├── randomStatetest108Filler.json │ │ ├── randomStatetest10Filler.json │ │ ├── randomStatetest110Filler.json │ │ ├── randomStatetest111Filler.json │ │ ├── randomStatetest112Filler.json │ │ ├── randomStatetest114Filler.json │ │ ├── randomStatetest115Filler.json │ │ ├── randomStatetest116Filler.json │ │ ├── randomStatetest117Filler.json │ │ ├── randomStatetest118Filler.json │ │ ├── randomStatetest119Filler.json │ │ ├── randomStatetest11Filler.json │ │ ├── randomStatetest120Filler.json │ │ ├── randomStatetest121Filler.json │ │ ├── randomStatetest122Filler.json │ │ ├── randomStatetest124Filler.json │ │ ├── randomStatetest125Filler.json │ │ ├── randomStatetest126Filler.json │ │ ├── randomStatetest129Filler.json │ │ ├── randomStatetest12Filler.json │ │ ├── randomStatetest130Filler.json │ │ ├── randomStatetest131Filler.json │ │ ├── randomStatetest133Filler.json │ │ ├── randomStatetest134Filler.json │ │ ├── randomStatetest135Filler.json │ │ ├── randomStatetest137Filler.json │ │ ├── randomStatetest138Filler.json │ │ ├── randomStatetest139Filler.json │ │ ├── randomStatetest13Filler.json │ │ ├── randomStatetest142Filler.json │ │ ├── randomStatetest143Filler.json │ │ ├── randomStatetest144Filler.json │ │ ├── randomStatetest145Filler.json │ │ ├── randomStatetest146Filler.json │ │ ├── randomStatetest147Filler.json │ │ ├── randomStatetest148Filler.json │ │ ├── randomStatetest149Filler.json │ │ ├── randomStatetest14Filler.json │ │ ├── randomStatetest150Filler.json │ │ ├── randomStatetest151Filler.json │ │ ├── randomStatetest153Filler.json │ │ ├── randomStatetest154Filler.json │ │ ├── randomStatetest155Filler.json │ │ ├── randomStatetest156Filler.json │ │ ├── randomStatetest157Filler.json │ │ ├── randomStatetest158Filler.json │ │ ├── randomStatetest159Filler.json │ │ ├── randomStatetest15Filler.json │ │ ├── randomStatetest161Filler.json │ │ ├── randomStatetest162Filler.json │ │ ├── randomStatetest163Filler.json │ │ ├── randomStatetest164Filler.json │ │ ├── randomStatetest166Filler.json │ │ ├── randomStatetest167Filler.json │ │ ├── randomStatetest169Filler.json │ │ ├── randomStatetest16Filler.json │ │ ├── randomStatetest171Filler.json │ │ ├── randomStatetest172Filler.json │ │ ├── randomStatetest173Filler.json │ │ ├── randomStatetest174Filler.json │ │ ├── randomStatetest175Filler.json │ │ ├── randomStatetest176Filler.json │ │ ├── randomStatetest177Filler.json │ │ ├── randomStatetest178Filler.json │ │ ├── randomStatetest179Filler.json │ │ ├── randomStatetest17Filler.json │ │ ├── randomStatetest180Filler.json │ │ ├── randomStatetest183Filler.json │ │ ├── randomStatetest184Filler.json │ │ ├── randomStatetest185Filler.json │ │ ├── randomStatetest187Filler.json │ │ ├── randomStatetest188Filler.json │ │ ├── randomStatetest189Filler.json │ │ ├── randomStatetest18Filler.json │ │ ├── randomStatetest190Filler.json │ │ ├── randomStatetest191Filler.json │ │ ├── randomStatetest192Filler.json │ │ ├── randomStatetest194Filler.json │ │ ├── randomStatetest195Filler.json │ │ ├── randomStatetest196Filler.json │ │ ├── randomStatetest197Filler.json │ │ ├── randomStatetest198Filler.json │ │ ├── randomStatetest199Filler.json │ │ ├── randomStatetest19Filler.json │ │ ├── randomStatetest1Filler.json │ │ ├── randomStatetest200Filler.json │ │ ├── randomStatetest201Filler.json │ │ ├── randomStatetest202Filler.json │ │ ├── randomStatetest204Filler.json │ │ ├── randomStatetest205Filler.json │ │ ├── randomStatetest206Filler.json │ │ ├── randomStatetest207Filler.json │ │ ├── randomStatetest208Filler.json │ │ ├── randomStatetest209Filler.json │ │ ├── randomStatetest20Filler.json │ │ ├── randomStatetest210Filler.json │ │ ├── randomStatetest211Filler.json │ │ ├── randomStatetest212Filler.json │ │ ├── randomStatetest214Filler.json │ │ ├── randomStatetest215Filler.json │ │ ├── randomStatetest216Filler.json │ │ ├── randomStatetest217Filler.json │ │ ├── randomStatetest219Filler.json │ │ ├── randomStatetest220Filler.json │ │ ├── randomStatetest221Filler.json │ │ ├── randomStatetest222Filler.json │ │ ├── randomStatetest225Filler.json │ │ ├── randomStatetest226Filler.json │ │ ├── randomStatetest227Filler.json │ │ ├── randomStatetest228Filler.json │ │ ├── randomStatetest22Filler.json │ │ ├── randomStatetest230Filler.json │ │ ├── randomStatetest231Filler.json │ │ ├── randomStatetest232Filler.json │ │ ├── randomStatetest233Filler.json │ │ ├── randomStatetest236Filler.json │ │ ├── randomStatetest237Filler.json │ │ ├── randomStatetest238Filler.json │ │ ├── randomStatetest23Filler.json │ │ ├── randomStatetest242Filler.json │ │ ├── randomStatetest243Filler.json │ │ ├── randomStatetest244Filler.json │ │ ├── randomStatetest245Filler.json │ │ ├── randomStatetest246Filler.json │ │ ├── randomStatetest247Filler.json │ │ ├── randomStatetest248Filler.json │ │ ├── randomStatetest249Filler.json │ │ ├── randomStatetest24Filler.json │ │ ├── randomStatetest250Filler.json │ │ ├── randomStatetest251Filler.json │ │ ├── randomStatetest252Filler.json │ │ ├── randomStatetest254Filler.json │ │ ├── randomStatetest257Filler.json │ │ ├── randomStatetest259Filler.json │ │ ├── randomStatetest25Filler.json │ │ ├── randomStatetest260Filler.json │ │ ├── randomStatetest261Filler.json │ │ ├── randomStatetest263Filler.json │ │ ├── randomStatetest264Filler.json │ │ ├── randomStatetest265Filler.json │ │ ├── randomStatetest266Filler.json │ │ ├── randomStatetest267Filler.json │ │ ├── randomStatetest268Filler.json │ │ ├── randomStatetest269Filler.json │ │ ├── randomStatetest26Filler.json │ │ ├── randomStatetest270Filler.json │ │ ├── randomStatetest271Filler.json │ │ ├── randomStatetest273Filler.json │ │ ├── randomStatetest274Filler.json │ │ ├── randomStatetest275Filler.json │ │ ├── randomStatetest276Filler.json │ │ ├── randomStatetest278Filler.json │ │ ├── randomStatetest279Filler.json │ │ ├── randomStatetest27Filler.json │ │ ├── randomStatetest280Filler.json │ │ ├── randomStatetest281Filler.json │ │ ├── randomStatetest282Filler.json │ │ ├── randomStatetest283Filler.json │ │ ├── randomStatetest285Filler.json │ │ ├── randomStatetest286Filler.json │ │ ├── randomStatetest287Filler.json │ │ ├── randomStatetest288Filler.json │ │ ├── randomStatetest28Filler.json │ │ ├── randomStatetest290Filler.json │ │ ├── randomStatetest291Filler.json │ │ ├── randomStatetest292Filler.json │ │ ├── randomStatetest293Filler.json │ │ ├── randomStatetest294Filler.json │ │ ├── randomStatetest295Filler.json │ │ ├── randomStatetest296Filler.json │ │ ├── randomStatetest297Filler.json │ │ ├── randomStatetest298Filler.json │ │ ├── randomStatetest299Filler.json │ │ ├── randomStatetest29Filler.json │ │ ├── randomStatetest2Filler.json │ │ ├── randomStatetest300Filler.json │ │ ├── randomStatetest301Filler.json │ │ ├── randomStatetest302Filler.json │ │ ├── randomStatetest303Filler.json │ │ ├── randomStatetest304Filler.json │ │ ├── randomStatetest305Filler.json │ │ ├── randomStatetest306Filler.json │ │ ├── randomStatetest307Filler.json │ │ ├── randomStatetest308Filler.json │ │ ├── randomStatetest309Filler.json │ │ ├── randomStatetest30Filler.json │ │ ├── randomStatetest310Filler.json │ │ ├── randomStatetest311Filler.json │ │ ├── randomStatetest312Filler.json │ │ ├── randomStatetest313Filler.json │ │ ├── randomStatetest315Filler.json │ │ ├── randomStatetest316Filler.json │ │ ├── randomStatetest318Filler.json │ │ ├── randomStatetest31Filler.json │ │ ├── randomStatetest320Filler.json │ │ ├── randomStatetest321Filler.json │ │ ├── randomStatetest322Filler.json │ │ ├── randomStatetest323Filler.json │ │ ├── randomStatetest325Filler.json │ │ ├── randomStatetest326Filler.json │ │ ├── randomStatetest327Filler.json │ │ ├── randomStatetest329Filler.json │ │ ├── randomStatetest332Filler.json │ │ ├── randomStatetest333Filler.json │ │ ├── randomStatetest334Filler.json │ │ ├── randomStatetest335Filler.json │ │ ├── randomStatetest336Filler.json │ │ ├── randomStatetest337Filler.json │ │ ├── randomStatetest338Filler.json │ │ ├── randomStatetest339Filler.json │ │ ├── randomStatetest33Filler.json │ │ ├── randomStatetest340Filler.json │ │ ├── randomStatetest341Filler.json │ │ ├── randomStatetest342Filler.json │ │ ├── randomStatetest343Filler.json │ │ ├── randomStatetest345Filler.json │ │ ├── randomStatetest346Filler.json │ │ ├── randomStatetest347Filler.json │ │ ├── randomStatetest348Filler.json │ │ ├── randomStatetest349Filler.json │ │ ├── randomStatetest350Filler.json │ │ ├── randomStatetest351Filler.json │ │ ├── randomStatetest352Filler.json │ │ ├── randomStatetest353Filler.json │ │ ├── randomStatetest354Filler.json │ │ ├── randomStatetest355Filler.json │ │ ├── randomStatetest356Filler.json │ │ ├── randomStatetest357Filler.json │ │ ├── randomStatetest358Filler.json │ │ ├── randomStatetest359Filler.json │ │ ├── randomStatetest360Filler.json │ │ ├── randomStatetest361Filler.json │ │ ├── randomStatetest362Filler.json │ │ ├── randomStatetest363Filler.json │ │ ├── randomStatetest364Filler.json │ │ ├── randomStatetest365Filler.json │ │ ├── randomStatetest366Filler.json │ │ ├── randomStatetest367Filler.json │ │ ├── randomStatetest368Filler.json │ │ ├── randomStatetest369Filler.json │ │ ├── randomStatetest36Filler.json │ │ ├── randomStatetest370Filler.json │ │ ├── randomStatetest371Filler.json │ │ ├── randomStatetest372Filler.json │ │ ├── randomStatetest376Filler.json │ │ ├── randomStatetest378Filler.json │ │ ├── randomStatetest379Filler.json │ │ ├── randomStatetest37Filler.json │ │ ├── randomStatetest380Filler.json │ │ ├── randomStatetest381Filler.json │ │ ├── randomStatetest382Filler.json │ │ ├── randomStatetest383Filler.json │ │ ├── randomStatetest384Filler.yml │ │ ├── randomStatetest39Filler.json │ │ ├── randomStatetest3Filler.json │ │ ├── randomStatetest41Filler.json │ │ ├── randomStatetest42Filler.json │ │ ├── randomStatetest43Filler.json │ │ ├── randomStatetest45Filler.json │ │ ├── randomStatetest47Filler.json │ │ ├── randomStatetest48Filler.json │ │ ├── randomStatetest49Filler.json │ │ ├── randomStatetest4Filler.json │ │ ├── randomStatetest51Filler.json │ │ ├── randomStatetest52Filler.json │ │ ├── randomStatetest53Filler.json │ │ ├── randomStatetest54Filler.json │ │ ├── randomStatetest55Filler.json │ │ ├── randomStatetest57Filler.json │ │ ├── randomStatetest58Filler.json │ │ ├── randomStatetest59Filler.json │ │ ├── randomStatetest5Filler.json │ │ ├── randomStatetest60Filler.json │ │ ├── randomStatetest62Filler.json │ │ ├── randomStatetest63Filler.json │ │ ├── randomStatetest64Filler.json │ │ ├── randomStatetest66Filler.json │ │ ├── randomStatetest67Filler.json │ │ ├── randomStatetest69Filler.json │ │ ├── randomStatetest6Filler.json │ │ ├── randomStatetest72Filler.json │ │ ├── randomStatetest73Filler.json │ │ ├── randomStatetest74Filler.json │ │ ├── randomStatetest75Filler.json │ │ ├── randomStatetest77Filler.json │ │ ├── randomStatetest78Filler.json │ │ ├── randomStatetest80Filler.json │ │ ├── randomStatetest81Filler.json │ │ ├── randomStatetest82Filler.json │ │ ├── randomStatetest83Filler.json │ │ ├── randomStatetest84Filler.json │ │ ├── randomStatetest85Filler.json │ │ ├── randomStatetest87Filler.json │ │ ├── randomStatetest88Filler.json │ │ ├── randomStatetest89Filler.json │ │ ├── randomStatetest90Filler.json │ │ ├── randomStatetest92Filler.json │ │ ├── randomStatetest95Filler.json │ │ ├── randomStatetest96Filler.json │ │ ├── randomStatetest97Filler.json │ │ ├── randomStatetest98Filler.json │ │ └── randomStatetest9Filler.json │ │ ├── stRandom2 │ │ ├── __init__.py │ │ ├── randomStatetest384Filler.json │ │ ├── randomStatetest385Filler.json │ │ ├── randomStatetest386Filler.json │ │ ├── randomStatetest387Filler.json │ │ ├── randomStatetest388Filler.json │ │ ├── randomStatetest389Filler.json │ │ ├── randomStatetest393Filler.json │ │ ├── randomStatetest395Filler.json │ │ ├── randomStatetest396Filler.json │ │ ├── randomStatetest397Filler.json │ │ ├── randomStatetest398Filler.json │ │ ├── randomStatetest399Filler.json │ │ ├── randomStatetest401Filler.json │ │ ├── randomStatetest402Filler.json │ │ ├── randomStatetest404Filler.json │ │ ├── randomStatetest405Filler.json │ │ ├── randomStatetest406Filler.json │ │ ├── randomStatetest407Filler.json │ │ ├── randomStatetest408Filler.json │ │ ├── randomStatetest409Filler.json │ │ ├── randomStatetest410Filler.json │ │ ├── randomStatetest411Filler.json │ │ ├── randomStatetest412Filler.json │ │ ├── randomStatetest413Filler.json │ │ ├── randomStatetest414Filler.json │ │ ├── randomStatetest415Filler.json │ │ ├── randomStatetest416Filler.json │ │ ├── randomStatetest417Filler.json │ │ ├── randomStatetest418Filler.json │ │ ├── randomStatetest419Filler.json │ │ ├── randomStatetest420Filler.json │ │ ├── randomStatetest421Filler.json │ │ ├── randomStatetest422Filler.json │ │ ├── randomStatetest424Filler.json │ │ ├── randomStatetest425Filler.json │ │ ├── randomStatetest426Filler.json │ │ ├── randomStatetest428Filler.json │ │ ├── randomStatetest429Filler.json │ │ ├── randomStatetest430Filler.json │ │ ├── randomStatetest433Filler.json │ │ ├── randomStatetest435Filler.json │ │ ├── randomStatetest436Filler.json │ │ ├── randomStatetest437Filler.json │ │ ├── randomStatetest438Filler.json │ │ ├── randomStatetest439Filler.json │ │ ├── randomStatetest440Filler.json │ │ ├── randomStatetest442Filler.json │ │ ├── randomStatetest443Filler.json │ │ ├── randomStatetest444Filler.json │ │ ├── randomStatetest445Filler.json │ │ ├── randomStatetest446Filler.json │ │ ├── randomStatetest447Filler.json │ │ ├── randomStatetest448Filler.json │ │ ├── randomStatetest449Filler.json │ │ ├── randomStatetest450Filler.json │ │ ├── randomStatetest451Filler.json │ │ ├── randomStatetest452Filler.json │ │ ├── randomStatetest454Filler.json │ │ ├── randomStatetest455Filler.json │ │ ├── randomStatetest456Filler.json │ │ ├── randomStatetest457Filler.json │ │ ├── randomStatetest458Filler.json │ │ ├── randomStatetest460Filler.json │ │ ├── randomStatetest461Filler.json │ │ ├── randomStatetest462Filler.json │ │ ├── randomStatetest464Filler.json │ │ ├── randomStatetest465Filler.json │ │ ├── randomStatetest466Filler.json │ │ ├── randomStatetest467Filler.json │ │ ├── randomStatetest469Filler.json │ │ ├── randomStatetest470Filler.json │ │ ├── randomStatetest471Filler.json │ │ ├── randomStatetest472Filler.json │ │ ├── randomStatetest473Filler.json │ │ ├── randomStatetest474Filler.json │ │ ├── randomStatetest475Filler.json │ │ ├── randomStatetest476Filler.json │ │ ├── randomStatetest477Filler.json │ │ ├── randomStatetest478Filler.json │ │ ├── randomStatetest480Filler.json │ │ ├── randomStatetest481Filler.json │ │ ├── randomStatetest482Filler.json │ │ ├── randomStatetest483Filler.json │ │ ├── randomStatetest484Filler.json │ │ ├── randomStatetest485Filler.json │ │ ├── randomStatetest487Filler.json │ │ ├── randomStatetest488Filler.json │ │ ├── randomStatetest489Filler.json │ │ ├── randomStatetest491Filler.json │ │ ├── randomStatetest493Filler.json │ │ ├── randomStatetest494Filler.json │ │ ├── randomStatetest495Filler.json │ │ ├── randomStatetest496Filler.json │ │ ├── randomStatetest497Filler.json │ │ ├── randomStatetest498Filler.json │ │ ├── randomStatetest499Filler.json │ │ ├── randomStatetest500Filler.json │ │ ├── randomStatetest501Filler.json │ │ ├── randomStatetest502Filler.json │ │ ├── randomStatetest503Filler.json │ │ ├── randomStatetest504Filler.json │ │ ├── randomStatetest505Filler.json │ │ ├── randomStatetest506Filler.json │ │ ├── randomStatetest507Filler.json │ │ ├── randomStatetest508Filler.json │ │ ├── randomStatetest509Filler.json │ │ ├── randomStatetest510Filler.json │ │ ├── randomStatetest511Filler.json │ │ ├── randomStatetest512Filler.json │ │ ├── randomStatetest513Filler.json │ │ ├── randomStatetest514Filler.json │ │ ├── randomStatetest516Filler.json │ │ ├── randomStatetest517Filler.json │ │ ├── randomStatetest518Filler.json │ │ ├── randomStatetest519Filler.json │ │ ├── randomStatetest520Filler.json │ │ ├── randomStatetest521Filler.json │ │ ├── randomStatetest523Filler.json │ │ ├── randomStatetest524Filler.json │ │ ├── randomStatetest525Filler.json │ │ ├── randomStatetest526Filler.json │ │ ├── randomStatetest527Filler.json │ │ ├── randomStatetest528Filler.json │ │ ├── randomStatetest531Filler.json │ │ ├── randomStatetest532Filler.json │ │ ├── randomStatetest533Filler.json │ │ ├── randomStatetest534Filler.json │ │ ├── randomStatetest535Filler.json │ │ ├── randomStatetest536Filler.json │ │ ├── randomStatetest537Filler.json │ │ ├── randomStatetest539Filler.json │ │ ├── randomStatetest541Filler.json │ │ ├── randomStatetest542Filler.json │ │ ├── randomStatetest543Filler.json │ │ ├── randomStatetest544Filler.json │ │ ├── randomStatetest545Filler.json │ │ ├── randomStatetest546Filler.json │ │ ├── randomStatetest547Filler.json │ │ ├── randomStatetest548Filler.json │ │ ├── randomStatetest550Filler.json │ │ ├── randomStatetest552Filler.json │ │ ├── randomStatetest553Filler.json │ │ ├── randomStatetest554Filler.json │ │ ├── randomStatetest555Filler.json │ │ ├── randomStatetest556Filler.json │ │ ├── randomStatetest558Filler.json │ │ ├── randomStatetest559Filler.json │ │ ├── randomStatetest560Filler.json │ │ ├── randomStatetest562Filler.json │ │ ├── randomStatetest563Filler.json │ │ ├── randomStatetest564Filler.json │ │ ├── randomStatetest565Filler.json │ │ ├── randomStatetest566Filler.json │ │ ├── randomStatetest567Filler.json │ │ ├── randomStatetest569Filler.json │ │ ├── randomStatetest571Filler.json │ │ ├── randomStatetest572Filler.json │ │ ├── randomStatetest574Filler.json │ │ ├── randomStatetest575Filler.json │ │ ├── randomStatetest576Filler.json │ │ ├── randomStatetest577Filler.json │ │ ├── randomStatetest578Filler.json │ │ ├── randomStatetest579Filler.json │ │ ├── randomStatetest580Filler.json │ │ ├── randomStatetest581Filler.json │ │ ├── randomStatetest582Filler.json │ │ ├── randomStatetest583Filler.json │ │ ├── randomStatetest584Filler.json │ │ ├── randomStatetest585Filler.json │ │ ├── randomStatetest586Filler.json │ │ ├── randomStatetest587Filler.json │ │ ├── randomStatetest588Filler.json │ │ ├── randomStatetest589Filler.json │ │ ├── randomStatetest592Filler.json │ │ ├── randomStatetest596Filler.json │ │ ├── randomStatetest597Filler.json │ │ ├── randomStatetest599Filler.json │ │ ├── randomStatetest600Filler.json │ │ ├── randomStatetest601Filler.json │ │ ├── randomStatetest602Filler.json │ │ ├── randomStatetest603Filler.json │ │ ├── randomStatetest604Filler.json │ │ ├── randomStatetest605Filler.json │ │ ├── randomStatetest607Filler.json │ │ ├── randomStatetest608Filler.json │ │ ├── randomStatetest609Filler.json │ │ ├── randomStatetest610Filler.json │ │ ├── randomStatetest611Filler.json │ │ ├── randomStatetest612Filler.json │ │ ├── randomStatetest615Filler.json │ │ ├── randomStatetest616Filler.json │ │ ├── randomStatetest618Filler.json │ │ ├── randomStatetest620Filler.json │ │ ├── randomStatetest621Filler.json │ │ ├── randomStatetest624Filler.json │ │ ├── randomStatetest625Filler.json │ │ ├── randomStatetest626Filler.json │ │ ├── randomStatetest627Filler.json │ │ ├── randomStatetest628Filler.json │ │ ├── randomStatetest629Filler.json │ │ ├── randomStatetest630Filler.json │ │ ├── randomStatetest632Filler.json │ │ ├── randomStatetest633Filler.json │ │ ├── randomStatetest635Filler.json │ │ ├── randomStatetest636Filler.json │ │ ├── randomStatetest637Filler.json │ │ ├── randomStatetest638Filler.json │ │ ├── randomStatetest639Filler.json │ │ ├── randomStatetest640Filler.json │ │ ├── randomStatetest641Filler.json │ │ ├── randomStatetest642Filler.json │ │ ├── randomStatetest643Filler.json │ │ ├── randomStatetest644Filler.json │ │ ├── randomStatetest645Filler.json │ │ ├── randomStatetest646Filler.json │ │ ├── randomStatetest647Filler.json │ │ ├── randomStatetest648Filler.json │ │ ├── randomStatetest649Filler.json │ │ ├── randomStatetest650Filler.json │ │ └── randomStatetestFiller.json │ │ ├── stRecursiveCreate │ │ ├── __init__.py │ │ ├── recursiveCreateFiller.json │ │ └── recursiveCreateReturnValueFiller.json │ │ ├── stRefundTest │ │ ├── __init__.py │ │ ├── refund50_1Filler.json │ │ ├── refund50_2Filler.json │ │ ├── refund50percentCapFiller.json │ │ ├── refund600Filler.json │ │ ├── refundFFFiller.yml │ │ ├── refundMaxFiller.yml │ │ ├── refundSSTOREFiller.yml │ │ ├── refundSuicide50procentCapFiller.json │ │ ├── refund_CallAFiller.json │ │ ├── refund_CallA_OOGFiller.json │ │ ├── refund_CallA_notEnoughGasInCallFiller.json │ │ ├── refund_CallToSuicideNoStorageFiller.json │ │ ├── refund_CallToSuicideStorageFiller.json │ │ ├── refund_CallToSuicideTwiceFiller.json │ │ ├── refund_NoOOG_1Filler.json │ │ ├── refund_OOGFiller.json │ │ ├── refund_TxToSuicideFiller.json │ │ ├── refund_TxToSuicideOOGFiller.json │ │ ├── refund_changeNonZeroStorageFiller.json │ │ ├── refund_getEtherBackFiller.json │ │ ├── refund_multimpleSuicideFiller.json │ │ └── refund_singleSuicideFiller.json │ │ ├── stReturnDataTest │ │ ├── __init__.py │ │ ├── call_ecrec_success_empty_then_returndatasizeFiller.json │ │ ├── call_outsize_then_create_successful_then_returndatasizeFiller.json │ │ ├── call_then_call_value_fail_then_returndatasizeFiller.json │ │ ├── call_then_create_successful_then_returndatasizeFiller.json │ │ ├── clearReturnBufferFiller.yml │ │ ├── create_callprecompile_returndatasizeFiller.json │ │ ├── modexp_modsize0_returndatasizeFiller.json │ │ ├── returndatacopy_0_0_following_successful_createFiller.json │ │ ├── returndatacopy_afterFailing_createFiller.json │ │ ├── returndatacopy_after_failing_callcodeFiller.json │ │ ├── returndatacopy_after_failing_delegatecallFiller.json │ │ ├── returndatacopy_after_failing_staticcallFiller.json │ │ ├── returndatacopy_after_revert_in_staticcallFiller.json │ │ ├── returndatacopy_after_successful_callcodeFiller.json │ │ ├── returndatacopy_after_successful_delegatecallFiller.json │ │ ├── returndatacopy_after_successful_staticcallFiller.json │ │ ├── returndatacopy_following_callFiller.json │ │ ├── returndatacopy_following_createFiller.json │ │ ├── returndatacopy_following_failing_callFiller.json │ │ ├── returndatacopy_following_revertFiller.json │ │ ├── returndatacopy_following_revert_in_createFiller.json │ │ ├── returndatacopy_following_successful_createFiller.json │ │ ├── returndatacopy_following_too_big_transferFiller.json │ │ ├── returndatacopy_initialFiller.json │ │ ├── returndatacopy_initial_256Filler.json │ │ ├── returndatacopy_initial_big_sumFiller.json │ │ ├── returndatacopy_overrunFiller.json │ │ ├── returndatasize_after_failing_callcodeFiller.json │ │ ├── returndatasize_after_failing_delegatecallFiller.json │ │ ├── returndatasize_after_failing_staticcallFiller.json │ │ ├── returndatasize_after_oog_after_deeperFiller.json │ │ ├── returndatasize_after_successful_callcodeFiller.json │ │ ├── returndatasize_after_successful_delegatecallFiller.json │ │ ├── returndatasize_after_successful_staticcallFiller.json │ │ ├── returndatasize_bugFiller.json │ │ ├── returndatasize_following_successful_createFiller.json │ │ ├── returndatasize_initialFiller.json │ │ ├── returndatasize_initial_zero_readFiller.json │ │ ├── revertRetDataSizeFiller.yml │ │ ├── subcallReturnMoreThenExpectedFiller.yml │ │ └── tooLongReturnDataCopyFiller.yml │ │ ├── stRevertTest │ │ ├── LoopCallsDepthThenRevert2Filler.json │ │ ├── LoopCallsDepthThenRevert3Filler.json │ │ ├── LoopCallsDepthThenRevertFiller.json │ │ ├── LoopCallsThenRevertFiller.json │ │ ├── LoopDelegateCallsDepthThenRevertFiller.json │ │ ├── NashatyrevSuicideRevertFiller.json │ │ ├── PythonRevertTestTue201814-1430Filler.json │ │ ├── RevertDepth2Filler.json │ │ ├── RevertDepthCreateAddressCollisionFiller.json │ │ ├── RevertDepthCreateOOGFiller.json │ │ ├── RevertInCallCodeFiller.json │ │ ├── RevertInCreateInInit_ParisFiller.json │ │ ├── RevertInDelegateCallFiller.json │ │ ├── RevertInStaticCallFiller.json │ │ ├── RevertOnEmptyStackFiller.json │ │ ├── RevertOpcodeCallsFiller.json │ │ ├── RevertOpcodeCreateFiller.json │ │ ├── RevertOpcodeDirectCallFiller.json │ │ ├── RevertOpcodeFiller.json │ │ ├── RevertOpcodeInCallsOnNonEmptyReturnDataFiller.json │ │ ├── RevertOpcodeInCreateReturnsFiller.json │ │ ├── RevertOpcodeInInitFiller.json │ │ ├── RevertOpcodeMultipleSubCallsFiller.json │ │ ├── RevertOpcodeReturnFiller.json │ │ ├── RevertOpcodeWithBigOutputInInitFiller.json │ │ ├── RevertPrecompiledTouchExactOOG_ParisFiller.json │ │ ├── RevertPrecompiledTouch_ParisFiller.json │ │ ├── RevertPrecompiledTouch_nonceFiller.json │ │ ├── RevertPrecompiledTouch_noncestorageFiller.json │ │ ├── RevertPrecompiledTouch_storage_ParisFiller.json │ │ ├── RevertPrefoundCallFiller.json │ │ ├── RevertPrefoundCallOOGFiller.json │ │ ├── RevertPrefoundEmptyCallOOG_ParisFiller.json │ │ ├── RevertPrefoundEmptyCall_ParisFiller.json │ │ ├── RevertPrefoundEmptyOOG_ParisFiller.json │ │ ├── RevertPrefoundEmpty_ParisFiller.json │ │ ├── RevertPrefoundFiller.json │ │ ├── RevertPrefoundOOGFiller.json │ │ ├── RevertSubCallStorageOOG2Filler.json │ │ ├── RevertSubCallStorageOOGFiller.json │ │ ├── TouchToEmptyAccountRevert2_ParisFiller.json │ │ ├── TouchToEmptyAccountRevert3_ParisFiller.json │ │ ├── TouchToEmptyAccountRevert_ParisFiller.json │ │ ├── __init__.py │ │ ├── costRevertFiller.yml │ │ └── stateRevertFiller.yml │ │ ├── stSLoadTest │ │ ├── __init__.py │ │ └── sloadGasCostFiller.json │ │ ├── stSStoreTest │ │ ├── SstoreCallToSelfSubRefundBelowZeroFiller.json │ │ ├── __init__.py │ │ ├── sstoreGasFiller.yml │ │ ├── sstore_0to0Filler.json │ │ ├── sstore_0to0to0Filler.json │ │ ├── sstore_0to0toXFiller.json │ │ ├── sstore_0toXFiller.json │ │ ├── sstore_0toXto0Filler.json │ │ ├── sstore_0toXto0toXFiller.json │ │ ├── sstore_0toXtoXFiller.json │ │ ├── sstore_0toXtoYFiller.json │ │ ├── sstore_Xto0Filler.json │ │ ├── sstore_Xto0to0Filler.json │ │ ├── sstore_Xto0toXFiller.json │ │ ├── sstore_Xto0toXto0Filler.json │ │ ├── sstore_Xto0toYFiller.json │ │ ├── sstore_XtoXFiller.json │ │ ├── sstore_XtoXto0Filler.json │ │ ├── sstore_XtoXtoXFiller.json │ │ ├── sstore_XtoXtoYFiller.json │ │ ├── sstore_XtoYFiller.json │ │ ├── sstore_XtoYto0Filler.json │ │ ├── sstore_XtoYtoXFiller.json │ │ ├── sstore_XtoYtoYFiller.json │ │ ├── sstore_XtoYtoZFiller.json │ │ ├── sstore_changeFromExternalCallInInitCodeFiller.json │ │ └── sstore_gasLeftFiller.json │ │ ├── stSelfBalance │ │ ├── __init__.py │ │ ├── selfBalanceCallTypesFiller.json │ │ ├── selfBalanceEqualsBalanceFiller.json │ │ ├── selfBalanceFiller.json │ │ ├── selfBalanceGasCostFiller.json │ │ └── selfBalanceUpdateFiller.json │ │ ├── stShift │ │ ├── .stub │ │ ├── __init__.py │ │ ├── sar00Filler.json │ │ ├── sar01Filler.json │ │ ├── sar10Filler.json │ │ ├── sar11Filler.json │ │ ├── sar_0_256-1Filler.json │ │ ├── sar_2^254_254Filler.json │ │ ├── sar_2^255-1_248Filler.json │ │ ├── sar_2^255-1_254Filler.json │ │ ├── sar_2^255-1_255Filler.json │ │ ├── sar_2^255-1_256Filler.json │ │ ├── sar_2^255_1Filler.json │ │ ├── sar_2^255_255Filler.json │ │ ├── sar_2^255_256Filler.json │ │ ├── sar_2^255_257Filler.json │ │ ├── sar_2^256-1_0Filler.json │ │ ├── sar_2^256-1_1Filler.json │ │ ├── sar_2^256-1_255Filler.json │ │ ├── sar_2^256-1_256Filler.json │ │ ├── shiftSignedCombinationsFiller.yml │ │ ├── shl01-0100Filler.json │ │ ├── shl01-0101Filler.json │ │ ├── shl01-ffFiller.json │ │ ├── shl01Filler.json │ │ ├── shl10Filler.json │ │ ├── shl11Filler.json │ │ ├── shl_-1_0Filler.json │ │ ├── shl_-1_1Filler.json │ │ ├── shl_-1_255Filler.json │ │ ├── shl_-1_256Filler.json │ │ ├── shl_2^255-1_1Filler.json │ │ ├── shr01Filler.json │ │ ├── shr10Filler.json │ │ ├── shr11Filler.json │ │ ├── shr_-1_0Filler.json │ │ ├── shr_-1_1Filler.json │ │ ├── shr_-1_255Filler.json │ │ ├── shr_-1_256Filler.json │ │ ├── shr_2^255_1Filler.json │ │ ├── shr_2^255_255Filler.json │ │ ├── shr_2^255_256Filler.json │ │ └── shr_2^255_257Filler.json │ │ ├── stSolidityTest │ │ ├── AmbiguousMethodFiller.json │ │ ├── ByZeroFiller.json │ │ ├── CallInfiniteLoopFiller.json │ │ ├── CallLowLevelCreatesSolidityFiller.json │ │ ├── CallRecursiveMethodsFiller.json │ │ ├── ContractInheritanceFiller.json │ │ ├── CreateContractFromMethodFiller.json │ │ ├── RecursiveCreateContractsCreate4ContractsFiller.json │ │ ├── RecursiveCreateContractsFiller.json │ │ ├── TestBlockAndTransactionPropertiesFiller.json │ │ ├── TestContractInteractionFiller.json │ │ ├── TestContractSuicideFiller.json │ │ ├── TestCryptographicFunctionsFiller.json │ │ ├── TestKeywordsFiller.json │ │ ├── TestOverflowFiller.json │ │ ├── TestStoreGasPricesFiller.json │ │ ├── TestStructuresAndVariablessFiller.json │ │ └── __init__.py │ │ ├── stSpecialTest │ │ ├── FailedCreateRevertsDeletionParisFiller.json │ │ ├── JUMPDEST_AttackFiller.json │ │ ├── JUMPDEST_AttackwithJumpFiller.json │ │ ├── OverflowGasMakeMoneyFiller.json │ │ ├── StackDepthLimitSECFiller.json │ │ ├── __init__.py │ │ ├── block504980Filler.json │ │ ├── deploymentErrorFiller.json │ │ ├── eoaEmptyParisFiller.yml │ │ ├── failed_tx_xcf416c53_ParisFiller.json │ │ ├── gasPrice0Filler.json │ │ ├── makeMoneyFiller.json │ │ ├── push32withoutByteFiller.json │ │ ├── selfdestructEIP2929Filler.json │ │ ├── sha3_dejaFiller.json │ │ └── tx_e1c174e2Filler.json │ │ ├── stStackTests │ │ ├── __init__.py │ │ ├── shallowStackFiller.json │ │ ├── stackOverflowDUPFiller.json │ │ ├── stackOverflowFiller.json │ │ ├── stackOverflowM1DUPFiller.json │ │ ├── stackOverflowM1Filler.json │ │ ├── stackOverflowM1PUSHFiller.json │ │ ├── stackOverflowPUSHFiller.json │ │ ├── stackOverflowSWAPFiller.json │ │ ├── stacksanitySWAPFiller.json │ │ ├── underflowTestFiller.yml │ │ └── underflowTestGen.js │ │ ├── stStaticCall │ │ ├── StaticcallToPrecompileFromCalledContractFiller.yml │ │ ├── StaticcallToPrecompileFromContractInitializationFiller.yml │ │ ├── StaticcallToPrecompileFromTransactionFiller.yml │ │ ├── __init__.py │ │ ├── static_ABAcalls0Filler.json │ │ ├── static_ABAcalls1Filler.json │ │ ├── static_ABAcalls2Filler.json │ │ ├── static_ABAcalls3Filler.json │ │ ├── static_ABAcallsSuicide0Filler.json │ │ ├── static_ABAcallsSuicide1Filler.json │ │ ├── static_CALL_OneVCallSuicideFiller.json │ │ ├── static_CALL_ZeroVCallSuicideFiller.json │ │ ├── static_CREATE_ContractSuicideDuringInitFiller.json │ │ ├── static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturnFiller.json │ │ ├── static_CREATE_ContractSuicideDuringInit_WithValueFiller.json │ │ ├── static_CREATE_EmptyContractAndCallIt_0weiFiller.json │ │ ├── static_CREATE_EmptyContractWithStorageAndCallIt_0weiFiller.json │ │ ├── static_Call1024BalanceTooLow2Filler.json │ │ ├── static_Call1024BalanceTooLowFiller.json │ │ ├── static_Call1024OOGFiller.json │ │ ├── static_Call1024PreCalls2Filler.json │ │ ├── static_Call1024PreCalls3Filler.json │ │ ├── static_Call1024PreCallsFiller.json │ │ ├── static_Call10Filler.json │ │ ├── static_Call1MB1024CalldepthFiller.json │ │ ├── static_Call50000Filler.json │ │ ├── static_Call50000_ecrecFiller.json │ │ ├── static_Call50000_identity2Filler.json │ │ ├── static_Call50000_identityFiller.json │ │ ├── static_Call50000_rip160Filler.json │ │ ├── static_Call50000bytesContract50_1Filler.json │ │ ├── static_Call50000bytesContract50_2Filler.json │ │ ├── static_Call50000bytesContract50_3Filler.json │ │ ├── static_CallAndCallcodeConsumeMoreGasThenTransactionHasFiller.json │ │ ├── static_CallAskMoreGasOnDepth2ThenTransactionHasFiller.json │ │ ├── static_CallContractToCreateContractAndCallItOOGFiller.json │ │ ├── static_CallContractToCreateContractOOGBonusGasFiller.json │ │ ├── static_CallContractToCreateContractOOGFiller.json │ │ ├── static_CallContractToCreateContractWhichWouldCreateContractIfCalledFiller.json │ │ ├── static_CallEcrecover0Filler.json │ │ ├── static_CallEcrecover0_0inputFiller.json │ │ ├── static_CallEcrecover0_Gas2999Filler.json │ │ ├── static_CallEcrecover0_NoGasFiller.json │ │ ├── static_CallEcrecover0_completeReturnValueFiller.json │ │ ├── static_CallEcrecover0_gas3000Filler.json │ │ ├── static_CallEcrecover0_overlappingInputOutputFiller.json │ │ ├── static_CallEcrecover1Filler.json │ │ ├── static_CallEcrecover2Filler.json │ │ ├── static_CallEcrecover3Filler.json │ │ ├── static_CallEcrecover80Filler.json │ │ ├── static_CallEcrecoverCheckLengthFiller.json │ │ ├── static_CallEcrecoverCheckLengthWrongVFiller.json │ │ ├── static_CallEcrecoverH_prefixed0Filler.json │ │ ├── static_CallEcrecoverR_prefixed0Filler.json │ │ ├── static_CallEcrecoverS_prefixed0Filler.json │ │ ├── static_CallEcrecoverV_prefixed0Filler.json │ │ ├── static_CallGoesOOGOnSecondLevel2Filler.json │ │ ├── static_CallGoesOOGOnSecondLevelFiller.json │ │ ├── static_CallIdentitiy_1Filler.json │ │ ├── static_CallIdentity_1_nonzeroValueFiller.json │ │ ├── static_CallIdentity_2Filler.json │ │ ├── static_CallIdentity_3Filler.json │ │ ├── static_CallIdentity_4Filler.json │ │ ├── static_CallIdentity_4_gas17Filler.json │ │ ├── static_CallIdentity_4_gas18Filler.json │ │ ├── static_CallIdentity_5Filler.json │ │ ├── static_CallLoseGasOOGFiller.json │ │ ├── static_CallRecursiveBomb0Filler.json │ │ ├── static_CallRecursiveBomb0_OOG_atMaxCallDepthFiller.json │ │ ├── static_CallRecursiveBomb1Filler.json │ │ ├── static_CallRecursiveBomb2Filler.json │ │ ├── static_CallRecursiveBomb3Filler.json │ │ ├── static_CallRecursiveBombLog2Filler.json │ │ ├── static_CallRecursiveBombLogFiller.json │ │ ├── static_CallRecursiveBombPreCall2Filler.json │ │ ├── static_CallRecursiveBombPreCallFiller.json │ │ ├── static_CallRipemd160_1Filler.json │ │ ├── static_CallRipemd160_2Filler.json │ │ ├── static_CallRipemd160_3Filler.json │ │ ├── static_CallRipemd160_3_postfixed0Filler.json │ │ ├── static_CallRipemd160_3_prefixed0Filler.json │ │ ├── static_CallRipemd160_4Filler.json │ │ ├── static_CallRipemd160_4_gas719Filler.json │ │ ├── static_CallRipemd160_5Filler.json │ │ ├── static_CallSha256_1Filler.json │ │ ├── static_CallSha256_1_nonzeroValueFiller.json │ │ ├── static_CallSha256_2Filler.json │ │ ├── static_CallSha256_3Filler.json │ │ ├── static_CallSha256_3_postfix0Filler.json │ │ ├── static_CallSha256_3_prefix0Filler.json │ │ ├── static_CallSha256_4Filler.json │ │ ├── static_CallSha256_4_gas99Filler.json │ │ ├── static_CallSha256_5Filler.json │ │ ├── static_CallToNameRegistrator0Filler.json │ │ ├── static_CallToReturn1Filler.json │ │ ├── static_CalltoReturn2Filler.json │ │ ├── static_CheckCallCostOOGFiller.json │ │ ├── static_CheckOpcodes2Filler.json │ │ ├── static_CheckOpcodes3Filler.json │ │ ├── static_CheckOpcodes4Filler.json │ │ ├── static_CheckOpcodes5Filler.json │ │ ├── static_CheckOpcodesFiller.json │ │ ├── static_ExecuteCallThatAskForeGasThenTrabsactionHasFiller.json │ │ ├── static_InternalCallHittingGasLimit2Filler.json │ │ ├── static_InternalCallHittingGasLimitFiller.json │ │ ├── static_InternalCallStoreClearsOOGFiller.json │ │ ├── static_LoopCallsDepthThenRevert2Filler.json │ │ ├── static_LoopCallsDepthThenRevert3Filler.json │ │ ├── static_LoopCallsDepthThenRevertFiller.json │ │ ├── static_LoopCallsThenRevertFiller.json │ │ ├── static_PostToReturn1Filler.json │ │ ├── static_RETURN_BoundsFiller.json │ │ ├── static_RETURN_BoundsOOGFiller.json │ │ ├── static_RawCallGasAskFiller.json │ │ ├── static_Return50000_2Filler.json │ │ ├── static_ReturnTest2Filler.json │ │ ├── static_ReturnTestFiller.json │ │ ├── static_RevertDepth2Filler.json │ │ ├── static_RevertOpcodeCallsFiller.json │ │ ├── static_ZeroValue_CALL_OOGRevertFiller.json │ │ ├── static_ZeroValue_SUICIDE_OOGRevertFiller.json │ │ ├── static_callBasicFiller.json │ │ ├── static_callChangeRevertFiller.json │ │ ├── static_callCreate2Filler.json │ │ ├── static_callCreate3Filler.json │ │ ├── static_callCreateFiller.json │ │ ├── static_callOutput1Filler.json │ │ ├── static_callOutput2Filler.json │ │ ├── static_callOutput3FailFiller.json │ │ ├── static_callOutput3Filler.json │ │ ├── static_callOutput3partialFailFiller.json │ │ ├── static_callOutput3partialFiller.json │ │ ├── static_callToCallCodeOpCodeCheckFiller.json │ │ ├── static_callToCallOpCodeCheckFiller.json │ │ ├── static_callToDelCallOpCodeCheckFiller.json │ │ ├── static_callToStaticOpCodeCheckFiller.json │ │ ├── static_callWithHighValueAndGasOOGFiller.json │ │ ├── static_callWithHighValueAndOOGatTxLevelFiller.json │ │ ├── static_callWithHighValueFiller.json │ │ ├── static_callWithHighValueOOGinCallFiller.json │ │ ├── static_call_OOG_additionalGasCosts1Filler.json │ │ ├── static_call_OOG_additionalGasCosts2_ParisFiller.json │ │ ├── static_call_value_inheritFiller.json │ │ ├── static_call_value_inherit_from_callFiller.json │ │ ├── static_callcall_00Filler.json │ │ ├── static_callcall_00_OOGEFiller.json │ │ ├── static_callcall_00_OOGE_1Filler.json │ │ ├── static_callcall_00_OOGE_2Filler.json │ │ ├── static_callcall_00_SuicideEndFiller.json │ │ ├── static_callcallcall_000Filler.json │ │ ├── static_callcallcall_000_OOGEFiller.json │ │ ├── static_callcallcall_000_OOGMAfter2Filler.json │ │ ├── static_callcallcall_000_OOGMAfterFiller.json │ │ ├── static_callcallcall_000_OOGMBeforeFiller.json │ │ ├── static_callcallcall_000_SuicideEndFiller.json │ │ ├── static_callcallcall_000_SuicideMiddleFiller.json │ │ ├── static_callcallcall_ABCB_RECURSIVEFiller.json │ │ ├── static_callcallcallcode_001Filler.json │ │ ├── static_callcallcallcode_001_2Filler.json │ │ ├── static_callcallcallcode_001_OOGEFiller.json │ │ ├── static_callcallcallcode_001_OOGE_2Filler.json │ │ ├── static_callcallcallcode_001_OOGMAfter2Filler.json │ │ ├── static_callcallcallcode_001_OOGMAfterFiller.json │ │ ├── static_callcallcallcode_001_OOGMAfter_2Filler.json │ │ ├── static_callcallcallcode_001_OOGMAfter_3Filler.json │ │ ├── static_callcallcallcode_001_OOGMBefore2Filler.json │ │ ├── static_callcallcallcode_001_OOGMBeforeFiller.json │ │ ├── static_callcallcallcode_001_SuicideEnd2Filler.json │ │ ├── static_callcallcallcode_001_SuicideEndFiller.json │ │ ├── static_callcallcallcode_001_SuicideMiddle2Filler.json │ │ ├── static_callcallcallcode_001_SuicideMiddleFiller.json │ │ ├── static_callcallcallcode_ABCB_RECURSIVE2Filler.json │ │ ├── static_callcallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── static_callcallcode_01_2Filler.json │ │ ├── static_callcallcode_01_OOGE_2Filler.json │ │ ├── static_callcallcode_01_SuicideEnd2Filler.json │ │ ├── static_callcallcode_01_SuicideEndFiller.json │ │ ├── static_callcallcodecall_010Filler.json │ │ ├── static_callcallcodecall_010_2Filler.json │ │ ├── static_callcallcodecall_010_OOGEFiller.json │ │ ├── static_callcallcodecall_010_OOGE_2Filler.json │ │ ├── static_callcallcodecall_010_OOGMAfter2Filler.json │ │ ├── static_callcallcodecall_010_OOGMAfterFiller.json │ │ ├── static_callcallcodecall_010_OOGMAfter_2Filler.json │ │ ├── static_callcallcodecall_010_OOGMAfter_3Filler.json │ │ ├── static_callcallcodecall_010_OOGMBefore2Filler.json │ │ ├── static_callcallcodecall_010_OOGMBeforeFiller.json │ │ ├── static_callcallcodecall_010_SuicideEnd2Filler.json │ │ ├── static_callcallcodecall_010_SuicideEndFiller.json │ │ ├── static_callcallcodecall_010_SuicideMiddle2Filler.json │ │ ├── static_callcallcodecall_010_SuicideMiddleFiller.json │ │ ├── static_callcallcodecall_ABCB_RECURSIVE2Filler.json │ │ ├── static_callcallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── static_callcallcodecallcode_011Filler.json │ │ ├── static_callcallcodecallcode_011_2Filler.json │ │ ├── static_callcallcodecallcode_011_OOGEFiller.json │ │ ├── static_callcallcodecallcode_011_OOGE_2Filler.json │ │ ├── static_callcallcodecallcode_011_OOGMAfter2Filler.json │ │ ├── static_callcallcodecallcode_011_OOGMAfterFiller.json │ │ ├── static_callcallcodecallcode_011_OOGMAfter_1Filler.json │ │ ├── static_callcallcodecallcode_011_OOGMAfter_2Filler.json │ │ ├── static_callcallcodecallcode_011_OOGMBefore2Filler.json │ │ ├── static_callcallcodecallcode_011_OOGMBeforeFiller.json │ │ ├── static_callcallcodecallcode_011_SuicideEnd2Filler.json │ │ ├── static_callcallcodecallcode_011_SuicideEndFiller.json │ │ ├── static_callcallcodecallcode_011_SuicideMiddle2Filler.json │ │ ├── static_callcallcodecallcode_011_SuicideMiddleFiller.json │ │ ├── static_callcallcodecallcode_ABCB_RECURSIVE2Filler.json │ │ ├── static_callcallcodecallcode_ABCB_RECURSIVEFiller.json │ │ ├── static_callcode_checkPCFiller.json │ │ ├── static_callcodecall_10Filler.json │ │ ├── static_callcodecall_10_2Filler.json │ │ ├── static_callcodecall_10_OOGEFiller.json │ │ ├── static_callcodecall_10_OOGE_2Filler.json │ │ ├── static_callcodecall_10_SuicideEnd2Filler.json │ │ ├── static_callcodecall_10_SuicideEndFiller.json │ │ ├── static_callcodecallcall_100Filler.json │ │ ├── static_callcodecallcall_100_2Filler.json │ │ ├── static_callcodecallcall_100_OOGE2Filler.json │ │ ├── static_callcodecallcall_100_OOGEFiller.json │ │ ├── static_callcodecallcall_100_OOGMAfter2Filler.json │ │ ├── static_callcodecallcall_100_OOGMAfterFiller.json │ │ ├── static_callcodecallcall_100_OOGMAfter_2Filler.json │ │ ├── static_callcodecallcall_100_OOGMAfter_3Filler.json │ │ ├── static_callcodecallcall_100_OOGMBefore2Filler.json │ │ ├── static_callcodecallcall_100_OOGMBeforeFiller.json │ │ ├── static_callcodecallcall_100_SuicideEnd2Filler.json │ │ ├── static_callcodecallcall_100_SuicideEndFiller.json │ │ ├── static_callcodecallcall_100_SuicideMiddle2Filler.json │ │ ├── static_callcodecallcall_100_SuicideMiddleFiller.json │ │ ├── static_callcodecallcall_ABCB_RECURSIVE2Filler.json │ │ ├── static_callcodecallcall_ABCB_RECURSIVEFiller.json │ │ ├── static_callcodecallcallcode_101Filler.json │ │ ├── static_callcodecallcallcode_101_2Filler.json │ │ ├── static_callcodecallcallcode_101_OOGEFiller.json │ │ ├── static_callcodecallcallcode_101_OOGE_2Filler.json │ │ ├── static_callcodecallcallcode_101_OOGMAfter2Filler.json │ │ ├── static_callcodecallcallcode_101_OOGMAfterFiller.json │ │ ├── static_callcodecallcallcode_101_OOGMAfter_1Filler.json │ │ ├── static_callcodecallcallcode_101_OOGMAfter_3Filler.json │ │ ├── static_callcodecallcallcode_101_OOGMBefore2Filler.json │ │ ├── static_callcodecallcallcode_101_OOGMBeforeFiller.json │ │ ├── static_callcodecallcallcode_101_SuicideEnd2Filler.json │ │ ├── static_callcodecallcallcode_101_SuicideEndFiller.json │ │ ├── static_callcodecallcallcode_101_SuicideMiddle2Filler.json │ │ ├── static_callcodecallcallcode_101_SuicideMiddleFiller.json │ │ ├── static_callcodecallcallcode_ABCB_RECURSIVE2Filler.json │ │ ├── static_callcodecallcallcode_ABCB_RECURSIVEFiller.json │ │ ├── static_callcodecallcodecall_1102Filler.json │ │ ├── static_callcodecallcodecall_110Filler.json │ │ ├── static_callcodecallcodecall_110_2Filler.json │ │ ├── static_callcodecallcodecall_110_OOGE2Filler.json │ │ ├── static_callcodecallcodecall_110_OOGEFiller.json │ │ ├── static_callcodecallcodecall_110_OOGMAfter2Filler.json │ │ ├── static_callcodecallcodecall_110_OOGMAfterFiller.json │ │ ├── static_callcodecallcodecall_110_OOGMAfter_2Filler.json │ │ ├── static_callcodecallcodecall_110_OOGMAfter_3Filler.json │ │ ├── static_callcodecallcodecall_110_OOGMBefore2Filler.json │ │ ├── static_callcodecallcodecall_110_OOGMBeforeFiller.json │ │ ├── static_callcodecallcodecall_110_SuicideEnd2Filler.json │ │ ├── static_callcodecallcodecall_110_SuicideEndFiller.json │ │ ├── static_callcodecallcodecall_110_SuicideMiddle2Filler.json │ │ ├── static_callcodecallcodecall_110_SuicideMiddleFiller.json │ │ ├── static_callcodecallcodecall_ABCB_RECURSIVE2Filler.json │ │ ├── static_callcodecallcodecall_ABCB_RECURSIVEFiller.json │ │ ├── static_callcodecallcodecallcode_111_SuicideEndFiller.json │ │ ├── static_calldelcode_01Filler.json │ │ ├── static_calldelcode_01_OOGEFiller.json │ │ ├── static_contractCreationMakeCallThatAskMoreGasThenTransactionProvidedFiller.json │ │ ├── static_contractCreationOOGdontLeaveEmptyContractViaTransactionFiller.json │ │ ├── static_log0_emptyMemFiller.json │ │ ├── static_log0_logMemStartTooHighFiller.json │ │ ├── static_log0_logMemsizeTooHighFiller.json │ │ ├── static_log0_logMemsizeZeroFiller.json │ │ ├── static_log0_nonEmptyMemFiller.json │ │ ├── static_log0_nonEmptyMem_logMemSize1Filler.json │ │ ├── static_log0_nonEmptyMem_logMemSize1_logMemStart31Filler.json │ │ ├── static_log1_MaxTopicFiller.json │ │ ├── static_log1_emptyMemFiller.json │ │ ├── static_log1_logMemStartTooHighFiller.json │ │ ├── static_log1_logMemsizeTooHighFiller.json │ │ ├── static_log1_logMemsizeZeroFiller.json │ │ ├── static_log_CallerFiller.json │ │ ├── static_makeMoneyFiller.json │ │ ├── static_refund_CallAFiller.json │ │ ├── static_refund_CallToSuicideNoStorageFiller.json │ │ └── static_refund_CallToSuicideTwiceFiller.json │ │ ├── stStaticFlagEnabled │ │ ├── CallWithNOTZeroValueToPrecompileFromCalledContractFiller.yml │ │ ├── CallWithNOTZeroValueToPrecompileFromContractInitializationFiller.yml │ │ ├── CallWithNOTZeroValueToPrecompileFromTransactionFiller.yml │ │ ├── CallWithZeroValueToPrecompileFromCalledContractFiller.yml │ │ ├── CallWithZeroValueToPrecompileFromContractInitializationFiller.yml │ │ ├── CallWithZeroValueToPrecompileFromTransactionFiller.yml │ │ ├── CallcodeToPrecompileFromCalledContractFiller.yml │ │ ├── CallcodeToPrecompileFromContractInitializationFiller.yml │ │ ├── CallcodeToPrecompileFromTransactionFiller.yml │ │ ├── DelegatecallToPrecompileFromCalledContractFiller.yml │ │ ├── DelegatecallToPrecompileFromContractInitializationFiller.yml │ │ ├── DelegatecallToPrecompileFromTransactionFiller.yml │ │ ├── StaticcallForPrecompilesIssue683Filler.yml │ │ └── __init__.py │ │ ├── stSystemOperationsTest │ │ ├── ABAcalls0Filler.json │ │ ├── ABAcalls1Filler.json │ │ ├── ABAcalls2Filler.json │ │ ├── ABAcalls3Filler.json │ │ ├── ABAcallsSuicide0Filler.json │ │ ├── ABAcallsSuicide1Filler.json │ │ ├── Call10Filler.json │ │ ├── CallRecursiveBomb0Filler.json │ │ ├── CallRecursiveBomb0_OOG_atMaxCallDepthFiller.json │ │ ├── CallRecursiveBomb1Filler.json │ │ ├── CallRecursiveBomb2Filler.json │ │ ├── CallRecursiveBomb3Filler.json │ │ ├── CallRecursiveBombLog2Filler.json │ │ ├── CallRecursiveBombLogFiller.json │ │ ├── CallToNameRegistrator0Filler.json │ │ ├── CallToNameRegistratorAddressTooBigLeftFiller.json │ │ ├── CallToNameRegistratorAddressTooBigRightFiller.json │ │ ├── CallToNameRegistratorMemOOGAndInsufficientBalanceFiller.json │ │ ├── CallToNameRegistratorNotMuchMemory0Filler.json │ │ ├── CallToNameRegistratorNotMuchMemory1Filler.json │ │ ├── CallToNameRegistratorOutOfGasFiller.json │ │ ├── CallToNameRegistratorTooMuchMemory0Filler.json │ │ ├── CallToNameRegistratorTooMuchMemory1Filler.json │ │ ├── CallToNameRegistratorTooMuchMemory2Filler.json │ │ ├── CallToNameRegistratorZeorSizeMemExpansionFiller.json │ │ ├── CallToReturn1Filler.json │ │ ├── CallToReturn1ForDynamicJump0Filler.json │ │ ├── CallToReturn1ForDynamicJump1Filler.json │ │ ├── CalltoReturn2Filler.json │ │ ├── CreateHashCollisionFiller.json │ │ ├── PostToReturn1Filler.json │ │ ├── TestNameRegistratorFiller.json │ │ ├── __init__.py │ │ ├── balanceInputAddressTooBigFiller.json │ │ ├── callValueFiller.json │ │ ├── callcodeTo0Filler.json │ │ ├── callcodeToNameRegistrator0Filler.json │ │ ├── callcodeToNameRegistratorAddresTooBigLeftFiller.json │ │ ├── callcodeToNameRegistratorAddresTooBigRightFiller.json │ │ ├── callcodeToNameRegistratorZeroMemExpanionFiller.json │ │ ├── callcodeToReturn1Filler.json │ │ ├── callerAccountBalanceFiller.json │ │ ├── createNameRegistratorFiller.json │ │ ├── createNameRegistratorOOG_MemExpansionOOVFiller.json │ │ ├── createNameRegistratorOutOfMemoryBonds0Filler.json │ │ ├── createNameRegistratorOutOfMemoryBonds1Filler.json │ │ ├── createNameRegistratorValueTooHighFiller.json │ │ ├── createNameRegistratorZeroMem2Filler.json │ │ ├── createNameRegistratorZeroMemExpansionFiller.json │ │ ├── createNameRegistratorZeroMemFiller.json │ │ ├── createWithInvalidOpcodeFiller.json │ │ ├── currentAccountBalanceFiller.json │ │ ├── doubleSelfdestructTestFiller.yml │ │ ├── doubleSelfdestructTouch_ParisFiller.yml │ │ ├── extcodecopyFiller.json │ │ ├── multiSelfdestructFiller.yml │ │ ├── return0Filler.json │ │ ├── return1Filler.json │ │ ├── return2Filler.json │ │ ├── suicideAddressFiller.json │ │ ├── suicideCallerAddresTooBigLeftFiller.json │ │ ├── suicideCallerAddresTooBigRightFiller.json │ │ ├── suicideCallerFiller.json │ │ ├── suicideNotExistingAccountFiller.json │ │ ├── suicideOriginFiller.json │ │ ├── suicideSendEtherPostDeathFiller.json │ │ ├── suicideSendEtherToMeFiller.json │ │ └── testRandomTestFiller.json │ │ ├── stTimeConsuming │ │ ├── __init__.py │ │ ├── sstore_combinations_initial00_2_ParisFiller.json │ │ ├── sstore_combinations_initial00_ParisFiller.json │ │ ├── sstore_combinations_initial01_2_ParisFiller.json │ │ ├── sstore_combinations_initial01_ParisFiller.json │ │ ├── sstore_combinations_initial10_2_ParisFiller.json │ │ ├── sstore_combinations_initial10_ParisFiller.json │ │ ├── sstore_combinations_initial11_2_ParisFiller.json │ │ ├── sstore_combinations_initial11_ParisFiller.json │ │ ├── sstore_combinations_initial20_2_ParisFiller.json │ │ ├── sstore_combinations_initial20_ParisFiller.json │ │ ├── sstore_combinations_initial21_2_ParisFiller.json │ │ └── sstore_combinations_initial21_ParisFiller.json │ │ ├── stTransactionTest │ │ ├── ContractStoreClearsOOGFiller.json │ │ ├── ContractStoreClearsSuccessFiller.json │ │ ├── CreateMessageRevertedFiller.json │ │ ├── CreateMessageSuccessFiller.json │ │ ├── CreateTransactionSuccessFiller.json │ │ ├── EmptyTransaction3Filler.json │ │ ├── HighGasLimitFiller.json │ │ ├── HighGasPriceParisFiller.yml │ │ ├── InternalCallHittingGasLimit2Filler.json │ │ ├── InternalCallHittingGasLimitFiller.json │ │ ├── InternalCallHittingGasLimitSuccessFiller.json │ │ ├── InternalCallStoreClearsOOGFiller.json │ │ ├── InternalCallStoreClearsSuccessFiller.json │ │ ├── NoSrcAccount1559Filler.yml │ │ ├── NoSrcAccountCreate1559Filler.yml │ │ ├── NoSrcAccountCreateFiller.yml │ │ ├── NoSrcAccountFiller.yml │ │ ├── Opcodes_TransactionInitFiller.json │ │ ├── OverflowGasRequire2Filler.json │ │ ├── PointAtInfinityECRecoverFiller.yml │ │ ├── StoreClearsAndInternalCallStoreClearsOOGFiller.json │ │ ├── StoreClearsAndInternalCallStoreClearsSuccessFiller.json │ │ ├── StoreGasOnCreateFiller.json │ │ ├── SuicidesAndInternalCallSuicidesBonusGasAtCallFailedFiller.json │ │ ├── SuicidesAndInternalCallSuicidesBonusGasAtCallFiller.json │ │ ├── SuicidesAndInternalCallSuicidesOOGFiller.json │ │ ├── SuicidesAndInternalCallSuicidesSuccessFiller.json │ │ ├── SuicidesAndSendMoneyToItselfEtherDestroyedFiller.json │ │ ├── SuicidesStopAfterSuicideFiller.json │ │ ├── TransactionDataCosts652Filler.json │ │ ├── TransactionSendingToEmptyFiller.json │ │ ├── TransactionSendingToZeroFiller.json │ │ ├── TransactionToAddressh160minusOneFiller.json │ │ ├── TransactionToItselfFiller.json │ │ └── __init__.py │ │ ├── stTransitionTest │ │ ├── __init__.py │ │ ├── createNameRegistratorPerTxsAfterFiller.json │ │ ├── createNameRegistratorPerTxsAtFiller.json │ │ ├── createNameRegistratorPerTxsBeforeFiller.json │ │ ├── delegatecallAfterTransitionFiller.json │ │ ├── delegatecallAtTransitionFiller.json │ │ └── delegatecallBeforeTransitionFiller.json │ │ ├── stWalletTest │ │ ├── __init__.py │ │ ├── dayLimitConstructionFiller.json │ │ ├── dayLimitConstructionOOGFiller.json │ │ ├── dayLimitConstructionPartialFiller.json │ │ ├── dayLimitResetSpentTodayFiller.json │ │ ├── dayLimitSetDailyLimitFiller.json │ │ ├── dayLimitSetDailyLimitNoDataFiller.json │ │ ├── multiOwnedAddOwnerAddMyselfFiller.json │ │ ├── multiOwnedAddOwnerFiller.json │ │ ├── multiOwnedChangeOwnerFiller.json │ │ ├── multiOwnedChangeOwnerNoArgumentFiller.json │ │ ├── multiOwnedChangeOwner_fromNotOwnerFiller.json │ │ ├── multiOwnedChangeOwner_toIsOwnerFiller.json │ │ ├── multiOwnedChangeRequirementTo0Filler.json │ │ ├── multiOwnedChangeRequirementTo1Filler.json │ │ ├── multiOwnedChangeRequirementTo2Filler.json │ │ ├── multiOwnedConstructionCorrectFiller.json │ │ ├── multiOwnedConstructionNotEnoughGasFiller.json │ │ ├── multiOwnedConstructionNotEnoughGasPartialFiller.json │ │ ├── multiOwnedIsOwnerFalseFiller.json │ │ ├── multiOwnedIsOwnerTrueFiller.json │ │ ├── multiOwnedRemoveOwnerByNonOwnerFiller.json │ │ ├── multiOwnedRemoveOwnerFiller.json │ │ ├── multiOwnedRemoveOwner_mySelfFiller.json │ │ ├── multiOwnedRemoveOwner_ownerIsNotOwnerFiller.json │ │ ├── multiOwnedRevokeNothingFiller.json │ │ ├── walletAddOwnerRemovePendingTransactionFiller.json │ │ ├── walletChangeOwnerRemovePendingTransactionFiller.json │ │ ├── walletChangeRequirementRemovePendingTransactionFiller.json │ │ ├── walletConfirmFiller.json │ │ ├── walletConstructionFiller.json │ │ ├── walletConstructionOOGFiller.json │ │ ├── walletConstructionPartialFiller.json │ │ ├── walletDefaultFiller.json │ │ ├── walletDefaultWithOutValueFiller.json │ │ ├── walletExecuteOverDailyLimitMultiOwnerFiller.json │ │ ├── walletExecuteOverDailyLimitOnlyOneOwnerFiller.json │ │ ├── walletExecuteOverDailyLimitOnlyOneOwnerNewFiller.json │ │ ├── walletExecuteUnderDailyLimitFiller.json │ │ ├── walletKillFiller.json │ │ ├── walletKillNotByOwnerFiller.json │ │ ├── walletKillToWalletFiller.json │ │ └── walletRemoveOwnerRemovePendingTransactionFiller.json │ │ ├── stZeroCallsRevert │ │ ├── ZeroValue_CALLCODE_OOGRevertFiller.json │ │ ├── ZeroValue_CALLCODE_ToEmpty_OOGRevert_ParisFiller.json │ │ ├── ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevertFiller.json │ │ ├── ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ ├── ZeroValue_CALL_OOGRevertFiller.json │ │ ├── ZeroValue_CALL_ToEmpty_OOGRevert_ParisFiller.json │ │ ├── ZeroValue_CALL_ToNonZeroBalance_OOGRevertFiller.json │ │ ├── ZeroValue_CALL_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ ├── ZeroValue_DELEGATECALL_OOGRevertFiller.json │ │ ├── ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_ParisFiller.json │ │ ├── ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevertFiller.json │ │ ├── ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ ├── ZeroValue_SUICIDE_OOGRevertFiller.json │ │ ├── ZeroValue_SUICIDE_ToEmpty_OOGRevert_ParisFiller.json │ │ ├── ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevertFiller.json │ │ ├── ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_ParisFiller.json │ │ └── __init__.py │ │ ├── stZeroCallsTest │ │ ├── ZeroValue_CALLCODEFiller.json │ │ ├── ZeroValue_CALLCODE_ToEmpty_ParisFiller.json │ │ ├── ZeroValue_CALLCODE_ToNonZeroBalanceFiller.json │ │ ├── ZeroValue_CALLCODE_ToOneStorageKey_ParisFiller.json │ │ ├── ZeroValue_CALLFiller.json │ │ ├── ZeroValue_CALL_ToEmpty_ParisFiller.json │ │ ├── ZeroValue_CALL_ToNonZeroBalanceFiller.json │ │ ├── ZeroValue_CALL_ToOneStorageKey_ParisFiller.json │ │ ├── ZeroValue_DELEGATECALLFiller.json │ │ ├── ZeroValue_DELEGATECALL_ToEmpty_ParisFiller.json │ │ ├── ZeroValue_DELEGATECALL_ToNonZeroBalanceFiller.json │ │ ├── ZeroValue_DELEGATECALL_ToOneStorageKey_ParisFiller.json │ │ ├── ZeroValue_SUICIDEFiller.json │ │ ├── ZeroValue_SUICIDE_ToEmpty_ParisFiller.json │ │ ├── ZeroValue_SUICIDE_ToNonZeroBalanceFiller.json │ │ ├── ZeroValue_SUICIDE_ToOneStorageKey_ParisFiller.json │ │ ├── ZeroValue_TransactionCALLFiller.json │ │ ├── ZeroValue_TransactionCALL_ToEmpty_ParisFiller.json │ │ ├── ZeroValue_TransactionCALL_ToNonZeroBalanceFiller.json │ │ ├── ZeroValue_TransactionCALL_ToOneStorageKey_ParisFiller.json │ │ ├── ZeroValue_TransactionCALLwithDataFiller.json │ │ ├── ZeroValue_TransactionCALLwithData_ToEmpty_ParisFiller.json │ │ ├── ZeroValue_TransactionCALLwithData_ToNonZeroBalanceFiller.json │ │ ├── ZeroValue_TransactionCALLwithData_ToOneStorageKey_ParisFiller.json │ │ └── __init__.py │ │ ├── stZeroKnowledge │ │ ├── __init__.py │ │ ├── ecmul_1-2_2_28000_128Filler.json │ │ ├── ecmul_1-2_2_28000_96Filler.json │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_21000_128Filler.json │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_21000_80Filler.json │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_21000_96Filler.json │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_28000_128Filler.json │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_28000_80Filler.json │ │ ├── ecmul_1-2_340282366920938463463374607431768211456_28000_96Filler.json │ │ ├── ecmul_1-2_5616_21000_128Filler.json │ │ ├── ecmul_1-2_5616_21000_96Filler.json │ │ ├── ecmul_1-2_5616_28000_128Filler.json │ │ ├── ecmul_1-2_5617_21000_128Filler.json │ │ ├── ecmul_1-2_5617_21000_96Filler.json │ │ ├── ecmul_1-2_5617_28000_128Filler.json │ │ ├── ecmul_1-2_5617_28000_96Filler.json │ │ ├── ecmul_1-2_616_28000_96Filler.json │ │ ├── ecmul_1-2_9935_21000_128Filler.json │ │ ├── ecmul_1-2_9935_21000_96Filler.json │ │ ├── ecmul_1-2_9935_28000_128Filler.json │ │ ├── ecmul_1-2_9935_28000_96Filler.json │ │ ├── ecmul_1-2_9_21000_128Filler.json │ │ ├── ecmul_1-2_9_21000_96Filler.json │ │ ├── ecmul_1-2_9_28000_128Filler.json │ │ ├── ecmul_1-2_9_28000_96Filler.json │ │ ├── ecmul_1-3_0_21000_128Filler.json │ │ ├── ecmul_1-3_0_21000_64Filler.json │ │ ├── ecmul_1-3_0_21000_80Filler.json │ │ ├── ecmul_1-3_0_21000_96Filler.json │ │ ├── ecmul_1-3_0_28000_128Filler.json │ │ ├── ecmul_1-3_0_28000_64Filler.json │ │ ├── ecmul_1-3_0_28000_80_ParisFiller.json │ │ ├── ecmul_1-3_0_28000_96Filler.json │ │ ├── ecmul_1-3_1_21000_128Filler.json │ │ ├── ecmul_1-3_1_21000_96Filler.json │ │ ├── ecmul_1-3_1_28000_128Filler.json │ │ ├── ecmul_1-3_1_28000_96Filler.json │ │ ├── ecmul_1-3_2_21000_128Filler.json │ │ ├── ecmul_1-3_2_21000_96Filler.json │ │ ├── ecmul_1-3_2_28000_128Filler.json │ │ ├── ecmul_1-3_2_28000_96Filler.json │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_21000_128Filler.json │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_21000_80Filler.json │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_21000_96Filler.json │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_28000_128Filler.json │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_28000_80Filler.json │ │ ├── ecmul_1-3_340282366920938463463374607431768211456_28000_96Filler.json │ │ ├── ecmul_1-3_5616_21000_128Filler.json │ │ ├── ecmul_1-3_5616_21000_96Filler.json │ │ ├── ecmul_1-3_5616_28000_128Filler.json │ │ ├── ecmul_1-3_5616_28000_96Filler.json │ │ ├── ecmul_1-3_5617_21000_128Filler.json │ │ ├── ecmul_1-3_5617_21000_96Filler.json │ │ ├── ecmul_1-3_5617_28000_128Filler.json │ │ ├── ecmul_1-3_5617_28000_96Filler.json │ │ ├── ecmul_1-3_9935_21000_128Filler.json │ │ ├── ecmul_1-3_9935_21000_96Filler.json │ │ ├── ecmul_1-3_9935_28000_128Filler.json │ │ ├── ecmul_1-3_9935_28000_96Filler.json │ │ ├── ecmul_1-3_9_21000_128Filler.json │ │ ├── ecmul_1-3_9_21000_96Filler.json │ │ ├── ecmul_1-3_9_28000_128Filler.json │ │ ├── ecmul_1-3_9_28000_96Filler.json │ │ ├── ecmul_7827-6598_0_21000_128Filler.json │ │ ├── ecmul_7827-6598_0_21000_64Filler.json │ │ ├── ecmul_7827-6598_0_21000_80Filler.json │ │ ├── ecmul_7827-6598_0_21000_96Filler.json │ │ ├── ecmul_7827-6598_0_28000_128Filler.json │ │ ├── ecmul_7827-6598_0_28000_64Filler.json │ │ ├── ecmul_7827-6598_0_28000_80Filler.json │ │ ├── ecmul_7827-6598_0_28000_96Filler.json │ │ ├── ecmul_7827-6598_1456_21000_128Filler.json │ │ ├── ecmul_7827-6598_1456_21000_80Filler.json │ │ ├── ecmul_7827-6598_1456_21000_96Filler.json │ │ ├── ecmul_7827-6598_1456_28000_128Filler.json │ │ ├── ecmul_7827-6598_1456_28000_80Filler.json │ │ ├── ecmul_7827-6598_1456_28000_96Filler.json │ │ ├── ecmul_7827-6598_1_21000_128Filler.json │ │ ├── ecmul_7827-6598_1_21000_96Filler.json │ │ ├── ecmul_7827-6598_1_28000_128Filler.json │ │ ├── ecmul_7827-6598_1_28000_96Filler.json │ │ ├── ecmul_7827-6598_2_21000_128Filler.json │ │ ├── ecmul_7827-6598_2_21000_96Filler.json │ │ ├── ecmul_7827-6598_2_28000_128Filler.json │ │ ├── ecmul_7827-6598_2_28000_96Filler.json │ │ ├── ecmul_7827-6598_5616_21000_128Filler.json │ │ ├── ecmul_7827-6598_5616_21000_96Filler.json │ │ ├── ecmul_7827-6598_5616_28000_128Filler.json │ │ ├── ecmul_7827-6598_5616_28000_96Filler.json │ │ ├── ecmul_7827-6598_5617_21000_128Filler.json │ │ ├── ecmul_7827-6598_5617_21000_96Filler.json │ │ ├── ecmul_7827-6598_5617_28000_128Filler.json │ │ ├── ecmul_7827-6598_5617_28000_96Filler.json │ │ ├── ecmul_7827-6598_9935_21000_128Filler.json │ │ ├── ecmul_7827-6598_9935_21000_96Filler.json │ │ ├── ecmul_7827-6598_9935_28000_128Filler.json │ │ ├── ecmul_7827-6598_9935_28000_96Filler.json │ │ ├── ecmul_7827-6598_9_21000_128Filler.json │ │ ├── ecmul_7827-6598_9_21000_96Filler.json │ │ ├── ecmul_7827-6598_9_28000_128Filler.json │ │ ├── ecmul_7827-6598_9_28000_96Filler.json │ │ ├── ecpairing_bad_length_191Filler.json │ │ ├── ecpairing_bad_length_193Filler.json │ │ ├── ecpairing_empty_dataFiller.json │ │ ├── ecpairing_empty_data_insufficient_gasFiller.json │ │ ├── ecpairing_inputsFiller.yml │ │ ├── ecpairing_one_point_failFiller.json │ │ ├── ecpairing_one_point_insufficient_gasFiller.json │ │ ├── ecpairing_one_point_not_in_subgroupFiller.json │ │ ├── ecpairing_one_point_with_g1_zeroFiller.json │ │ ├── ecpairing_one_point_with_g2_zeroFiller.json │ │ ├── ecpairing_one_point_with_g2_zero_and_g1_invalidFiller.json │ │ ├── ecpairing_perturb_g2_by_curve_orderFiller.json │ │ ├── ecpairing_perturb_g2_by_field_modulusFiller.json │ │ ├── ecpairing_perturb_g2_by_field_modulus_againFiller.json │ │ ├── ecpairing_perturb_g2_by_oneFiller.json │ │ ├── ecpairing_perturb_zeropoint_by_curve_orderFiller.json │ │ ├── ecpairing_perturb_zeropoint_by_field_modulusFiller.json │ │ ├── ecpairing_perturb_zeropoint_by_oneFiller.json │ │ ├── ecpairing_three_point_fail_1Filler.json │ │ ├── ecpairing_three_point_match_1Filler.json │ │ ├── ecpairing_two_point_fail_1Filler.json │ │ ├── ecpairing_two_point_fail_2Filler.json │ │ ├── ecpairing_two_point_match_1Filler.json │ │ ├── ecpairing_two_point_match_2Filler.json │ │ ├── ecpairing_two_point_match_3Filler.json │ │ ├── ecpairing_two_point_match_4Filler.json │ │ ├── ecpairing_two_point_match_5Filler.json │ │ ├── ecpairing_two_point_oogFiller.json │ │ ├── ecpairing_two_points_with_one_g2_zeroFiller.json │ │ ├── pairingTestFiller.json │ │ ├── pointAddFiller.json │ │ ├── pointAddTruncFiller.json │ │ ├── pointMulAdd2Filler.json │ │ └── pointMulAddFiller.json │ │ └── stZeroKnowledge2 │ │ ├── __init__.py │ │ ├── ecadd_0-0_0-0_21000_0Filler.json │ │ ├── ecadd_0-0_0-0_21000_128Filler.json │ │ ├── ecadd_0-0_0-0_21000_192Filler.json │ │ ├── ecadd_0-0_0-0_21000_64Filler.json │ │ ├── ecadd_0-0_0-0_21000_80_ParisFiller.json │ │ ├── ecadd_0-0_0-0_25000_0Filler.json │ │ ├── ecadd_0-0_0-0_25000_128Filler.json │ │ ├── ecadd_0-0_0-0_25000_192Filler.json │ │ ├── ecadd_0-0_0-0_25000_64Filler.json │ │ ├── ecadd_0-0_0-0_25000_80Filler.json │ │ ├── ecadd_0-0_1-2_21000_128Filler.json │ │ ├── ecadd_0-0_1-2_21000_192Filler.json │ │ ├── ecadd_0-0_1-2_25000_128Filler.json │ │ ├── ecadd_0-0_1-2_25000_192Filler.json │ │ ├── ecadd_0-0_1-3_21000_128Filler.json │ │ ├── ecadd_0-0_1-3_25000_128Filler.json │ │ ├── ecadd_0-3_1-2_21000_128Filler.json │ │ ├── ecadd_0-3_1-2_25000_128Filler.json │ │ ├── ecadd_1-2_0-0_21000_128Filler.json │ │ ├── ecadd_1-2_0-0_21000_192Filler.json │ │ ├── ecadd_1-2_0-0_21000_64Filler.json │ │ ├── ecadd_1-2_0-0_25000_128Filler.json │ │ ├── ecadd_1-2_0-0_25000_192Filler.json │ │ ├── ecadd_1-2_0-0_25000_64Filler.json │ │ ├── ecadd_1-2_1-2_21000_128Filler.json │ │ ├── ecadd_1-2_1-2_21000_192Filler.json │ │ ├── ecadd_1-2_1-2_25000_128Filler.json │ │ ├── ecadd_1-2_1-2_25000_192Filler.json │ │ ├── ecadd_1-3_0-0_21000_80Filler.json │ │ ├── ecadd_1-3_0-0_25000_80_ParisFiller.json │ │ ├── ecadd_1145-3932_1145-4651_21000_192Filler.json │ │ ├── ecadd_1145-3932_1145-4651_25000_192Filler.json │ │ ├── ecadd_1145-3932_2969-1336_21000_128Filler.json │ │ ├── ecadd_1145-3932_2969-1336_25000_128Filler.json │ │ ├── ecadd_6-9_19274124-124124_21000_128Filler.json │ │ ├── ecadd_6-9_19274124-124124_25000_128Filler.json │ │ ├── ecmul_0-0_0_21000_0Filler.json │ │ ├── ecmul_0-0_0_21000_128Filler.json │ │ ├── ecmul_0-0_0_21000_40Filler.json │ │ ├── ecmul_0-0_0_21000_64Filler.json │ │ ├── ecmul_0-0_0_21000_80Filler.json │ │ ├── ecmul_0-0_0_21000_96Filler.json │ │ ├── ecmul_0-0_0_28000_0Filler.json │ │ ├── ecmul_0-0_0_28000_128Filler.json │ │ ├── ecmul_0-0_0_28000_40Filler.json │ │ ├── ecmul_0-0_0_28000_64Filler.json │ │ ├── ecmul_0-0_0_28000_80Filler.json │ │ ├── ecmul_0-0_0_28000_96Filler.json │ │ ├── ecmul_0-0_1_21000_128Filler.json │ │ ├── ecmul_0-0_1_21000_96Filler.json │ │ ├── ecmul_0-0_1_28000_128Filler.json │ │ ├── ecmul_0-0_1_28000_96Filler.json │ │ ├── ecmul_0-0_2_21000_128Filler.json │ │ ├── ecmul_0-0_2_21000_96Filler.json │ │ ├── ecmul_0-0_2_28000_128Filler.json │ │ ├── ecmul_0-0_2_28000_96Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_21000_128Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_21000_80Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_21000_96Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_28000_128Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_28000_80Filler.json │ │ ├── ecmul_0-0_340282366920938463463374607431768211456_28000_96Filler.json │ │ ├── ecmul_0-0_5616_21000_128Filler.json │ │ ├── ecmul_0-0_5616_21000_96Filler.json │ │ ├── ecmul_0-0_5616_28000_128Filler.json │ │ ├── ecmul_0-0_5616_28000_96Filler.json │ │ ├── ecmul_0-0_5617_21000_128Filler.json │ │ ├── ecmul_0-0_5617_21000_96Filler.json │ │ ├── ecmul_0-0_5617_28000_128Filler.json │ │ ├── ecmul_0-0_5617_28000_96Filler.json │ │ ├── ecmul_0-0_9935_21000_128Filler.json │ │ ├── ecmul_0-0_9935_21000_96Filler.json │ │ ├── ecmul_0-0_9935_28000_128Filler.json │ │ ├── ecmul_0-0_9935_28000_96Filler.json │ │ ├── ecmul_0-0_9_21000_128Filler.json │ │ ├── ecmul_0-0_9_21000_96Filler.json │ │ ├── ecmul_0-0_9_28000_128Filler.json │ │ ├── ecmul_0-0_9_28000_96Filler.json │ │ ├── ecmul_0-3_0_21000_128Filler.json │ │ ├── ecmul_0-3_0_21000_64Filler.json │ │ ├── ecmul_0-3_0_21000_80Filler.json │ │ ├── ecmul_0-3_0_21000_96Filler.json │ │ ├── ecmul_0-3_0_28000_128Filler.json │ │ ├── ecmul_0-3_0_28000_64Filler.json │ │ ├── ecmul_0-3_0_28000_80Filler.json │ │ ├── ecmul_0-3_0_28000_96Filler.json │ │ ├── ecmul_0-3_1_21000_128Filler.json │ │ ├── ecmul_0-3_1_21000_96Filler.json │ │ ├── ecmul_0-3_1_28000_128Filler.json │ │ ├── ecmul_0-3_1_28000_96Filler.json │ │ ├── ecmul_0-3_2_21000_128Filler.json │ │ ├── ecmul_0-3_2_21000_96Filler.json │ │ ├── ecmul_0-3_2_28000_128Filler.json │ │ ├── ecmul_0-3_2_28000_96Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_21000_128Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_21000_80Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_21000_96Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_28000_128Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_28000_80Filler.json │ │ ├── ecmul_0-3_340282366920938463463374607431768211456_28000_96Filler.json │ │ ├── ecmul_0-3_5616_21000_128Filler.json │ │ ├── ecmul_0-3_5616_21000_96Filler.json │ │ ├── ecmul_0-3_5616_28000_128Filler.json │ │ ├── ecmul_0-3_5616_28000_96_ParisFiller.json │ │ ├── ecmul_0-3_5617_21000_128Filler.json │ │ ├── ecmul_0-3_5617_21000_96Filler.json │ │ ├── ecmul_0-3_5617_28000_128Filler.json │ │ ├── ecmul_0-3_5617_28000_96Filler.json │ │ ├── ecmul_0-3_9935_21000_128Filler.json │ │ ├── ecmul_0-3_9935_21000_96Filler.json │ │ ├── ecmul_0-3_9935_28000_128Filler.json │ │ ├── ecmul_0-3_9935_28000_96Filler.json │ │ ├── ecmul_0-3_9_21000_128Filler.json │ │ ├── ecmul_0-3_9_21000_96Filler.json │ │ ├── ecmul_0-3_9_28000_128Filler.json │ │ ├── ecmul_0-3_9_28000_96Filler.json │ │ ├── ecmul_1-2_0_21000_128Filler.json │ │ ├── ecmul_1-2_0_21000_64Filler.json │ │ ├── ecmul_1-2_0_21000_80Filler.json │ │ ├── ecmul_1-2_0_21000_96Filler.json │ │ ├── ecmul_1-2_0_28000_128Filler.json │ │ ├── ecmul_1-2_0_28000_64Filler.json │ │ ├── ecmul_1-2_0_28000_80Filler.json │ │ ├── ecmul_1-2_0_28000_96Filler.json │ │ ├── ecmul_1-2_1_21000_128Filler.json │ │ ├── ecmul_1-2_1_21000_96Filler.json │ │ ├── ecmul_1-2_1_28000_128Filler.json │ │ ├── ecmul_1-2_1_28000_96Filler.json │ │ ├── ecmul_1-2_2_21000_128Filler.json │ │ └── ecmul_1-2_2_21000_96Filler.json └── unscheduled │ ├── __init__.py │ └── eip7692_eof_v1 │ ├── __init__.py │ ├── eip3540_eof_v1 │ ├── __init__.py │ ├── opcodes.py │ ├── spec.py │ ├── test_all_opcodes_in_container.py │ ├── test_container_size.py │ ├── test_container_validation.py │ ├── test_eof_example.py │ ├── test_execution.py │ ├── test_execution_function.py │ ├── test_extcode.py │ ├── test_migrated_valid_invalid.py │ ├── test_opcodes_in_legacy.py │ ├── test_section_header_body_mismatch.py │ ├── test_section_order.py │ └── test_section_size.py │ ├── eip4200_relative_jumps │ ├── __init__.py │ ├── helpers.py │ ├── test_rjump.py │ ├── test_rjumpi.py │ └── test_rjumpv.py │ ├── eip4750_functions │ ├── __init__.py │ ├── helpers.py │ ├── test_callf_execution.py │ └── test_code_validation.py │ ├── eip5450_stack │ ├── __init__.py │ ├── test_code_validation.py │ └── test_execution.py │ ├── eip6206_jumpf │ ├── __init__.py │ ├── helpers.py │ ├── spec.py │ ├── test_jumpf_execution.py │ ├── test_jumpf_stack.py │ ├── test_jumpf_target.py │ ├── test_jumpf_validation.py │ └── test_nonreturning_validation.py │ ├── eip663_dupn_swapn_exchange │ ├── __init__.py │ ├── test_dupn.py │ ├── test_exchange.py │ └── test_swapn.py │ ├── eip7069_extcall │ ├── __init__.py │ ├── helpers.py │ ├── spec.py │ ├── test_address_space_extension.py │ ├── test_calldata.py │ ├── test_calls.py │ ├── test_gas.py │ ├── test_returndatacopy_memory_expansion.py │ └── test_returndataload.py │ ├── eip7480_data_section │ ├── __init__.py │ ├── spec.py │ ├── test_code_validation.py │ ├── test_data_opcodes.py │ └── test_datacopy_memory_expansion.py │ ├── eip7620_eof_create │ ├── __init__.py │ ├── helpers.py │ ├── spec.py │ ├── test_eofcreate.py │ ├── test_eofcreate_failures.py │ ├── test_gas.py │ ├── test_legacy_eof_creates.py │ ├── test_memory.py │ ├── test_returncode.py │ └── test_subcontainer_validation.py │ ├── eip7873_tx_create │ ├── __init__.py │ ├── spec.py │ ├── test_creation_tx.py │ ├── test_txcreate.py │ ├── test_txcreate_failures.py │ └── test_txcreate_validates.py │ ├── eof_tracker.md │ └── gas_test.py ├── tox.ini ├── uv.lock └── whitelist.txt /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/build-evm-base/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/actions/build-evm-base/action.yaml -------------------------------------------------------------------------------- /.github/actions/build-evm-client/besu/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/actions/build-evm-client/besu/action.yaml -------------------------------------------------------------------------------- /.github/actions/build-evm-client/ethjs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/actions/build-evm-client/ethjs/action.yml -------------------------------------------------------------------------------- /.github/actions/build-evm-client/evmone/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/actions/build-evm-client/evmone/action.yaml -------------------------------------------------------------------------------- /.github/actions/build-evm-client/geth/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/actions/build-evm-client/geth/action.yaml -------------------------------------------------------------------------------- /.github/actions/build-fixtures/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/actions/build-fixtures/action.yaml -------------------------------------------------------------------------------- /.github/actions/fetch-binary/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/actions/fetch-binary/action.yaml -------------------------------------------------------------------------------- /.github/configs/eels_resolutions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/configs/eels_resolutions.json -------------------------------------------------------------------------------- /.github/configs/evm-impl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/configs/evm-impl.yaml -------------------------------------------------------------------------------- /.github/configs/evm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/configs/evm.yaml -------------------------------------------------------------------------------- /.github/configs/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/configs/feature.yaml -------------------------------------------------------------------------------- /.github/scripts/fill_introduced_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/scripts/fill_introduced_tests.sh -------------------------------------------------------------------------------- /.github/scripts/fill_prepatched_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/scripts/fill_prepatched_tests.sh -------------------------------------------------------------------------------- /.github/scripts/generate_eip_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/scripts/generate_eip_report.py -------------------------------------------------------------------------------- /.github/scripts/get_release_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/scripts/get_release_props.py -------------------------------------------------------------------------------- /.github/scripts/parse_ported_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/scripts/parse_ported_tests.sh -------------------------------------------------------------------------------- /.github/workflows/check_eip_versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/workflows/check_eip_versions.yaml -------------------------------------------------------------------------------- /.github/workflows/check_links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/workflows/check_links.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/workflows/coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/docs_deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/workflows/docs_deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/fixtures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/workflows/fixtures.yaml -------------------------------------------------------------------------------- /.github/workflows/fixtures_feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/workflows/fixtures_feature.yaml -------------------------------------------------------------------------------- /.github/workflows/tox_verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.github/workflows/tox_verify.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pyspelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.pyspelling.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.recommended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.vscode/launch.recommended.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HUMANS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/HUMANS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/changelog_section_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/changelog_section_template.md -------------------------------------------------------------------------------- /docs/dev/coding_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/coding_style.md -------------------------------------------------------------------------------- /docs/dev/configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/configurations.md -------------------------------------------------------------------------------- /docs/dev/deps_and_packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/deps_and_packaging.md -------------------------------------------------------------------------------- /docs/dev/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/docs.md -------------------------------------------------------------------------------- /docs/dev/documenting_clis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/documenting_clis.md -------------------------------------------------------------------------------- /docs/dev/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/index.md -------------------------------------------------------------------------------- /docs/dev/interactive_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/interactive_usage.md -------------------------------------------------------------------------------- /docs/dev/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/logging.md -------------------------------------------------------------------------------- /docs/dev/precommit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/precommit.md -------------------------------------------------------------------------------- /docs/dev/test_actions_locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/dev/test_actions_locally.md -------------------------------------------------------------------------------- /docs/filling_tests/debugging_t8n_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/debugging_t8n_tools.md -------------------------------------------------------------------------------- /docs/filling_tests/filling_tests_command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/filling_tests_command_line.md -------------------------------------------------------------------------------- /docs/filling_tests/filling_tests_dev_fork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/filling_tests_dev_fork.md -------------------------------------------------------------------------------- /docs/filling_tests/filling_tests_vs_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/filling_tests_vs_code.md -------------------------------------------------------------------------------- /docs/filling_tests/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/getting_started.md -------------------------------------------------------------------------------- /docs/filling_tests/img/evm_dump_dir_in_html_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/img/evm_dump_dir_in_html_report.png -------------------------------------------------------------------------------- /docs/filling_tests/img/pytest_collect_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/img/pytest_collect_only.png -------------------------------------------------------------------------------- /docs/filling_tests/img/pytest_run_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/img/pytest_run_example.png -------------------------------------------------------------------------------- /docs/filling_tests/img/vs_code_executing_tests.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/img/vs_code_executing_tests.kra -------------------------------------------------------------------------------- /docs/filling_tests/img/vs_code_executing_tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/img/vs_code_executing_tests.png -------------------------------------------------------------------------------- /docs/filling_tests/img/vs_code_exploring_tests.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/img/vs_code_exploring_tests.kra -------------------------------------------------------------------------------- /docs/filling_tests/img/vs_code_exploring_tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/img/vs_code_exploring_tests.png -------------------------------------------------------------------------------- /docs/filling_tests/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/index.md -------------------------------------------------------------------------------- /docs/filling_tests/test_ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/test_ids.md -------------------------------------------------------------------------------- /docs/filling_tests/transition_tool_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/filling_tests/transition_tool_support.md -------------------------------------------------------------------------------- /docs/getting_started/code_standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/code_standards.md -------------------------------------------------------------------------------- /docs/getting_started/code_standards_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/code_standards_details.md -------------------------------------------------------------------------------- /docs/getting_started/getting_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/getting_help.md -------------------------------------------------------------------------------- /docs/getting_started/img/testing_pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/img/testing_pandas.png -------------------------------------------------------------------------------- /docs/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/installation.md -------------------------------------------------------------------------------- /docs/getting_started/installation_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/installation_troubleshooting.md -------------------------------------------------------------------------------- /docs/getting_started/repository_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/repository_overview.md -------------------------------------------------------------------------------- /docs/getting_started/setup_vs_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/getting_started/setup_vs_code.md -------------------------------------------------------------------------------- /docs/img/ETH-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/img/ETH-logo-icon.svg -------------------------------------------------------------------------------- /docs/img/Ethereum-logo-600px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/img/Ethereum-logo-600px.png -------------------------------------------------------------------------------- /docs/img/annotated-coverage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/img/annotated-coverage.jpg -------------------------------------------------------------------------------- /docs/img/execution_spec_tests.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/img/execution_spec_tests.jpg -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/original-coverage-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/img/original-coverage-loss.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/javascripts/site.js -------------------------------------------------------------------------------- /docs/library/cli/eest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/cli/eest.md -------------------------------------------------------------------------------- /docs/library/cli/evm_bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/cli/evm_bytes.md -------------------------------------------------------------------------------- /docs/library/cli/extract_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/cli/extract_config.md -------------------------------------------------------------------------------- /docs/library/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/cli/index.md -------------------------------------------------------------------------------- /docs/library/ethereum_clis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_clis.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_base_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_base_types.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_exceptions.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_fixtures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_fixtures.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_forks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_forks.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_specs.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_tools.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_types.md -------------------------------------------------------------------------------- /docs/library/ethereum_test_vm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/ethereum_test_vm.md -------------------------------------------------------------------------------- /docs/library/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/index.md -------------------------------------------------------------------------------- /docs/library/pytest_plugins/filler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/pytest_plugins/filler.md -------------------------------------------------------------------------------- /docs/library/pytest_plugins/forks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/pytest_plugins/forks.md -------------------------------------------------------------------------------- /docs/library/pytest_plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/pytest_plugins/index.md -------------------------------------------------------------------------------- /docs/library/pytest_plugins/spec_version_checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/library/pytest_plugins/spec_version_checker.md -------------------------------------------------------------------------------- /docs/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/navigation.md -------------------------------------------------------------------------------- /docs/running_tests/consume/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/consume/cache.md -------------------------------------------------------------------------------- /docs/running_tests/consume/direct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/consume/direct.md -------------------------------------------------------------------------------- /docs/running_tests/consume/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/consume/exceptions.md -------------------------------------------------------------------------------- /docs/running_tests/consume/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/consume/index.md -------------------------------------------------------------------------------- /docs/running_tests/consume/simulators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/consume/simulators.md -------------------------------------------------------------------------------- /docs/running_tests/execute/eth_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/execute/eth_config.md -------------------------------------------------------------------------------- /docs/running_tests/execute/hive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/execute/hive.md -------------------------------------------------------------------------------- /docs/running_tests/execute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/execute/index.md -------------------------------------------------------------------------------- /docs/running_tests/execute/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/execute/remote.md -------------------------------------------------------------------------------- /docs/running_tests/execute/transaction_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/execute/transaction_metadata.md -------------------------------------------------------------------------------- /docs/running_tests/hive/ci_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/hive/ci_integration.md -------------------------------------------------------------------------------- /docs/running_tests/hive/client_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/hive/client_config.md -------------------------------------------------------------------------------- /docs/running_tests/hive/common_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/hive/common_options.md -------------------------------------------------------------------------------- /docs/running_tests/hive/dev_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/hive/dev_mode.md -------------------------------------------------------------------------------- /docs/running_tests/hive/hiveview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/hive/hiveview.md -------------------------------------------------------------------------------- /docs/running_tests/hive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/hive/index.md -------------------------------------------------------------------------------- /docs/running_tests/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/index.md -------------------------------------------------------------------------------- /docs/running_tests/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/releases.md -------------------------------------------------------------------------------- /docs/running_tests/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/running.md -------------------------------------------------------------------------------- /docs/running_tests/test_formats/blockchain_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/test_formats/blockchain_test.md -------------------------------------------------------------------------------- /docs/running_tests/test_formats/blockchain_test_sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/test_formats/blockchain_test_sync.md -------------------------------------------------------------------------------- /docs/running_tests/test_formats/common_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/test_formats/common_types.md -------------------------------------------------------------------------------- /docs/running_tests/test_formats/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/test_formats/exceptions.md -------------------------------------------------------------------------------- /docs/running_tests/test_formats/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/test_formats/index.md -------------------------------------------------------------------------------- /docs/running_tests/test_formats/state_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/test_formats/state_test.md -------------------------------------------------------------------------------- /docs/running_tests/test_formats/transaction_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/test_formats/transaction_test.md -------------------------------------------------------------------------------- /docs/running_tests/useful_pytest_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/running_tests/useful_pytest_options.md -------------------------------------------------------------------------------- /docs/scripts/copy_repo_docs_to_mkdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/scripts/copy_repo_docs_to_mkdocs.py -------------------------------------------------------------------------------- /docs/scripts/gen_test_case_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/scripts/gen_test_case_reference.py -------------------------------------------------------------------------------- /docs/scripts/generate_fill_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/scripts/generate_fill_help.py -------------------------------------------------------------------------------- /docs/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/stylesheets/custom.css -------------------------------------------------------------------------------- /docs/templates/base.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/templates/base.md.j2 -------------------------------------------------------------------------------- /docs/templates/directory.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/templates/directory.md.j2 -------------------------------------------------------------------------------- /docs/templates/function.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/templates/function.html.j2 -------------------------------------------------------------------------------- /docs/templates/function.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/templates/function.md.j2 -------------------------------------------------------------------------------- /docs/templates/function_parameter_datatable.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/templates/function_parameter_datatable.html.j2 -------------------------------------------------------------------------------- /docs/templates/markdown_header.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/templates/markdown_header.md.j2 -------------------------------------------------------------------------------- /docs/templates/module.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/templates/module.md.j2 -------------------------------------------------------------------------------- /docs/writing_tests/adding_a_new_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/adding_a_new_test.md -------------------------------------------------------------------------------- /docs/writing_tests/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/benchmarks.md -------------------------------------------------------------------------------- /docs/writing_tests/checklist_templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/checklist_templates/index.md -------------------------------------------------------------------------------- /docs/writing_tests/code_standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/code_standards.md -------------------------------------------------------------------------------- /docs/writing_tests/eip_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/eip_checklist.md -------------------------------------------------------------------------------- /docs/writing_tests/exception_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/exception_tests.md -------------------------------------------------------------------------------- /docs/writing_tests/fork_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/fork_methods.md -------------------------------------------------------------------------------- /docs/writing_tests/fuzzer_bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/fuzzer_bridge.md -------------------------------------------------------------------------------- /docs/writing_tests/gas_optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/gas_optimization.md -------------------------------------------------------------------------------- /docs/writing_tests/img/eest_make_test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/img/eest_make_test.mp4 -------------------------------------------------------------------------------- /docs/writing_tests/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/index.md -------------------------------------------------------------------------------- /docs/writing_tests/porting_legacy_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/porting_legacy_tests.md -------------------------------------------------------------------------------- /docs/writing_tests/post_mortems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/post_mortems.md -------------------------------------------------------------------------------- /docs/writing_tests/reference_specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/reference_specification.md -------------------------------------------------------------------------------- /docs/writing_tests/test_markers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/test_markers.md -------------------------------------------------------------------------------- /docs/writing_tests/tutorials/blockchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/tutorials/blockchain.md -------------------------------------------------------------------------------- /docs/writing_tests/tutorials/state_transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/tutorials/state_transition.md -------------------------------------------------------------------------------- /docs/writing_tests/types_of_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/types_of_tests.md -------------------------------------------------------------------------------- /docs/writing_tests/verifying_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/verifying_changes.md -------------------------------------------------------------------------------- /docs/writing_tests/writing_a_new_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/docs/writing_tests/writing_a_new_test.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /scripts/convert_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/scripts/convert_addresses.py -------------------------------------------------------------------------------- /src/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Ethereum execution spec tests command-line tools.""" 2 | -------------------------------------------------------------------------------- /src/cli/check_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/check_fixtures.py -------------------------------------------------------------------------------- /src/cli/compare_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/compare_fixtures.py -------------------------------------------------------------------------------- /src/cli/diff_opcode_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/diff_opcode_counts.py -------------------------------------------------------------------------------- /src/cli/eest/__init__.py: -------------------------------------------------------------------------------- 1 | """Entry point for the `eest` command line interface.""" 2 | -------------------------------------------------------------------------------- /src/cli/eest/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/cli.py -------------------------------------------------------------------------------- /src/cli/eest/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/commands/__init__.py -------------------------------------------------------------------------------- /src/cli/eest/commands/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/commands/clean.py -------------------------------------------------------------------------------- /src/cli/eest/commands/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/commands/info.py -------------------------------------------------------------------------------- /src/cli/eest/make/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/make/__init__.py -------------------------------------------------------------------------------- /src/cli/eest/make/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/make/cli.py -------------------------------------------------------------------------------- /src/cli/eest/make/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/make/commands/__init__.py -------------------------------------------------------------------------------- /src/cli/eest/make/commands/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/make/commands/env.py -------------------------------------------------------------------------------- /src/cli/eest/make/commands/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/make/commands/test.py -------------------------------------------------------------------------------- /src/cli/eest/make/templates/blockchain_test.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/make/templates/blockchain_test.py.j2 -------------------------------------------------------------------------------- /src/cli/eest/make/templates/state_test.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/make/templates/state_test.py.j2 -------------------------------------------------------------------------------- /src/cli/eest/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eest/quotes.py -------------------------------------------------------------------------------- /src/cli/eofwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/eofwrap.py -------------------------------------------------------------------------------- /src/cli/evm_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/evm_bytes.py -------------------------------------------------------------------------------- /src/cli/extract_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/extract_config.py -------------------------------------------------------------------------------- /src/cli/fillerconvert/fillerconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fillerconvert/fillerconvert.py -------------------------------------------------------------------------------- /src/cli/fillerconvert/verify_filled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fillerconvert/verify_filled.py -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/README.md -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/__init__.py -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/blocktest_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/blocktest_builder.py -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/cli.py -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/converter.py -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/examples/README.md -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/examples/comprehensive_large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/examples/comprehensive_large.json -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/models.py -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/performance_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/performance_utils.py -------------------------------------------------------------------------------- /src/cli/fuzzer_bridge/production_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/fuzzer_bridge/production_test.py -------------------------------------------------------------------------------- /src/cli/gen_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gen_index.py -------------------------------------------------------------------------------- /src/cli/generate_checklist_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/generate_checklist_stubs.py -------------------------------------------------------------------------------- /src/cli/gentest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gentest/__init__.py -------------------------------------------------------------------------------- /src/cli/gentest/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gentest/cli.py -------------------------------------------------------------------------------- /src/cli/gentest/request_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gentest/request_manager.py -------------------------------------------------------------------------------- /src/cli/gentest/source_code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gentest/source_code_generator.py -------------------------------------------------------------------------------- /src/cli/gentest/test_context_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gentest/test_context_providers.py -------------------------------------------------------------------------------- /src/cli/gentest/test_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gentest/test_providers.py -------------------------------------------------------------------------------- /src/cli/gentest/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for the `generate` CLI.""" 2 | -------------------------------------------------------------------------------- /src/cli/gentest/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/gentest/tests/test_cli.py -------------------------------------------------------------------------------- /src/cli/hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/hasher.py -------------------------------------------------------------------------------- /src/cli/input/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/input/__init__.py -------------------------------------------------------------------------------- /src/cli/input/input_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/input/input_repository.py -------------------------------------------------------------------------------- /src/cli/input/questionary_input_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/input/questionary_input_repository.py -------------------------------------------------------------------------------- /src/cli/modify_static_test_gas_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/modify_static_test_gas_limits.py -------------------------------------------------------------------------------- /src/cli/order_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/order_fixtures.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/__init__.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/base.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/check_eip_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/check_eip_versions.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/checklist.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/consume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/consume.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/execute.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/fill.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/processors.py -------------------------------------------------------------------------------- /src/cli/pytest_commands/pytest_ini_files/pytest-fill.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/pytest_ini_files/pytest-fill.ini -------------------------------------------------------------------------------- /src/cli/pytest_commands/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/pytest_commands/watcher.py -------------------------------------------------------------------------------- /src/cli/show_pre_alloc_group_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/show_pre_alloc_group_stats.py -------------------------------------------------------------------------------- /src/cli/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for scripts and apps in `cli` .""" 2 | -------------------------------------------------------------------------------- /src/cli/tests/test_eofwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/test_eofwrap.py -------------------------------------------------------------------------------- /src/cli/tests/test_evm_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/test_evm_bytes.py -------------------------------------------------------------------------------- /src/cli/tests/test_fuzzer_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/test_fuzzer_bridge.py -------------------------------------------------------------------------------- /src/cli/tests/test_generate_all_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/test_generate_all_formats.py -------------------------------------------------------------------------------- /src/cli/tests/test_order_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/test_order_fixtures.py -------------------------------------------------------------------------------- /src/cli/tests/test_pytest_execute_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/test_pytest_execute_command.py -------------------------------------------------------------------------------- /src/cli/tests/test_pytest_fill_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/test_pytest_fill_command.py -------------------------------------------------------------------------------- /src/cli/tests/vectors/fuzzer_test_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/vectors/fuzzer_test_0.json -------------------------------------------------------------------------------- /src/cli/tests/vectors/fuzzer_test_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/vectors/fuzzer_test_1.json -------------------------------------------------------------------------------- /src/cli/tests/vectors/fuzzer_test_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/vectors/fuzzer_test_2.json -------------------------------------------------------------------------------- /src/cli/tests/vectors/fuzzer_test_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/vectors/fuzzer_test_3.json -------------------------------------------------------------------------------- /src/cli/tests/vectors/fuzzer_test_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tests/vectors/fuzzer_test_4.json -------------------------------------------------------------------------------- /src/cli/tox_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/cli/tox_helpers.py -------------------------------------------------------------------------------- /src/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/config/__init__.py -------------------------------------------------------------------------------- /src/config/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/config/app.py -------------------------------------------------------------------------------- /src/config/check_eip_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/config/check_eip_versions.py -------------------------------------------------------------------------------- /src/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/config/docs.py -------------------------------------------------------------------------------- /src/config/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/config/env.py -------------------------------------------------------------------------------- /src/config/templates/env.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/config/templates/env.yaml.j2 -------------------------------------------------------------------------------- /src/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/conftest.py -------------------------------------------------------------------------------- /src/ethereum_clis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/__init__.py -------------------------------------------------------------------------------- /src/ethereum_clis/cli_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/cli_types.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/__init__.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/besu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/besu.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/erigon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/erigon.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/ethereumjs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/ethereumjs.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/ethrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/ethrex.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/evmone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/evmone.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/execution_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/execution_specs.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/geth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/geth.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/nethermind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/nethermind.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/nimbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/nimbus.py -------------------------------------------------------------------------------- /src/ethereum_clis/clis/reth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/clis/reth.py -------------------------------------------------------------------------------- /src/ethereum_clis/ethereum_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/ethereum_cli.py -------------------------------------------------------------------------------- /src/ethereum_clis/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/file_utils.py -------------------------------------------------------------------------------- /src/ethereum_clis/fixture_consumer_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/fixture_consumer_tool.py -------------------------------------------------------------------------------- /src/ethereum_clis/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/1/alloc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/1/alloc.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/1/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/1/env.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/1/exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/1/exp.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/1/txs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/1/txs.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/3/alloc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/3/alloc.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/3/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/3/env.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/3/exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/3/exp.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/3/readme.md -------------------------------------------------------------------------------- /src/ethereum_clis/tests/fixtures/3/txs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/fixtures/3/txs.json -------------------------------------------------------------------------------- /src/ethereum_clis/tests/test_execution_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/test_execution_specs.py -------------------------------------------------------------------------------- /src/ethereum_clis/tests/test_transition_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/test_transition_tool.py -------------------------------------------------------------------------------- /src/ethereum_clis/tests/test_transition_tools_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/tests/test_transition_tools_support.py -------------------------------------------------------------------------------- /src/ethereum_clis/transition_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_clis/transition_tool.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/base_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/base_types.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/base_types_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/base_types_json.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/composite_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/composite_types.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/constants.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/conversions.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/mixins.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_base_types/pydantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/pydantic.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/reference_spec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/reference_spec/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/serialization.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_base_types/tests/test_base_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_base_types/tests/test_base_types.py -------------------------------------------------------------------------------- /src/ethereum_test_benchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_benchmark/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_benchmark/benchmark_code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_benchmark/benchmark_code_generator.py -------------------------------------------------------------------------------- /src/ethereum_test_checklists/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_checklists/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_checklists/eip_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_checklists/eip_checklist.py -------------------------------------------------------------------------------- /src/ethereum_test_checklists/eip_checklist.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_checklists/eip_checklist.pyi -------------------------------------------------------------------------------- /src/ethereum_test_checklists/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_checklists/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/engine_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/engine_api.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/exception_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/exception_mapper.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/exceptions.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/exceptions/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/exceptions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/exceptions/base.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/exceptions/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/exceptions/block.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/exceptions/eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/exceptions/eof.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/exceptions/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/exceptions/transaction.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_exceptions/tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_exceptions/tests/test_exceptions.py -------------------------------------------------------------------------------- /src/ethereum_test_execution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_execution/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_execution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_execution/base.py -------------------------------------------------------------------------------- /src/ethereum_test_execution/blob_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_execution/blob_transaction.py -------------------------------------------------------------------------------- /src/ethereum_test_execution/transaction_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_execution/transaction_post.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/base.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/blockchain.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/collector.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/common.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/consume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/consume.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/eof.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/file.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/pre_alloc_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/pre_alloc_groups.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/state.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/tests/test_base.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/tests/test_blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/tests/test_blockchain.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/tests/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/tests/test_eof.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/tests/test_state.py -------------------------------------------------------------------------------- /src/ethereum_test_fixtures/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_fixtures/transaction.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/base_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/base_decorators.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/base_fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/base_fork.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/forks/__init__.py: -------------------------------------------------------------------------------- 1 | """Listings of all forks, current and upcoming.""" 2 | -------------------------------------------------------------------------------- /src/ethereum_test_forks/forks/forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/forks/forks.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/forks/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/forks/helpers.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/forks/transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/forks/transition.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/gas_costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/gas_costs.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/helpers.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_forks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """`ethereum_test_forks` verification tests.""" 2 | -------------------------------------------------------------------------------- /src/ethereum_test_forks/tests/test_forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/tests/test_forks.py -------------------------------------------------------------------------------- /src/ethereum_test_forks/transition_base_fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_forks/transition_base_fork.py -------------------------------------------------------------------------------- /src/ethereum_test_rpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_rpc/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_rpc/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_rpc/rpc.py -------------------------------------------------------------------------------- /src/ethereum_test_rpc/rpc_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_rpc/rpc_types.py -------------------------------------------------------------------------------- /src/ethereum_test_rpc/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_rpc/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_rpc/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_rpc/tests/test_types.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/base.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/base_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/base_static.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/benchmark.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/blobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/blobs.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/blockchain.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/debugging.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/eof.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/helpers.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_specs/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/state.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/__init__.py: -------------------------------------------------------------------------------- 1 | """Ethereum/tests structures.""" 2 | -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/static_state/account.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/static_state/common/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/static_state/common/common.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/common/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/static_state/common/tags.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/static_state/environment.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/expect_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/static_state/expect_section.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/static_state/state_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/static_state/state_static.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/tests/helpers.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/tests/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/tests/test_benchmark.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/tests/test_expect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/tests/test_expect.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/tests/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/tests/test_fixtures.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/tests/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/tests/test_transaction.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/tests/test_types.py -------------------------------------------------------------------------------- /src/ethereum_test_specs/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_specs/transaction.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_tools/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """`ethereum_test_tools` verification tests.""" 2 | -------------------------------------------------------------------------------- /src/ethereum_test_tools/tests/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/tests/test_code.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/tools_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/tools_code/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/tools_code/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/tools_code/generators.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/tools_code/yul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/tools_code/yul.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/utility/__init__.py: -------------------------------------------------------------------------------- 1 | """Sub-package for utility functions and classes.""" 2 | -------------------------------------------------------------------------------- /src/ethereum_test_tools/utility/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/utility/generators.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/utility/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/utility/pytest.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/utility/tests/test_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/utility/tests/test_pytest.py -------------------------------------------------------------------------------- /src/ethereum_test_tools/utility/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_tools/utility/versioning.py -------------------------------------------------------------------------------- /src/ethereum_test_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_types/account_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/account_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/blob_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/blob_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/block_access_list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/block_access_list/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_types/block_access_list/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/block_access_list/exceptions.py -------------------------------------------------------------------------------- /src/ethereum_test_types/block_access_list/modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/block_access_list/modifiers.py -------------------------------------------------------------------------------- /src/ethereum_test_types/block_access_list/t8n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/block_access_list/t8n.py -------------------------------------------------------------------------------- /src/ethereum_test_types/block_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/block_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/chain_config_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/chain_config_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/eof/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/eof/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_types/eof/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/eof/constants.py -------------------------------------------------------------------------------- /src/ethereum_test_types/eof/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/eof/v1/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_types/eof/v1/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/eof/v1/constants.py -------------------------------------------------------------------------------- /src/ethereum_test_types/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/helpers.py -------------------------------------------------------------------------------- /src/ethereum_test_types/kzg_trusted_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/kzg_trusted_setup.txt -------------------------------------------------------------------------------- /src/ethereum_test_types/phase_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/phase_manager.py -------------------------------------------------------------------------------- /src/ethereum_test_types/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_types/receipt_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/receipt_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/request_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/request_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_blob_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_blob_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_block_access_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_block_access_lists.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_eof_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_eof_v1.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_helpers.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_phase_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_phase_manager.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_post_alloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_post_alloc.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_transactions.py -------------------------------------------------------------------------------- /src/ethereum_test_types/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/tests/test_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/transaction_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/transaction_types.py -------------------------------------------------------------------------------- /src/ethereum_test_types/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/trie.py -------------------------------------------------------------------------------- /src/ethereum_test_types/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_types/utils.py -------------------------------------------------------------------------------- /src/ethereum_test_vm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_vm/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_vm/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_vm/bytecode.py -------------------------------------------------------------------------------- /src/ethereum_test_vm/evm_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_vm/evm_types.py -------------------------------------------------------------------------------- /src/ethereum_test_vm/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_vm/helpers.py -------------------------------------------------------------------------------- /src/ethereum_test_vm/opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_vm/opcodes.py -------------------------------------------------------------------------------- /src/ethereum_test_vm/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ethereum_test_vm/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_vm/tests/__init__.py -------------------------------------------------------------------------------- /src/ethereum_test_vm/tests/test_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/ethereum_test_vm/tests/test_vm.py -------------------------------------------------------------------------------- /src/pytest_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/concurrency.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/__init__.py: -------------------------------------------------------------------------------- 1 | """Pytest plugins for consume commands.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/consume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/consume.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/direct/__init__.py: -------------------------------------------------------------------------------- 1 | """Consume direct test functions.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/direct/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/direct/conftest.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/direct/test_via_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/direct/test_via_direct.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/hive_engine_test/__init__.py: -------------------------------------------------------------------------------- 1 | """Hive engine test consumer plugin.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/hive_simulators_reorg/__init__.py: -------------------------------------------------------------------------------- 1 | """Hive simulators reorganization consumer plugin.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/releases.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/__init__.py: -------------------------------------------------------------------------------- 1 | """Consume hive simulators test functions.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/base.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/engine/__init__.py: -------------------------------------------------------------------------------- 1 | """Consume Engine test functions.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/engine/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/engine/conftest.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/exceptions.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/helpers/ruleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/helpers/ruleset.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/helpers/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/helpers/timing.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/rlp/__init__.py: -------------------------------------------------------------------------------- 1 | """Consume RLP test functions.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/rlp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/rlp/conftest.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/sync/__init__.py: -------------------------------------------------------------------------------- 1 | """Consume Sync test functions.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/sync/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/sync/conftest.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/simulators/timing_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/simulators/timing_data.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the consume plugin.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/consume/tests/test_consume_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/tests/test_consume_args.py -------------------------------------------------------------------------------- /src/pytest_plugins/consume/tests/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/consume/tests/test_releases.py -------------------------------------------------------------------------------- /src/pytest_plugins/custom_logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/custom_logging/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/custom_logging/plugin_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/custom_logging/plugin_logging.py -------------------------------------------------------------------------------- /src/pytest_plugins/custom_logging/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test package for the logging module.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/custom_logging/tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/custom_logging/tests/test_logging.py -------------------------------------------------------------------------------- /src/pytest_plugins/eels_resolutions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/eels_resolutions.json -------------------------------------------------------------------------------- /src/pytest_plugins/eels_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/eels_resolver.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/eth_config/__init__.py: -------------------------------------------------------------------------------- 1 | """Execute module to test the `eth_config` RPC endpoint.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/execute/eth_config/eth_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/eth_config/eth_config.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/eth_config/execute_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/eth_config/execute_types.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/eth_config/networks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/eth_config/networks.yml -------------------------------------------------------------------------------- /src/pytest_plugins/execute/eth_config/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit tests for the `eth_config` pytest plugin package.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/execute/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/execute.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/execute_recover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/execute_recover.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/pre_alloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/pre_alloc.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/recover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/recover.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/rpc/__init__.py: -------------------------------------------------------------------------------- 1 | """RPC plugins to execute tests in different environments.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/execute/rpc/chain_builder_eth_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/rpc/chain_builder_eth_rpc.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/rpc/hive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/rpc/hive.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/rpc/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/rpc/remote.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/rpc/remote_seed_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/rpc/remote_seed_sender.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/sender.py -------------------------------------------------------------------------------- /src/pytest_plugins/execute/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit tests for the execute pytest plugin.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/execute/tests/test_pre_alloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/execute/tests/test_pre_alloc.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/eip_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/eip_checklist.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/filler.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/fixture_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/fixture_output.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/gen_test_doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/gen_test_doc/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/gen_test_doc/gen_test_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/gen_test_doc/gen_test_doc.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/gen_test_doc/page_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/gen_test_doc/page_props.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/ported_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/ported_tests.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/pre_alloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/pre_alloc.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/static_filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/static_filler.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Filler tests.""" 2 | -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/conftest.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_benchmarking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_benchmarking.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_collect_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_collect_only.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_eip_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_eip_checklist.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_filler.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_filling_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_filling_session.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_format_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_format_selector.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_output_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_output_directory.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_phase_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_phase_manager.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_pre_alloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_pre_alloc.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/tests/test_prealloc_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/tests/test_prealloc_group.py -------------------------------------------------------------------------------- /src/pytest_plugins/filler/witness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/filler/witness.py -------------------------------------------------------------------------------- /src/pytest_plugins/fix_package_test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/fix_package_test_path.py -------------------------------------------------------------------------------- /src/pytest_plugins/forks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/forks/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/forks/forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/forks/forks.py -------------------------------------------------------------------------------- /src/pytest_plugins/forks/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/forks/tests/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/forks/tests/test_covariant_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/forks/tests/test_covariant_markers.py -------------------------------------------------------------------------------- /src/pytest_plugins/forks/tests/test_forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/forks/tests/test_forks.py -------------------------------------------------------------------------------- /src/pytest_plugins/forks/tests/test_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/forks/tests/test_markers.py -------------------------------------------------------------------------------- /src/pytest_plugins/help/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/help/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/help/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/help/help.py -------------------------------------------------------------------------------- /src/pytest_plugins/help/tests/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/help/tests/test_help.py -------------------------------------------------------------------------------- /src/pytest_plugins/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pytest_plugins/pytest_hive/hive_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/pytest_hive/hive_info.py -------------------------------------------------------------------------------- /src/pytest_plugins/pytest_hive/pytest_hive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/pytest_hive/pytest_hive.py -------------------------------------------------------------------------------- /src/pytest_plugins/shared/benchmarking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/shared/benchmarking.py -------------------------------------------------------------------------------- /src/pytest_plugins/shared/execute_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/shared/execute_fill.py -------------------------------------------------------------------------------- /src/pytest_plugins/shared/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/shared/helpers.py -------------------------------------------------------------------------------- /src/pytest_plugins/shared/transaction_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/shared/transaction_fixtures.py -------------------------------------------------------------------------------- /src/pytest_plugins/solc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/solc/__init__.py -------------------------------------------------------------------------------- /src/pytest_plugins/solc/solc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/solc/solc.py -------------------------------------------------------------------------------- /src/pytest_plugins/spec_version_checker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/src/pytest_plugins/spec_version_checker/__init__.py -------------------------------------------------------------------------------- /stubs/joblib/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/joblib/__init__.pyi -------------------------------------------------------------------------------- /stubs/jwt/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/jwt/__init__.pyi -------------------------------------------------------------------------------- /stubs/jwt/encode.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/jwt/encode.pyi -------------------------------------------------------------------------------- /stubs/pytest_metadata/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubs/pytest_metadata/plugin.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/pytest_metadata/plugin.pyi -------------------------------------------------------------------------------- /stubs/trie/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/trie/__init__.pyi -------------------------------------------------------------------------------- /stubs/trie/hexary.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/trie/hexary.pyi -------------------------------------------------------------------------------- /stubs/xdist/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/xdist/__init__.pyi -------------------------------------------------------------------------------- /stubs/xdist/methods.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/stubs/xdist/methods.pyi -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/amsterdam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/amsterdam/__init__.py -------------------------------------------------------------------------------- /tests/amsterdam/eip7928_block_level_access_lists/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/amsterdam/eip7928_block_level_access_lists/spec.py -------------------------------------------------------------------------------- /tests/benchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/__init__.py -------------------------------------------------------------------------------- /tests/benchmark/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/conftest.py -------------------------------------------------------------------------------- /tests/benchmark/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/helpers.py -------------------------------------------------------------------------------- /tests/benchmark/stateful/__init__.py: -------------------------------------------------------------------------------- 1 | """Benchmark state tests package.""" 2 | -------------------------------------------------------------------------------- /tests/benchmark/stateful/bloatnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/stateful/bloatnet/README.md -------------------------------------------------------------------------------- /tests/benchmark/stateful/bloatnet/__init__.py: -------------------------------------------------------------------------------- 1 | """Bloatnet benchmark tests package.""" 2 | -------------------------------------------------------------------------------- /tests/benchmark/stateful/bloatnet/test_bloatnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/stateful/bloatnet/test_bloatnet.py -------------------------------------------------------------------------------- /tests/benchmark/stateful/bloatnet/test_multi_opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/stateful/bloatnet/test_multi_opcode.py -------------------------------------------------------------------------------- /tests/benchmark/stateful/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/stateful/conftest.py -------------------------------------------------------------------------------- /tests/benchmark/test_worst_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/test_worst_blocks.py -------------------------------------------------------------------------------- /tests/benchmark/test_worst_bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/test_worst_bytecode.py -------------------------------------------------------------------------------- /tests/benchmark/test_worst_compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/test_worst_compute.py -------------------------------------------------------------------------------- /tests/benchmark/test_worst_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/test_worst_memory.py -------------------------------------------------------------------------------- /tests/benchmark/test_worst_opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/test_worst_opcode.py -------------------------------------------------------------------------------- /tests/benchmark/test_worst_stateful_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/benchmark/test_worst_stateful_opcodes.py -------------------------------------------------------------------------------- /tests/berlin/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for EVM functionality introduced in Berlin.""" 2 | -------------------------------------------------------------------------------- /tests/berlin/eip2929_gas_cost_increases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/berlin/eip2929_gas_cost_increases/__init__.py -------------------------------------------------------------------------------- /tests/berlin/eip2929_gas_cost_increases/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/berlin/eip2929_gas_cost_increases/test_call.py -------------------------------------------------------------------------------- /tests/berlin/eip2930_access_list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/berlin/eip2930_access_list/__init__.py -------------------------------------------------------------------------------- /tests/berlin/eip2930_access_list/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/berlin/eip2930_access_list/spec.py -------------------------------------------------------------------------------- /tests/berlin/eip2930_access_list/test_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/berlin/eip2930_access_list/test_acl.py -------------------------------------------------------------------------------- /tests/byzantium/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for EVM functionality introduced in Byzantium.""" 2 | -------------------------------------------------------------------------------- /tests/byzantium/eip198_modexp_precompile/__init__.py: -------------------------------------------------------------------------------- 1 | """Test for precompiles introduced in Byzantium.""" 2 | -------------------------------------------------------------------------------- /tests/byzantium/eip198_modexp_precompile/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/byzantium/eip198_modexp_precompile/helpers.py -------------------------------------------------------------------------------- /tests/cancun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/__init__.py -------------------------------------------------------------------------------- /tests/cancun/eip1153_tstore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip1153_tstore/__init__.py -------------------------------------------------------------------------------- /tests/cancun/eip1153_tstore/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip1153_tstore/spec.py -------------------------------------------------------------------------------- /tests/cancun/eip1153_tstore/test_basic_tload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip1153_tstore/test_basic_tload.py -------------------------------------------------------------------------------- /tests/cancun/eip1153_tstore/test_tload_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip1153_tstore/test_tload_calls.py -------------------------------------------------------------------------------- /tests/cancun/eip1153_tstore/test_tload_reentrancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip1153_tstore/test_tload_reentrancy.py -------------------------------------------------------------------------------- /tests/cancun/eip1153_tstore/test_tstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip1153_tstore/test_tstorage.py -------------------------------------------------------------------------------- /tests/cancun/eip1153_tstore/test_tstore_reentrancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip1153_tstore/test_tstore_reentrancy.py -------------------------------------------------------------------------------- /tests/cancun/eip4788_beacon_root/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-4788 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/cancun/eip4788_beacon_root/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4788_beacon_root/conftest.py -------------------------------------------------------------------------------- /tests/cancun/eip4788_beacon_root/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4788_beacon_root/spec.py -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-4844 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4844_blobs/common.py -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4844_blobs/conftest.py -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/point_evaluation_vectors/requirements.txt: -------------------------------------------------------------------------------- 1 | # additional requirements for concat_kzg_vectors_to_json.py 2 | PyYAML -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4844_blobs/spec.py -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/test_blob_txs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4844_blobs/test_blob_txs.py -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/test_blob_txs_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4844_blobs/test_blob_txs_full.py -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/test_blobhash_opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4844_blobs/test_blobhash_opcode.py -------------------------------------------------------------------------------- /tests/cancun/eip4844_blobs/test_excess_blob_gas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip4844_blobs/test_excess_blob_gas.py -------------------------------------------------------------------------------- /tests/cancun/eip5656_mcopy/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-5656 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/cancun/eip5656_mcopy/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip5656_mcopy/common.py -------------------------------------------------------------------------------- /tests/cancun/eip5656_mcopy/test_mcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip5656_mcopy/test_mcopy.py -------------------------------------------------------------------------------- /tests/cancun/eip5656_mcopy/test_mcopy_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip5656_mcopy/test_mcopy_contexts.py -------------------------------------------------------------------------------- /tests/cancun/eip6780_selfdestruct/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for EIP-6780: SELFDESTRUCT only in same transaction.""" 2 | -------------------------------------------------------------------------------- /tests/cancun/eip6780_selfdestruct/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip6780_selfdestruct/conftest.py -------------------------------------------------------------------------------- /tests/cancun/eip6780_selfdestruct/test_selfdestruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/cancun/eip6780_selfdestruct/test_selfdestruct.py -------------------------------------------------------------------------------- /tests/cancun/eip7516_blobgasfee/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for EIP-7516: BLOBBASEFEE opcode.""" 2 | -------------------------------------------------------------------------------- /tests/constantinople/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for EVM functionality introduced in Constantinople.""" 2 | -------------------------------------------------------------------------------- /tests/constantinople/eip1014_create2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/constantinople/eip1014_create2/__init__.py -------------------------------------------------------------------------------- /tests/constantinople/eip1014_create2/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/constantinople/eip1014_create2/spec.py -------------------------------------------------------------------------------- /tests/constantinople/eip1014_create2/test_recreate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/constantinople/eip1014_create2/test_recreate.py -------------------------------------------------------------------------------- /tests/constantinople/eip145_bitwise_shift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/constantinople/eip145_bitwise_shift/__init__.py -------------------------------------------------------------------------------- /tests/constantinople/eip145_bitwise_shift/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/constantinople/eip145_bitwise_shift/spec.py -------------------------------------------------------------------------------- /tests/frontier/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for EVM functionality introduced in Frontier.""" 2 | -------------------------------------------------------------------------------- /tests/frontier/create/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/create/__init__.py -------------------------------------------------------------------------------- /tests/frontier/create/test_create_one_byte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/create/test_create_one_byte.py -------------------------------------------------------------------------------- /tests/frontier/create/test_create_suicide_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/create/test_create_suicide_store.py -------------------------------------------------------------------------------- /tests/frontier/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/examples/__init__.py -------------------------------------------------------------------------------- /tests/frontier/identity_precompile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/identity_precompile/__init__.py -------------------------------------------------------------------------------- /tests/frontier/identity_precompile/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/identity_precompile/common.py -------------------------------------------------------------------------------- /tests/frontier/identity_precompile/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/identity_precompile/conftest.py -------------------------------------------------------------------------------- /tests/frontier/identity_precompile/test_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/identity_precompile/test_identity.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/__init__.py: -------------------------------------------------------------------------------- 1 | """Test for opcodes introduced in Frontier.""" 2 | -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_all_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_all_opcodes.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_blockhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_blockhash.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_call.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_calldatacopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_calldatacopy.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_calldataload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_calldataload.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_calldatasize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_calldatasize.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_dup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_dup.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_push.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_selfdestruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_selfdestruct.py -------------------------------------------------------------------------------- /tests/frontier/opcodes/test_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/opcodes/test_swap.py -------------------------------------------------------------------------------- /tests/frontier/precompiles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/precompiles/__init__.py -------------------------------------------------------------------------------- /tests/frontier/precompiles/test_precompile_absence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/precompiles/test_precompile_absence.py -------------------------------------------------------------------------------- /tests/frontier/precompiles/test_precompiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/precompiles/test_precompiles.py -------------------------------------------------------------------------------- /tests/frontier/scenarios/__init__.py: -------------------------------------------------------------------------------- 1 | """Scenarios common import.""" 2 | -------------------------------------------------------------------------------- /tests/frontier/scenarios/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/scenarios/common.py -------------------------------------------------------------------------------- /tests/frontier/scenarios/programs/__init__.py: -------------------------------------------------------------------------------- 1 | """Scenarios common import.""" 2 | -------------------------------------------------------------------------------- /tests/frontier/scenarios/programs/context_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/scenarios/programs/context_calls.py -------------------------------------------------------------------------------- /tests/frontier/scenarios/programs/invalid_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/scenarios/programs/invalid_opcodes.py -------------------------------------------------------------------------------- /tests/frontier/scenarios/programs/static_violation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/scenarios/programs/static_violation.py -------------------------------------------------------------------------------- /tests/frontier/scenarios/scenarios/__init__.py: -------------------------------------------------------------------------------- 1 | """Scenarios common import.""" 2 | -------------------------------------------------------------------------------- /tests/frontier/scenarios/test_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/frontier/scenarios/test_scenarios.py -------------------------------------------------------------------------------- /tests/homestead/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/homestead/__init__.py -------------------------------------------------------------------------------- /tests/homestead/coverage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/homestead/coverage/__init__.py -------------------------------------------------------------------------------- /tests/homestead/coverage/test_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/homestead/coverage/test_coverage.py -------------------------------------------------------------------------------- /tests/homestead/identity_precompile/__init__.py: -------------------------------------------------------------------------------- 1 | """abstract: EIP-2: Homestead Precompile Identity Test Cases.""" 2 | -------------------------------------------------------------------------------- /tests/homestead/identity_precompile/test_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/homestead/identity_precompile/test_identity.py -------------------------------------------------------------------------------- /tests/homestead/yul/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests using Yul source for contracts.""" 2 | -------------------------------------------------------------------------------- /tests/istanbul/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for EVM functionality introduced in Istanbul.""" 2 | -------------------------------------------------------------------------------- /tests/istanbul/eip1344_chainid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/istanbul/eip1344_chainid/__init__.py -------------------------------------------------------------------------------- /tests/istanbul/eip1344_chainid/test_chainid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/istanbul/eip1344_chainid/test_chainid.py -------------------------------------------------------------------------------- /tests/istanbul/eip152_blake2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/istanbul/eip152_blake2/__init__.py -------------------------------------------------------------------------------- /tests/istanbul/eip152_blake2/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/istanbul/eip152_blake2/common.py -------------------------------------------------------------------------------- /tests/istanbul/eip152_blake2/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/istanbul/eip152_blake2/conftest.py -------------------------------------------------------------------------------- /tests/istanbul/eip152_blake2/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/istanbul/eip152_blake2/spec.py -------------------------------------------------------------------------------- /tests/istanbul/eip152_blake2/test_blake2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/istanbul/eip152_blake2/test_blake2.py -------------------------------------------------------------------------------- /tests/osaka/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/__init__.py -------------------------------------------------------------------------------- /tests/osaka/eip7594_peerdas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7594_peerdas/__init__.py -------------------------------------------------------------------------------- /tests/osaka/eip7594_peerdas/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7594_peerdas/spec.py -------------------------------------------------------------------------------- /tests/osaka/eip7594_peerdas/test_get_blobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7594_peerdas/test_get_blobs.py -------------------------------------------------------------------------------- /tests/osaka/eip7594_peerdas/test_max_blob_per_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7594_peerdas/test_max_blob_per_tx.py -------------------------------------------------------------------------------- /tests/osaka/eip7823_modexp_upper_bounds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7823_modexp_upper_bounds/__init__.py -------------------------------------------------------------------------------- /tests/osaka/eip7823_modexp_upper_bounds/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7823_modexp_upper_bounds/conftest.py -------------------------------------------------------------------------------- /tests/osaka/eip7823_modexp_upper_bounds/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7823_modexp_upper_bounds/spec.py -------------------------------------------------------------------------------- /tests/osaka/eip7825_transaction_gas_limit_cap/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7825_transaction_gas_limit_cap/spec.py -------------------------------------------------------------------------------- /tests/osaka/eip7883_modexp_gas_increase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7883_modexp_gas_increase/__init__.py -------------------------------------------------------------------------------- /tests/osaka/eip7883_modexp_gas_increase/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7883_modexp_gas_increase/conftest.py -------------------------------------------------------------------------------- /tests/osaka/eip7883_modexp_gas_increase/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7883_modexp_gas_increase/helpers.py -------------------------------------------------------------------------------- /tests/osaka/eip7883_modexp_gas_increase/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7883_modexp_gas_increase/spec.py -------------------------------------------------------------------------------- /tests/osaka/eip7918_blob_reserve_price/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-7918 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/osaka/eip7918_blob_reserve_price/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7918_blob_reserve_price/conftest.py -------------------------------------------------------------------------------- /tests/osaka/eip7918_blob_reserve_price/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7918_blob_reserve_price/spec.py -------------------------------------------------------------------------------- /tests/osaka/eip7934_block_rlp_limit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7934_block_rlp_limit/__init__.py -------------------------------------------------------------------------------- /tests/osaka/eip7934_block_rlp_limit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7934_block_rlp_limit/conftest.py -------------------------------------------------------------------------------- /tests/osaka/eip7934_block_rlp_limit/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7934_block_rlp_limit/spec.py -------------------------------------------------------------------------------- /tests/osaka/eip7939_count_leading_zeros/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7939_count_leading_zeros/__init__.py -------------------------------------------------------------------------------- /tests/osaka/eip7939_count_leading_zeros/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7939_count_leading_zeros/spec.py -------------------------------------------------------------------------------- /tests/osaka/eip7951_p256verify_precompiles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7951_p256verify_precompiles/__init__.py -------------------------------------------------------------------------------- /tests/osaka/eip7951_p256verify_precompiles/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7951_p256verify_precompiles/conftest.py -------------------------------------------------------------------------------- /tests/osaka/eip7951_p256verify_precompiles/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7951_p256verify_precompiles/helpers.py -------------------------------------------------------------------------------- /tests/osaka/eip7951_p256verify_precompiles/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/osaka/eip7951_p256verify_precompiles/spec.py -------------------------------------------------------------------------------- /tests/paris/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for EVM functionality introduced in Paris (Merge).""" 2 | -------------------------------------------------------------------------------- /tests/paris/eip7610_create_collision/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client Create Collision Tests.""" 2 | -------------------------------------------------------------------------------- /tests/paris/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/paris/security/__init__.py -------------------------------------------------------------------------------- /tests/paris/security/test_selfdestruct_balance_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/paris/security/test_selfdestruct_balance_bug.py -------------------------------------------------------------------------------- /tests/prague/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/__init__.py -------------------------------------------------------------------------------- /tests/prague/eip2537_bls_12_381_precompiles/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip2537_bls_12_381_precompiles/helpers.py -------------------------------------------------------------------------------- /tests/prague/eip2537_bls_12_381_precompiles/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip2537_bls_12_381_precompiles/spec.py -------------------------------------------------------------------------------- /tests/prague/eip2935_historical_block_hashes_from_state/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-2935 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/prague/eip6110_deposits/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-6110 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/prague/eip6110_deposits/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip6110_deposits/conftest.py -------------------------------------------------------------------------------- /tests/prague/eip6110_deposits/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip6110_deposits/helpers.py -------------------------------------------------------------------------------- /tests/prague/eip6110_deposits/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip6110_deposits/spec.py -------------------------------------------------------------------------------- /tests/prague/eip6110_deposits/test_deposits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip6110_deposits/test_deposits.py -------------------------------------------------------------------------------- /tests/prague/eip6110_deposits/test_eip_mainnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip6110_deposits/test_eip_mainnet.py -------------------------------------------------------------------------------- /tests/prague/eip7002_el_triggerable_withdrawals/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-7002 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/prague/eip7251_consolidations/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-7251 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/prague/eip7251_consolidations/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7251_consolidations/conftest.py -------------------------------------------------------------------------------- /tests/prague/eip7251_consolidations/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7251_consolidations/helpers.py -------------------------------------------------------------------------------- /tests/prague/eip7251_consolidations/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7251_consolidations/spec.py -------------------------------------------------------------------------------- /tests/prague/eip7623_increase_calldata_cost/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7623_increase_calldata_cost/helpers.py -------------------------------------------------------------------------------- /tests/prague/eip7623_increase_calldata_cost/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7623_increase_calldata_cost/spec.py -------------------------------------------------------------------------------- /tests/prague/eip7685_general_purpose_el_requests/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-7685 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/__init__.py: -------------------------------------------------------------------------------- 1 | """Cross-client EIP-7702 Tests.""" 2 | -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7702_set_code_tx/helpers.py -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7702_set_code_tx/spec.py -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/test_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7702_set_code_tx/test_calls.py -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/test_eip_mainnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7702_set_code_tx/test_eip_mainnet.py -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/test_gas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7702_set_code_tx/test_gas.py -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/test_invalid_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7702_set_code_tx/test_invalid_tx.py -------------------------------------------------------------------------------- /tests/prague/eip7702_set_code_tx/test_set_code_txs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/prague/eip7702_set_code_tx/test_set_code_txs.py -------------------------------------------------------------------------------- /tests/shanghai/__init__.py: -------------------------------------------------------------------------------- 1 | """Test cases for EVM functionality introduced in Shanghai.""" 2 | -------------------------------------------------------------------------------- /tests/shanghai/eip3651_warm_coinbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3651_warm_coinbase/__init__.py -------------------------------------------------------------------------------- /tests/shanghai/eip3651_warm_coinbase/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3651_warm_coinbase/conftest.py -------------------------------------------------------------------------------- /tests/shanghai/eip3651_warm_coinbase/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3651_warm_coinbase/spec.py -------------------------------------------------------------------------------- /tests/shanghai/eip3855_push0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3855_push0/__init__.py -------------------------------------------------------------------------------- /tests/shanghai/eip3855_push0/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3855_push0/conftest.py -------------------------------------------------------------------------------- /tests/shanghai/eip3855_push0/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3855_push0/spec.py -------------------------------------------------------------------------------- /tests/shanghai/eip3855_push0/test_push0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3855_push0/test_push0.py -------------------------------------------------------------------------------- /tests/shanghai/eip3860_initcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3860_initcode/__init__.py -------------------------------------------------------------------------------- /tests/shanghai/eip3860_initcode/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3860_initcode/conftest.py -------------------------------------------------------------------------------- /tests/shanghai/eip3860_initcode/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3860_initcode/helpers.py -------------------------------------------------------------------------------- /tests/shanghai/eip3860_initcode/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3860_initcode/spec.py -------------------------------------------------------------------------------- /tests/shanghai/eip3860_initcode/test_initcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3860_initcode/test_initcode.py -------------------------------------------------------------------------------- /tests/shanghai/eip3860_initcode/test_with_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip3860_initcode/test_with_eof.py -------------------------------------------------------------------------------- /tests/shanghai/eip4895_withdrawals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip4895_withdrawals/__init__.py -------------------------------------------------------------------------------- /tests/shanghai/eip4895_withdrawals/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip4895_withdrawals/conftest.py -------------------------------------------------------------------------------- /tests/shanghai/eip4895_withdrawals/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip4895_withdrawals/spec.py -------------------------------------------------------------------------------- /tests/shanghai/eip4895_withdrawals/test_withdrawals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/shanghai/eip4895_withdrawals/test_withdrawals.py -------------------------------------------------------------------------------- /tests/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/README.md -------------------------------------------------------------------------------- /tests/static/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/Cancun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/Cancun/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/README.md -------------------------------------------------------------------------------- /tests/static/state_tests/Shanghai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/Shanghai/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/VMTests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/VMTests/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/VMTests/vmLogTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/VMTests/vmLogTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/VMTests/vmTests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/VMTests/vmTests/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stAttackTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stAttackTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stBadOpcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stBadOpcode/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stBugs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stBugs/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stCallCodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stCallCodes/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stChainId/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stChainId/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stChainId/chainIdFiller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stChainId/chainIdFiller.json -------------------------------------------------------------------------------- /tests/static/state_tests/stCodeCopyTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stCodeCopyTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stCodeSizeLimit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stCodeSizeLimit/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stCreate2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stCreate2/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stCreateTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stCreateTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stEIP150Specific/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stEIP150Specific/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stEIP1559/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stEIP1559/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stEIP1559/lowFeeCapFiller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stEIP1559/lowFeeCapFiller.yml -------------------------------------------------------------------------------- /tests/static/state_tests/stEIP158Specific/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stEIP158Specific/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stEIP2930/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stEIP2930/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stEIP3607/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stEIP3607/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stExample/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stExample/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stExample/add11Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stExample/add11Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stExample/add11_ymlFiller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stExample/add11_ymlFiller.yml -------------------------------------------------------------------------------- /tests/static/state_tests/stExample/eip1559Filler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stExample/eip1559Filler.yml -------------------------------------------------------------------------------- /tests/static/state_tests/stExample/mergeTestFiller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stExample/mergeTestFiller.yml -------------------------------------------------------------------------------- /tests/static/state_tests/stExtCodeHash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stExtCodeHash/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stInitCodeTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stInitCodeTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stLogTests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stLogTests/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stLogTests/log3_PCFiller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stLogTests/log3_PCFiller.json -------------------------------------------------------------------------------- /tests/static/state_tests/stLogTests/log4_PCFiller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stLogTests/log4_PCFiller.json -------------------------------------------------------------------------------- /tests/static/state_tests/stMemoryTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stMemoryTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stMemoryTest/bufferFiller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stMemoryTest/bufferFiller.yml -------------------------------------------------------------------------------- /tests/static/state_tests/stMemoryTest/oogFiller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stMemoryTest/oogFiller.yml -------------------------------------------------------------------------------- /tests/static/state_tests/stRandom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stRandom/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stRandom2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stRandom2/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stRecursiveCreate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stRecursiveCreate/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stRefundTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stRefundTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stReturnDataTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stReturnDataTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stRevertTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stRevertTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stSLoadTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stSLoadTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stSStoreTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stSStoreTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stSelfBalance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stSelfBalance/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/.stub: -------------------------------------------------------------------------------- 1 | This file is here to keep the directory 2 | -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/sar00Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/sar00Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/sar01Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/sar01Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/sar10Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/sar10Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/sar11Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/sar11Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl01-0100Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl01-0100Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl01-0101Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl01-0101Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl01-ffFiller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl01-ffFiller.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl01Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl01Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl10Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl10Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl11Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl11Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl_-1_0Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl_-1_0Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl_-1_1Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl_-1_1Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl_-1_255Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl_-1_255Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shl_-1_256Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shl_-1_256Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shr01Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shr01Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shr10Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shr10Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shr11Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shr11Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shr_-1_0Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shr_-1_0Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shr_-1_1Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shr_-1_1Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shr_-1_255Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shr_-1_255Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stShift/shr_-1_256Filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stShift/shr_-1_256Filler.json -------------------------------------------------------------------------------- /tests/static/state_tests/stSolidityTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stSolidityTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stSpecialTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stSpecialTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stStackTests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stStackTests/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stStaticCall/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stStaticCall/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stTimeConsuming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stTimeConsuming/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stTransactionTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stTransactionTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stTransitionTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stTransitionTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stWalletTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stWalletTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stZeroCallsRevert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stZeroCallsRevert/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stZeroCallsTest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stZeroCallsTest/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stZeroKnowledge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stZeroKnowledge/__init__.py -------------------------------------------------------------------------------- /tests/static/state_tests/stZeroKnowledge2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/static/state_tests/stZeroKnowledge2/__init__.py -------------------------------------------------------------------------------- /tests/unscheduled/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/unscheduled/__init__.py -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/unscheduled/eip7692_eof_v1/__init__.py -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/eip3540_eof_v1/spec.py: -------------------------------------------------------------------------------- 1 | """EOF V1 Constants used throughout all tests.""" 2 | -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/eip6206_jumpf/spec.py: -------------------------------------------------------------------------------- 1 | """EOF V1 Constants used throughout all tests.""" 2 | -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/eip7480_data_section/spec.py: -------------------------------------------------------------------------------- 1 | """EOF V1 Constants used throughout all tests.""" 2 | -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/eip7620_eof_create/spec.py: -------------------------------------------------------------------------------- 1 | """EOF V1 Constants used throughout all tests.""" 2 | 3 | EOFCREATE_FAILURE = 0 4 | -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/eip7873_tx_create/spec.py: -------------------------------------------------------------------------------- 1 | """EOF V1 Constants used throughout all tests.""" 2 | 3 | TXCREATE_FAILURE = 0 4 | -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/eof_tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/unscheduled/eip7692_eof_v1/eof_tracker.md -------------------------------------------------------------------------------- /tests/unscheduled/eip7692_eof_v1/gas_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tests/unscheduled/eip7692_eof_v1/gas_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/uv.lock -------------------------------------------------------------------------------- /whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum/execution-spec-tests/HEAD/whitelist.txt --------------------------------------------------------------------------------