Skip to content

test_set_code_to_precompile()

Documentation for tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_set_code_to_precompile@88e9fb8f.

Generate fixtures for these test cases for Osaka with:

fill -v tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_set_code_to_precompile --fork Osaka

Test setting the code of an account to a pre-compile address and executing all call opcodes.

Source code in tests/prague/eip7702_set_code_tx/test_set_code_txs.py
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
@pytest.mark.with_all_call_opcodes
@pytest.mark.with_all_precompiles
@EIPChecklist.Precompile.Test.CallContexts.SetCode(eip=[7951, 7883, 7823])
def test_set_code_to_precompile(
    state_test: StateTestFiller,
    pre: Alloc,
    precompile: int,
    call_opcode: Op,
) -> None:
    """
    Test setting the code of an account to a pre-compile address and executing
    all call opcodes.
    """
    auth_signer = pre.fund_eoa(auth_account_start_balance)

    if "value" in call_opcode.kwargs:
        call_bytecode = call_opcode(address=auth_signer, gas=0, value=1)
        value = 1
    else:
        call_bytecode = call_opcode(address=auth_signer, gas=0)
        value = 0
    caller_code_storage = Storage()
    caller_code = (
        Op.SSTORE(
            caller_code_storage.store_next(call_return_code(opcode=call_opcode, success=True)),
            call_bytecode,
        )
        + Op.SSTORE(caller_code_storage.store_next(0), Op.RETURNDATASIZE)
        + Op.STOP
    )
    caller_code_address = pre.deploy_contract(caller_code, balance=value)

    tx = Transaction(
        sender=pre.fund_eoa(),
        gas_limit=500_000,
        to=caller_code_address,
        authorization_list=[
            AuthorizationTuple(
                address=Address(precompile),
                nonce=0,
                signer=auth_signer,
            ),
        ],
    )

    state_test(
        env=Environment(),
        pre=pre,
        tx=tx,
        post={
            auth_signer: Account(
                nonce=1,
                code=Spec.delegation_designation(Address(precompile)),
            ),
            caller_code_address: Account(
                storage=caller_code_storage,
            ),
        },
    )

Parametrized Test Cases

The interactive table below is also available as a standalone page.

Test ID (Abbreviated) precompile call_opcode evm_code_type
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a STATICCALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a DELEGATECALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a CALL LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a CALLCODE LEGACY
...fork_Prague-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 STATICCALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 DELEGATECALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 CALL LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 CALLCODE LEGACY
...fork_Prague-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000100 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000100 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000100 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000100 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000100 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000100 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000100 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000100-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000100 CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000b CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000b-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000b CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000c CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000c-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000c CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000d CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000d-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000d CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000e CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000e-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000e CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000f CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000f-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000f CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000010 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000010-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000010 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000011 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000011-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000011 CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a STATICCALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a DELEGATECALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a CALL LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 000000000a CALLCODE LEGACY
...fork_Osaka-precompile_0x000000000000000000000000000000000000000a-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 000000000a CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000009 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000009-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000009 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000005 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000005-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000005 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000006 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000006-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000006 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000007 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000007-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000007 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000008 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000008-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000008 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000001 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000001-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000001 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000002 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000002-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000002 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000003 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000003-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000003 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_STATICCALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_STATICCALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 STATICCALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_DELEGATECALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_DELEGATECALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 DELEGATECALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALL-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALL-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 CALL LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALLCODE-evm_code_type_LEGACY-state_test 0x000000000000000000000000000000 0000000004 CALLCODE LEGACY
...fork_Osaka-precompile_0x0000000000000000000000000000000000000004-call_opcode_CALLCODE-evm_code_type_LEGACY-blockchain_test_from_state_test 0x000000000000000000000000000000 0000000004 CALLCODE LEGACY