Skip to content

test_invalid_auth_no_top_frame_charge()

Documentation for tests/amsterdam/eip8037_state_creation_gas_cost_increase/test_state_gas_set_code.py::test_invalid_auth_no_top_frame_charge@26332146.

Generate fixtures for these test cases for Amsterdam with:

fill -v tests/amsterdam/eip8037_state_creation_gas_cost_increase/test_state_gas_set_code.py::test_invalid_auth_no_top_frame_charge --fork Amsterdam

Verify a rejected authorization incurs no top-frame charge.

A rejected authorization is skipped during set_delegation, so it writes no delegation indicator and creates no account: it incurs neither NEW_ACCOUNT / ACCOUNT_WRITE nor AUTH_BASE at the top frame (and, unlike the superseded EIP-8037 model, nothing is refilled because nothing was charged). Only the intrinsic EXECUTION_PER_AUTH_BASE_COST is paid and the authority is never created. Swept over the reasons an authorization is rejected.

Source code in tests/amsterdam/eip8037_state_creation_gas_cost_increase/test_state_gas_set_code.py
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
@pytest.mark.parametrize(
    "invalidity",
    [
        pytest.param("nonce_mismatch", id="nonce_mismatch"),
        pytest.param("nonce_at_u64_max", id="nonce_at_u64_max"),
        pytest.param("chain_id_mismatch", id="chain_id_mismatch"),
    ],
)
@pytest.mark.valid_from("EIP8037")
def test_invalid_auth_no_top_frame_charge(
    state_test: StateTestFiller,
    pre: Alloc,
    fork: Fork,
    invalidity: str,
) -> None:
    """
    Verify a rejected authorization incurs no top-frame charge.

    A rejected authorization is skipped during ``set_delegation``, so it
    writes no delegation indicator and creates no account: it incurs
    neither ``NEW_ACCOUNT`` / ``ACCOUNT_WRITE`` nor ``AUTH_BASE`` at the
    top frame (and, unlike the superseded EIP-8037 model, nothing is
    refilled because nothing was charged). Only the intrinsic
    ``EXECUTION_PER_AUTH_BASE_COST`` is paid and the authority is never
    created. Swept over the reasons an authorization is rejected.
    """
    target = pre.deploy_contract(code=Op.STOP)
    signer = pre.fund_eoa(amount=0)

    if invalidity == "nonce_mismatch":
        auth = AuthorizationTuple(
            address=target,
            nonce=99,
            signer=signer,
            creates_account=False,
            writes_delegation=False,
            first_write=False,
        )
    elif invalidity == "nonce_at_u64_max":
        auth = AuthorizationTuple(
            address=target,
            nonce=2**64 - 1,
            signer=signer,
            creates_account=False,
            writes_delegation=False,
            first_write=False,
        )
    elif invalidity == "chain_id_mismatch":
        auth = AuthorizationTuple(
            address=target,
            nonce=0,
            chain_id=9999,
            signer=signer,
            creates_account=False,
            writes_delegation=False,
            first_write=False,
        )
    else:
        raise ValueError(f"unknown invalidity: {invalidity!r}")

    intrinsic_execution, top_frame_execution, top_frame_state = _auth_gas(
        fork, [auth]
    )
    assert top_frame_execution == 0
    assert top_frame_state == 0
    cumulative_gas_used, header_gas_used = _receipt_and_header(
        intrinsic_execution, top_frame_execution, top_frame_state
    )

    tx = Transaction(
        to=target,
        authorization_list=[auth],
        sender=pre.fund_eoa(),
        expected_receipt=TransactionReceipt(
            cumulative_gas_used=cumulative_gas_used,
        ),
    )

    state_test(
        pre=pre,
        post={signer: Account.NONEXISTENT},
        tx=tx,
        blockchain_test_header_verify=Header(gas_used=header_gas_used),
    )

Parametrized Test Cases

This test generates 3 parametrized test cases across 1 fork.