Skip to content

test_set_code_tx_below_total_intrinsic()

Documentation for tests/amsterdam/eip8037_state_creation_gas_cost_increase/test_state_gas_set_code.py::test_set_code_tx_below_total_intrinsic@87aba1a3.

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_set_code_tx_below_total_intrinsic --fork Amsterdam

Reject a set_code tx one gas below the (now regular-only) intrinsic.

Under EIP-2780 the authorization intrinsic is entirely regular (the state-dependent costs moved to the top frame), so the intrinsic gas the transaction must cover is exactly fork.transaction_intrinsic_cost_calculator()(auth_list). Sweeping num_auths and pinning gas_limit at intrinsic - 1 catches an implementation that omits the repriced per-authorization base cost from the pre-validate check.

Source code in tests/amsterdam/eip8037_state_creation_gas_cost_increase/test_state_gas_set_code.py
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
@pytest.mark.exception_test
@pytest.mark.parametrize(
    "num_auths",
    [
        pytest.param(1, id="single_auth"),
        pytest.param(2, id="two_auths"),
        pytest.param(3, id="three_auths"),
    ],
)
@pytest.mark.valid_from("EIP8037")
def test_set_code_tx_below_total_intrinsic(
    state_test: StateTestFiller,
    pre: Alloc,
    fork: Fork,
    num_auths: int,
) -> None:
    """
    Reject a set_code tx one gas below the (now regular-only) intrinsic.

    Under EIP-2780 the authorization intrinsic is entirely regular (the
    state-dependent costs moved to the top frame), so the intrinsic gas
    the transaction must cover is exactly
    ``fork.transaction_intrinsic_cost_calculator()(auth_list)``. Sweeping
    ``num_auths`` and pinning ``gas_limit`` at ``intrinsic - 1`` catches
    an implementation that omits the repriced per-authorization base cost
    from the pre-validate check.
    """
    contract = pre.deploy_contract(code=Op.STOP)
    authorization_list = [
        AuthorizationTuple(
            address=contract,
            nonce=0,
            signer=pre.fund_eoa(),
            creates_account=False,
            writes_delegation=True,
        )
        for _ in range(num_auths)
    ]

    intrinsic = fork.transaction_intrinsic_cost_calculator()(
        authorization_list_or_count=authorization_list,
    )

    tx = Transaction(
        to=contract,
        gas_limit=intrinsic - 1,
        authorization_list=authorization_list,
        sender=pre.fund_eoa(),
        error=TransactionException.INTRINSIC_GAS_TOO_LOW,
    )

    state_test(pre=pre, post={}, tx=tx)

Parametrized Test Cases

This test generates 3 parametrized test cases across 1 fork.