Skip to content

test_contract_create()

Documentation for tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_contract_create@v5.1.0.

Generate fixtures for these test cases for Osaka with:

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

Test sending type-4 tx as a create transaction.

Source code in tests/prague/eip7702_set_code_tx/test_set_code_txs.py
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
@pytest.mark.exception_test
def test_contract_create(
    state_test: StateTestFiller,
    pre: Alloc,
):
    """Test sending type-4 tx as a create transaction."""
    authorization_tuple = AuthorizationTuple(
        address=Address(0x01),
        nonce=0,
        signer=pre.fund_eoa(),
    )
    tx = Transaction(
        gas_limit=100_000,
        to=None,
        value=0,
        authorization_list=[authorization_tuple],
        error=TransactionException.TYPE_4_TX_CONTRACT_CREATION,
        sender=pre.fund_eoa(),
    )

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

Parametrized Test Cases

This test case is only parametrized by fork and fixture format.

Test ID (Abbreviated)
...fork_Prague-state_test
...fork_Prague-blockchain_test_from_state_test
...fork_Osaka-state_test
...fork_Osaka-blockchain_test_from_state_test