Skip to content

test_set_code_to_self_destructing_account_deployed_in_same_tx()

Documentation for tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_set_code_to_self_destructing_account_deployed_in_same_tx@verkle@v0.0.6.

Generate fixtures for these test cases for Prague with:

Prague only:

fill -v tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_set_code_to_self_destructing_account_deployed_in_same_tx --fork=Prague --evm-bin=/path/to/evm-tool-dev-version

For all forks up to and including Prague:

fill -v tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_set_code_to_self_destructing_account_deployed_in_same_tx --until=Prague

Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and was deployed in the same transaction, and test calling the set-code address and the deployed in both sequence orders.

Source code in tests/prague/eip7702_set_code_tx/test_set_code_txs.py
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
@pytest.mark.parametrize(
    "external_sendall_recipient",
    [False, True],
)
@pytest.mark.parametrize(
    "balance",
    [0, 1],
)
@pytest.mark.parametrize("call_set_code_first", [False, True])
@pytest.mark.parametrize(
    "create_opcode", [Op.CREATE, Op.CREATE2]
)  # EOF code does not support SELFDESTRUCT
def test_set_code_to_self_destructing_account_deployed_in_same_tx(
    state_test: StateTestFiller,
    pre: Alloc,
    create_opcode: Op,
    call_set_code_first: bool,
    external_sendall_recipient: bool,
    balance: int,
):
    """
    Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and
    was deployed in the same transaction, and test calling the set-code address and the deployed
    in both sequence orders.
    """
    auth_signer = pre.fund_eoa(balance)
    if external_sendall_recipient:
        recipient = pre.fund_eoa(0)
    else:
        recipient = auth_signer

    success_slot = 1

    deployed_code = Op.SSTORE(success_slot, 1) + Op.SELFDESTRUCT(recipient)
    initcode = Initcode(deploy_code=deployed_code)

    deployed_contract_address_slot = 1
    signer_call_return_code_slot = 2
    deployed_contract_call_return_code_slot = 3

    salt = 0
    call_opcode = Op.CALL

    contract_creator_code: Bytecode = Op.CALLDATACOPY(0, 0, Op.CALLDATASIZE) + Op.SSTORE(
        deployed_contract_address_slot,
        create_opcode(offset=0, salt=salt, size=Op.CALLDATASIZE),
    )
    if call_set_code_first:
        contract_creator_code += Op.SSTORE(
            signer_call_return_code_slot, call_opcode(address=auth_signer)
        ) + Op.SSTORE(
            deployed_contract_call_return_code_slot,
            call_opcode(address=Op.SLOAD(deployed_contract_address_slot)),
        )
    else:
        contract_creator_code += Op.SSTORE(
            deployed_contract_call_return_code_slot,
            call_opcode(address=Op.SLOAD(deployed_contract_address_slot)),
        ) + Op.SSTORE(signer_call_return_code_slot, call_opcode(address=auth_signer))

    contract_creator_code += Op.STOP

    contract_creator_address = pre.deploy_contract(contract_creator_code)

    deployed_contract_address = compute_create_address(
        address=contract_creator_address,
        nonce=1,
        salt=salt,
        initcode=initcode,
        opcode=create_opcode,
    )

    tx = Transaction(
        gas_limit=10_000_000,
        to=contract_creator_address,
        value=0,
        data=initcode,
        authorization_list=[
            AuthorizationTuple(
                address=deployed_contract_address,
                nonce=0,
                signer=auth_signer,
            ),
        ],
        sender=pre.fund_eoa(),
    )

    post = {
        deployed_contract_address: Account.NONEXISTENT,
        auth_signer: Account(
            nonce=1,
            code=Spec.delegation_designation(deployed_contract_address),
            storage={success_slot: 1},
            balance=balance if not external_sendall_recipient else 0,
        ),
        contract_creator_address: Account(
            storage={
                deployed_contract_address_slot: deployed_contract_address,
                signer_call_return_code_slot: 1,
                deployed_contract_call_return_code_slot: 1,
            }
        ),
    }

    if external_sendall_recipient and balance > 0:
        post[recipient] = Account(balance=balance)

    state_test(
        env=Environment(),
        pre=pre,
        tx=tx,
        post=post,
    )

