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@bb2992c4.

Generate fixtures for these test cases for Prague with:

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

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
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
@pytest.mark.with_all_call_opcodes
@pytest.mark.with_all_precompiles
@pytest.mark.eip_checklist("precompile/test/call_contexts/set_code", eips=[7951])
def test_set_code_to_precompile(
    state_test: StateTestFiller,
    pre: Alloc,
    precompile: int,
    call_opcode: Op,
):
    """
    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)

    value = 1 if call_opcode in {Op.CALL, Op.CALLCODE, Op.EXTCALL} else 0
    caller_code_storage = Storage()
    caller_code = (
        Op.SSTORE(
            caller_code_storage.store_next(call_return_code(opcode=call_opcode, success=True)),
            call_opcode(address=auth_signer, value=value, gas=0),
        )
        + 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