Parametrized Test Cases

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

Skipped Parameters

For more concise readability, the table below does not list the following parameter values: fork, blockchain_test, state_test, state_test_only, eof_test, eof_state_test.

Test ID create_opcode call_set_code_first balance external_sendall_recipient
create_opcode_CREATE-call_set_code_first_False-balance_0-external_sendall_recipient_False CREATE False 0 False
create_opcode_CREATE-call_set_code_first_False-balance_0-external_sendall_recipient_True CREATE False 0 True
create_opcode_CREATE-call_set_code_first_False-balance_1-external_sendall_recipient_False CREATE False 1 False
create_opcode_CREATE-call_set_code_first_False-balance_1-external_sendall_recipient_True CREATE False 1 True
create_opcode_CREATE-call_set_code_first_True-balance_0-external_sendall_recipient_False CREATE True 0 False
create_opcode_CREATE-call_set_code_first_True-balance_0-external_sendall_recipient_True CREATE True 0 True
create_opcode_CREATE-call_set_code_first_True-balance_1-external_sendall_recipient_False CREATE True 1 False
create_opcode_CREATE-call_set_code_first_True-balance_1-external_sendall_recipient_True CREATE True 1 True
create_opcode_CREATE2-call_set_code_first_False-balance_0-external_sendall_recipient_False CREATE2 False 0 False
create_opcode_CREATE2-call_set_code_first_False-balance_0-external_sendall_recipient_True CREATE2 False 0 True
create_opcode_CREATE2-call_set_code_first_False-balance_1-external_sendall_recipient_False CREATE2 False 1 False
create_opcode_CREATE2-call_set_code_first_False-balance_1-external_sendall_recipient_True CREATE2 False 1 True
create_opcode_CREATE2-call_set_code_first_True-balance_0-external_sendall_recipient_False CREATE2 True 0 False
create_opcode_CREATE2-call_set_code_first_True-balance_0-external_sendall_recipient_True CREATE2 True 0 True
create_opcode_CREATE2-call_set_code_first_True-balance_1-external_sendall_recipient_False CREATE2 True 1 False
create_opcode_CREATE2-call_set_code_first_True-balance_1-external_sendall_recipient_True CREATE2 True 1 True
create_opcode_CREATE-call_set_code_first_False-balance_0-external_sendall_recipient_False CREATE False 0 False
create_opcode_CREATE-call_set_code_first_False-balance_0-external_sendall_recipient_True CREATE False 0 True
create_opcode_CREATE-call_set_code_first_False-balance_1-external_sendall_recipient_False CREATE False 1 False
create_opcode_CREATE-call_set_code_first_False-balance_1-external_sendall_recipient_True CREATE False 1 True
create_opcode_CREATE-call_set_code_first_True-balance_0-external_sendall_recipient_False CREATE True 0 False
create_opcode_CREATE-call_set_code_first_True-balance_0-external_sendall_recipient_True CREATE True 0 True
create_opcode_CREATE-call_set_code_first_True-balance_1-external_sendall_recipient_False CREATE True 1 False
create_opcode_CREATE-call_set_code_first_True-balance_1-external_sendall_recipient_True CREATE True 1 True
create_opcode_CREATE2-call_set_code_first_False-balance_0-external_sendall_recipient_False CREATE2 False 0 False
create_opcode_CREATE2-call_set_code_first_False-balance_0-external_sendall_recipient_True CREATE2 False 0 True
create_opcode_CREATE2-call_set_code_first_False-balance_1-external_sendall_recipient_False CREATE2 False 1 False
create_opcode_CREATE2-call_set_code_first_False-balance_1-external_sendall_recipient_True CREATE2 False 1 True
create_opcode_CREATE2-call_set_code_first_True-balance_0-external_sendall_recipient_False CREATE2 True 0 False
create_opcode_CREATE2-call_set_code_first_True-balance_0-external_sendall_recipient_True CREATE2 True 0 True
create_opcode_CREATE2-call_set_code_first_True-balance_1-external_sendall_recipient_False CREATE2 True 1 False
create_opcode_CREATE2-call_set_code_first_True-balance_1-external_sendall_recipient_True CREATE2 True 1 True