ethereum.forks.cancun.forkethereum.forks.prague.fork

Ethereum Specification.

.. contents:: Table of Contents :backlinks: none :local:

Introduction

Entry point for the Ethereum specification.

BASE_FEE_MAX_CHANGE_DENOMINATOR

94
BASE_FEE_MAX_CHANGE_DENOMINATOR = Uint(8)

ELASTICITY_MULTIPLIER

95
ELASTICITY_MULTIPLIER = Uint(2)

EMPTY_OMMER_HASH

96
EMPTY_OMMER_HASH = keccak256(rlp.encode([]))

SYSTEM_ADDRESS

97
SYSTEM_ADDRESS = hex_to_address("0xfffffffffffffffffffffffffffffffffffffffe")

BEACON_ROOTS_ADDRESS

98
BEACON_ROOTS_ADDRESS = hex_to_address(
99
    "0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02"
100
)

SYSTEM_TRANSACTION_GAS

101
SYSTEM_TRANSACTION_GAS = Uint(30000000)

MAX_BLOB_GAS_PER_BLOCK

93
MAX_BLOB_GAS_PER_BLOCK: Final[U64] = U64(786432)
102
MAX_BLOB_GAS_PER_BLOCK: Final[U64] = U64(1179648)

VERSIONED_HASH_VERSION_KZG

103
VERSIONED_HASH_VERSION_KZG = b"\x01"

WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS

105
WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS = hex_to_address(
106
    "0x00000961Ef480Eb55e80D19ad83579A64c007002"
107
)

CONSOLIDATION_REQUEST_PREDEPLOY_ADDRESS

108
CONSOLIDATION_REQUEST_PREDEPLOY_ADDRESS = hex_to_address(
109
    "0x0000BBdDc7CE488642fb579F8B00f3a590007251"
110
)

HISTORY_STORAGE_ADDRESS

111
HISTORY_STORAGE_ADDRESS = hex_to_address(
112
    "0x0000F90827F1C53a10cb7A02335B175320002935"
113
)

BlockChain

History and current state of the block chain.

116
@final
117
@dataclass
class BlockChain:

blocks

123
    blocks: List[Block]

state

124
    state: State

chain_id

125
    chain_id: U64

apply_fork

Transforms the state from the previous hard fork (old) into the block chain object for this hard fork and returns it.

When forks need to implement an irregular state transition, this function is used to handle the irregularity. See the :ref:DAO Fork <dao-fork> for an example.

Parameters

old : Previous block chain object.

Returns

new : BlockChain Upgraded block chain object for this hard fork.

def apply_fork(old: BlockChain) -> BlockChain:
129
    <snip>
148
    return old

get_last_256_block_hashes

Obtain the list of hashes of the previous 256 blocks in order of increasing block number.

This function will return less hashes for the first 256 blocks.

The BLOCKHASH opcode needs to access the latest hashes on the chain, therefore this function retrieves them.

Parameters

chain : History and current state.

Returns

recent_block_hashes : List[Hash32] Hashes of the recent 256 blocks in order of increasing block number.

def get_last_256_block_hashes(chain: BlockChain) -> List[Hash32]:
152
    <snip>
172
    recent_blocks = chain.blocks[-255:]
173
    if len(recent_blocks) == 0:
174
        return []
175
176
    recent_block_hashes = []
177
178
    for block in recent_blocks:
179
        prev_block_hash = block.header.parent_hash
180
        recent_block_hashes.append(prev_block_hash)
181
182
    # We are computing the hash only for the most recent block and not for
183
    # the rest of the blocks as they have successors which have the hash of
184
    # the current block as parent hash.
185
    most_recent_block_hash = keccak256(rlp.encode(recent_blocks[-1].header))
186
    recent_block_hashes.append(most_recent_block_hash)
187
188
    return recent_block_hashes

state_transition

Attempts to apply a block to an existing block chain.

All parts of the block's contents need to be verified before being added to the chain. Blocks are verified by ensuring that the contents of the block make logical sense with the contents of the parent block. The information in the block's header must also match the corresponding information in the block.

To implement Ethereum, in theory clients are only required to store the most recent 255 blocks of the chain since as far as execution is concerned, only those blocks are accessed. Practically, however, clients should store more blocks to handle reorgs.

Parameters

chain : History and current state. block : Block to apply to chain.

def state_transition(chain: BlockChain, ​​block: Block) -> None:
192
    <snip>
214
    validate_header(chain, block.header)
215
    if block.ommers != ():
216
        raise InvalidBlock
217
218
    block_state = BlockState(pre_state=chain.state)
219
220
    block_env = vm.BlockEnvironment(
221
        chain_id=chain.chain_id,
222
        state=block_state,
223
        block_gas_limit=block.header.gas_limit,
224
        block_hashes=get_last_256_block_hashes(chain),
225
        coinbase=block.header.coinbase,
226
        number=block.header.number,
227
        base_fee_per_gas=block.header.base_fee_per_gas,
228
        time=block.header.timestamp,
229
        prev_randao=block.header.prev_randao,
230
        excess_blob_gas=block.header.excess_blob_gas,
231
        parent_beacon_block_root=block.header.parent_beacon_block_root,
232
    )
233
234
    block_output = apply_body(
235
        block_env=block_env,
236
        transactions=block.transactions,
237
        withdrawals=block.withdrawals,
238
    )
239
    block_diff = extract_block_diff(block_state)
240
    block_state_root = chain.state.compute_state_root(block_diff)
241
    transactions_root = root(block_output.transactions_trie)
242
    receipt_root = root(block_output.receipts_trie)
243
    block_logs_bloom = logs_bloom(block_output.block_logs)
244
    withdrawals_root = root(block_output.withdrawals_trie)
245
    requests_hash = compute_requests_hash(block_output.requests)
246
247
    if block_output.block_gas_used != block.header.gas_used:
248
        raise InvalidBlock(
249
            f"{block_output.block_gas_used} != {block.header.gas_used}"
250
        )
251
    if transactions_root != block.header.transactions_root:
252
        raise InvalidBlock
253
    if block_state_root != block.header.state_root:
254
        raise InvalidBlock
255
    if receipt_root != block.header.receipt_root:
256
        raise InvalidBlock
257
    if block_logs_bloom != block.header.bloom:
258
        raise InvalidBlock
259
    if withdrawals_root != block.header.withdrawals_root:
260
        raise InvalidBlock
261
    if block_output.blob_gas_used != block.header.blob_gas_used:
262
        raise InvalidBlock
263
    if requests_hash != block.header.requests_hash:
264
        raise InvalidBlock
265
266
    apply_changes_to_state(chain.state, block_diff)
267
    chain.blocks.append(block)
268
    if len(chain.blocks) > 255:
269
        # Real clients have to store more blocks to deal with reorgs, but the
270
        # protocol only requires the last 255
271
        chain.blocks = chain.blocks[-255:]

calculate_base_fee_per_gas

Calculates the base fee per gas for the block.

Parameters

block_gas_limit : Gas limit of the block for which the base fee is being calculated. parent_gas_limit : Gas limit of the parent block. parent_gas_used : Gas used in the parent block. parent_base_fee_per_gas : Base fee per gas of the parent block.

Returns

base_fee_per_gas : Uint Base fee per gas for the block.

def calculate_base_fee_per_gas(block_gas_limit: Uint, ​​parent_gas_limit: Uint, ​​parent_gas_used: Uint, ​​parent_base_fee_per_gas: Uint) -> Uint:
280
    <snip>
300
    parent_gas_target = parent_gas_limit // ELASTICITY_MULTIPLIER
301
    if not check_gas_limit(block_gas_limit, parent_gas_limit):
302
        raise InvalidBlock
303
304
    if parent_gas_used == parent_gas_target:
305
        expected_base_fee_per_gas = parent_base_fee_per_gas
306
    elif parent_gas_used > parent_gas_target:
307
        gas_used_delta = parent_gas_used - parent_gas_target
308
309
        parent_fee_gas_delta = parent_base_fee_per_gas * gas_used_delta
310
        target_fee_gas_delta = parent_fee_gas_delta // parent_gas_target
311
312
        base_fee_per_gas_delta = max(
313
            target_fee_gas_delta // BASE_FEE_MAX_CHANGE_DENOMINATOR,
314
            Uint(1),
315
        )
316
317
        expected_base_fee_per_gas = (
318
            parent_base_fee_per_gas + base_fee_per_gas_delta
319
        )
320
    else:
321
        gas_used_delta = parent_gas_target - parent_gas_used
322
323
        parent_fee_gas_delta = parent_base_fee_per_gas * gas_used_delta
324
        target_fee_gas_delta = parent_fee_gas_delta // parent_gas_target
325
326
        base_fee_per_gas_delta = (
327
            target_fee_gas_delta // BASE_FEE_MAX_CHANGE_DENOMINATOR
328
        )
329
330
        expected_base_fee_per_gas = (
331
            parent_base_fee_per_gas - base_fee_per_gas_delta
332
        )
333
334
    return Uint(expected_base_fee_per_gas)

validate_header

Verifies a block header.

In order to consider a block's header valid, the logic for the quantities in the header should match the logic for the block itself. For example the header timestamp should be greater than the block's parent timestamp because the block was created after the parent block. Additionally, the block's number should be directly following the parent block's number since it is the next block in the sequence.

Parameters

chain : History and current state. header : Header to check for correctness.

def validate_header(chain: BlockChain, ​​header: Header) -> None:
338
    <snip>
356
    if header.number < Uint(1):
357
        raise InvalidBlock
358
359
    parent_header = chain.blocks[-1].header
360
361
    excess_blob_gas = calculate_excess_blob_gas(parent_header)
362
    if header.excess_blob_gas != excess_blob_gas:
363
        raise InvalidBlock
364
365
    if header.gas_used > header.gas_limit:
366
        raise InvalidBlock
367
368
    expected_base_fee_per_gas = calculate_base_fee_per_gas(
369
        header.gas_limit,
370
        parent_header.gas_limit,
371
        parent_header.gas_used,
372
        parent_header.base_fee_per_gas,
373
    )
374
    if expected_base_fee_per_gas != header.base_fee_per_gas:
375
        raise InvalidBlock
376
    if header.timestamp <= parent_header.timestamp:
377
        raise InvalidBlock
378
    if header.number != parent_header.number + Uint(1):
379
        raise InvalidBlock
380
    if len(header.extra_data) > 32:
381
        raise InvalidBlock
382
    if header.difficulty != 0:
383
        raise InvalidBlock
384
    if header.nonce != b"\x00\x00\x00\x00\x00\x00\x00\x00":
385
        raise InvalidBlock
386
    if header.ommers_hash != EMPTY_OMMER_HASH:
387
        raise InvalidBlock
388
389
    block_parent_hash = keccak256(rlp.encode(parent_header))
390
    if header.parent_hash != block_parent_hash:
391
        raise InvalidBlock

check_transaction

Check if the transaction is includable in the block.

Parameters

block_env : The block scoped environment. block_output : The block output for the current block. tx : The transaction. tx_state : The transaction state tracker.

Returns

sender_address : The sender of the transaction. effective_gas_price : The price to charge for gas when the transaction is executed. blob_versioned_hashes : The blob versioned hashes of the transaction. tx_blob_gas_used: The blob gas used by the transaction.

Raises

InvalidBlock : If the transaction is not includable. GasUsedExceedsLimitError : If the gas used by the transaction exceeds the block's gas limit. NonceMismatchError : If the nonce of the transaction is not equal to the sender's nonce. InsufficientBalanceError : If the sender's balance is not enough to pay for the transaction. InvalidSenderError : If the transaction is from an address that does not exist anymore. InsufficientMaxFeePerGasError : If the maximum fee per gas is insufficient for the transaction. InsufficientMaxFeePerBlobGasError : If the maximum fee per blob gas is insufficient for the transaction. BlobGasLimitExceededError : If the blob gas used by the transaction exceeds the block's blob gas limit. InvalidBlobVersionedHashError : If the transaction contains a blob versioned hash with an invalid version. NoBlobDataError : If the transaction is a type 3 but has no blobs. TransactionTypeContractCreationError: If the transaction type is not allowed to create contracts. EmptyAuthorizationListError : If the transaction is a SetCodeTransaction and the authorization list is empty.

def check_transaction(block_env: ethereum.forks.cancun.vm.BlockEnvironmentethereum.forks.prague.vm.BlockEnvironment, ​​block_output: ethereum.forks.cancun.vm.BlockOutputethereum.forks.prague.vm.BlockOutput, ​​tx: Transaction, ​​tx_state: TransactionState) -> Tuple[Address, Uint, Tuple[VersionedHash, ...], U64]:
400
    <snip>
456
    gas_available = block_env.block_gas_limit - block_output.block_gas_used
457
    blob_gas_available = MAX_BLOB_GAS_PER_BLOCK - block_output.blob_gas_used
458
459
    if tx.gas > gas_available:
460
        raise GasUsedExceedsLimitError("gas used exceeds limit")
461
462
    tx_blob_gas_used = calculate_total_blob_gas(tx)
463
    if tx_blob_gas_used > blob_gas_available:
464
        raise BlobGasLimitExceededError("blob gas limit exceeded")
465
466
    tx_chain_id = chain_id(tx)
467
    if tx_chain_id is not None and tx_chain_id != block_env.chain_id:
468
        raise WrongChainIdError(
469
            expected=block_env.chain_id,
470
            actual=tx_chain_id,
471
        )
472
473
    sender_address = recover_sender(tx)
474
    sender_account = get_account(tx_state, sender_address)
475
476
    if isinstance(tx, FeeMarketCapableTransaction):
477
        if tx.max_fee_per_gas < block_env.base_fee_per_gas:
478
            raise InsufficientMaxFeePerGasError(
479
                tx.max_fee_per_gas, block_env.base_fee_per_gas
480
            )
481
482
        priority_fee_per_gas = min(
483
            tx.max_priority_fee_per_gas,
484
            tx.max_fee_per_gas - block_env.base_fee_per_gas,
485
        )
486
        effective_gas_price = priority_fee_per_gas + block_env.base_fee_per_gas
487
        max_gas_fee = tx.gas * tx.max_fee_per_gas
488
    else:
489
        if tx.gas_price < block_env.base_fee_per_gas:
490
            raise InvalidBlock
491
        effective_gas_price = tx.gas_price
492
        max_gas_fee = tx.gas * tx.gas_price
493
494
    if isinstance(tx, BlobTransaction):
470
        if not isinstance(tx.to, Address):
471
            raise TransactionTypeContractCreationError(tx)
472
        if len(tx.blob_versioned_hashes) == 0:
495
        if len(tx.blob_versioned_hashes) == 0:
496
            raise NoBlobDataError("no blob data in transaction")
497
        for blob_versioned_hash in tx.blob_versioned_hashes:
498
            if blob_versioned_hash[0:1] != VERSIONED_HASH_VERSION_KZG:
499
                raise InvalidBlobVersionedHashError(
500
                    "invalid blob versioned hash"
501
                )
502
503
        blob_gas_price = calculate_blob_gas_price(block_env.excess_blob_gas)
504
        if Uint(tx.max_fee_per_blob_gas) < blob_gas_price:
505
            raise InsufficientMaxFeePerBlobGasError(
506
                "insufficient max fee per blob gas"
507
            )
508
509
        max_gas_fee += Uint(calculate_total_blob_gas(tx)) * Uint(
510
            tx.max_fee_per_blob_gas
511
        )
512
        blob_versioned_hashes = tx.blob_versioned_hashes
513
    else:
514
        blob_versioned_hashes = ()
515
516
    if isinstance(tx, (BlobTransaction, SetCodeTransaction)):
517
        if not isinstance(tx.to, Address):
518
            raise TransactionTypeContractCreationError(tx)
519
520
    if isinstance(tx, SetCodeTransaction):
521
        if not any(tx.authorizations):
522
            raise EmptyAuthorizationListError("empty authorization list")
523
524
    if sender_account.nonce > Uint(tx.nonce):
525
        raise NonceMismatchError("nonce too low")
526
    elif sender_account.nonce < Uint(tx.nonce):
527
        raise NonceMismatchError("nonce too high")
528
529
    if Uint(sender_account.balance) < max_gas_fee + Uint(tx.value):
530
        raise InsufficientBalanceError("insufficient sender balance")
498
    if sender_account.code_hash != EMPTY_CODE_HASH:
531
    sender_code = get_code(tx_state, sender_account.code_hash)
532
    if sender_account.code_hash != EMPTY_CODE_HASH and not is_valid_delegation(
533
        sender_code
534
    ):
535
        raise InvalidSenderError("not EOA")
536
537
    return (
538
        sender_address,
539
        effective_gas_price,
540
        blob_versioned_hashes,
541
        tx_blob_gas_used,
542
    )

make_receipt

Make the receipt for a transaction that was executed.

Parameters

tx : The executed transaction. error : Error in the top level frame of the transaction, if any. cumulative_gas_used : The total gas used so far in the block after the transaction was executed. logs : The logs produced by the transaction.

Returns

receipt : The receipt for the transaction.

def make_receipt(tx: Transaction, ​​error: Optional[EthereumException], ​​cumulative_gas_used: Uint, ​​logs: Tuple[Log, ...]) -> Bytes | Receipt:
551
    <snip>
572
    receipt = Receipt(
573
        succeeded=error is None,
574
        cumulative_gas_used=cumulative_gas_used,
575
        bloom=logs_bloom(logs),
576
        logs=logs,
577
    )
578
579
    return encode_receipt(tx, receipt)

process_checked_system_transaction

Process a system transaction and raise an error if the contract does not contain code or if the transaction fails.

Parameters

block_env : The block scoped environment. target_address : Address of the contract to call. data : Data to pass to the contract.

Returns

system_tx_output : MessageCallOutput Output of processing the system transaction.

def process_checked_system_transaction(block_env: ethereum.forks.prague.vm.BlockEnvironment, ​​target_address: Address, ​​data: Bytes) -> MessageCallOutput:
587
    <snip>
606
    # Pre-check that the system contract has code. We use a throwaway
607
    # TransactionState here that is *never* propagated back to BlockState
608
    # (no incorporate_tx_into_block call); the same get_account / get_code
609
    # lookups are performed and properly tracked by
610
    # process_unchecked_system_transaction below, which this function
611
    # always calls. Reading via a TransactionState (rather than directly
612
    # against pre_state) lets us see system contracts deployed earlier in
613
    # the same block — see EIP-7002 and EIP-7251 for this edge case.
614
    untracked_state = TransactionState(parent=block_env.state)
615
    system_contract_code = get_code(
616
        untracked_state,
617
        get_account(untracked_state, target_address).code_hash,
618
    )
619
620
    if len(system_contract_code) == 0:
621
        raise InvalidBlock(
622
            f"System contract address {target_address.hex()} does not "
623
            "contain code"
624
        )
625
626
    system_tx_output = process_unchecked_system_transaction(
627
        block_env,
628
        target_address,
629
        data,
630
    )
631
632
    if system_tx_output.error:
633
        raise InvalidBlock(
634
            f"System contract ({target_address.hex()}) call failed: "
635
            f"{system_tx_output.error}"
636
        )
637
638
    return system_tx_output

process_unchecked_system_transaction

Process a system transaction without checking if the contract contains code or if the transaction fails.

Parameters

block_env : The block scoped environment. target_address : Address of the contract to call. data : Data to pass to the contract.

Returns

system_tx_output : MessageCallOutput Output of processing the system transaction.

def process_unchecked_system_transaction(block_env: ethereum.forks.cancun.vm.BlockEnvironmentethereum.forks.prague.vm.BlockEnvironment, ​​target_address: Address, ​​data: Bytes) -> MessageCallOutput:
646
    <snip>
665
    system_tx_state = TransactionState(parent=block_env.state)
666
    system_contract_code = get_code(
667
        system_tx_state,
668
        get_account(system_tx_state, target_address).code_hash,
669
    )
670
671
    tx_env = vm.TransactionEnvironment(
672
        origin=SYSTEM_ADDRESS,
673
        gas_price=block_env.base_fee_per_gas,
674
        gas=SYSTEM_TRANSACTION_GAS,
675
        access_list_addresses=set(),
676
        access_list_storage_keys=set(),
677
        state=system_tx_state,
678
        blob_versioned_hashes=(),
679
        authorizations=(),
680
        index_in_block=None,
681
        tx_hash=None,
682
    )
683
684
    system_tx_message = Message(
685
        block_env=block_env,
686
        tx_env=tx_env,
687
        caller=SYSTEM_ADDRESS,
688
        target=target_address,
689
        gas=SYSTEM_TRANSACTION_GAS,
690
        value=U256(0),
691
        data=data,
692
        code=system_contract_code,
693
        depth=Uint(0),
694
        current_target=target_address,
695
        code_address=target_address,
696
        should_transfer_value=False,
697
        is_static=False,
698
        accessed_addresses=set(),
699
        accessed_storage_keys=set(),
700
        disable_precompiles=False,
701
        parent_evm=None,
702
    )
703
704
    system_tx_output = process_message_call(system_tx_message)
705
706
    incorporate_tx_into_block(system_tx_state)
707
708
    return system_tx_output

apply_body

Executes a block.

Many of the contents of a block are stored in data structures called tries. There is a transactions trie which is similar to a ledger of the transactions stored in the current block. There is also a receipts trie which stores the results of executing a transaction, like the post state and gas used. This function creates and executes the block that is to be added to the chain.

Parameters

block_env : The block scoped environment. transactions : Transactions included in the block. withdrawals : Withdrawals to be processed in the current block.

Returns

block_output : The block output for the current block.

def apply_body(block_env: ethereum.forks.cancun.vm.BlockEnvironmentethereum.forks.prague.vm.BlockEnvironment, ​​transactions: Tuple[LegacyTransaction | Bytes, ...], ​​withdrawals: Tuple[Withdrawal, ...]) -> ethereum.forks.cancun.vm.BlockOutputethereum.forks.prague.vm.BlockOutput:
716
    <snip>
741
    block_output = vm.BlockOutput()
742
743
    process_unchecked_system_transaction(
744
        block_env=block_env,
745
        target_address=BEACON_ROOTS_ADDRESS,
746
        data=block_env.parent_beacon_block_root,
747
    )
748
749
    process_unchecked_system_transaction(
750
        block_env=block_env,
751
        target_address=HISTORY_STORAGE_ADDRESS,
752
        data=block_env.block_hashes[-1],  # The parent hash
753
    )
754
755
    for i, tx in enumerate(map(decode_transaction, transactions)):
756
        process_transaction(block_env, block_output, tx, Uint(i))
757
758
    process_withdrawals(block_env, block_output, withdrawals)
759
760
    process_general_purpose_requests(
761
        block_env=block_env,
762
        block_output=block_output,
763
    )
764
765
    return block_output

process_general_purpose_requests

Process all the requests in the block.

Parameters

block_env : The execution environment for the Block. block_output : The block output for the current block.

def process_general_purpose_requests(block_env: ethereum.forks.prague.vm.BlockEnvironment, ​​block_output: ethereum.forks.prague.vm.BlockOutput) -> None:
772
    <snip>
783
    # Requests are to be in ascending order of request type
784
    deposit_requests = parse_deposit_requests(block_output)
785
    requests_from_execution = block_output.requests
786
    if len(deposit_requests) > 0:
787
        requests_from_execution.append(DEPOSIT_REQUEST_TYPE + deposit_requests)
788
789
    system_withdrawal_tx_output = process_checked_system_transaction(
790
        block_env=block_env,
791
        target_address=WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS,
792
        data=b"",
793
    )
794
795
    if len(system_withdrawal_tx_output.return_data) > 0:
796
        requests_from_execution.append(
797
            WITHDRAWAL_REQUEST_TYPE + system_withdrawal_tx_output.return_data
798
        )
799
800
    system_consolidation_tx_output = process_checked_system_transaction(
801
        block_env=block_env,
802
        target_address=CONSOLIDATION_REQUEST_PREDEPLOY_ADDRESS,
803
        data=b"",
804
    )
805
806
    if len(system_consolidation_tx_output.return_data) > 0:
807
        requests_from_execution.append(
808
            CONSOLIDATION_REQUEST_TYPE
809
            + system_consolidation_tx_output.return_data
810
        )

process_transaction

Execute a transaction against the provided environment.

This function processes the actions needed to execute a transaction. It decrements the sender's account balance after calculating the gas fee and refunds them the proper amount after execution. Calling contracts, deploying code, and incrementing nonces are all examples of actions that happen within this function or from a call made within this function.

Accounts that are marked for deletion are processed and destroyed after execution.

Parameters

block_env : Environment for the Ethereum Virtual Machine. block_output : The block output for the current block. tx : Transaction to execute. index: Index of the transaction in the block.

def process_transaction(block_env: ethereum.forks.cancun.vm.BlockEnvironmentethereum.forks.prague.vm.BlockEnvironment, ​​block_output: ethereum.forks.cancun.vm.BlockOutputethereum.forks.prague.vm.BlockOutput, ​​tx: Transaction, ​​index: Uint) -> None:
819
    <snip>
843
    tx_state = TransactionState(parent=block_env.state)
844
845
    trie_set(
846
        block_output.transactions_trie,
847
        rlp.encode(index),
848
        encode_transaction(tx),
849
    )
850
698
    intrinsic_gas = validate_transaction(tx)
851
    intrinsic = validate_transaction(tx)
852
853
    (
854
        sender,
855
        effective_gas_price,
856
        blob_versioned_hashes,
857
        tx_blob_gas_used,
858
    ) = check_transaction(
859
        block_env=block_env,
860
        block_output=block_output,
861
        tx=tx,
862
        tx_state=tx_state,
863
    )
864
865
    sender_account = get_account(tx_state, sender)
866
867
    if isinstance(tx, BlobTransaction):
868
        blob_gas_fee = calculate_data_fee(block_env.excess_blob_gas, tx)
869
    else:
870
        blob_gas_fee = Uint(0)
871
872
    effective_gas_fee = tx.gas * effective_gas_price
873
721
    gas = tx.gas - intrinsic_gas
874
    gas = tx.gas - intrinsic.regular
875
    increment_nonce(tx_state, sender)
876
877
    sender_balance_after_gas_fee = (
878
        Uint(sender_account.balance) - effective_gas_fee - blob_gas_fee
879
    )
880
    set_account_balance(tx_state, sender, U256(sender_balance_after_gas_fee))
881
882
    access_list_addresses = set()
883
    access_list_storage_keys = set()
884
    access_list_addresses.add(block_env.coinbase)
732
    if isinstance(
733
        tx, (AccessListTransaction, FeeMarketTransaction, BlobTransaction)
734
    ):
885
    if has_access_list(tx):
886
        for access in tx.access_list:
887
            access_list_addresses.add(access.account)
888
            for slot in access.slots:
889
                access_list_storage_keys.add((access.account, slot))
890
891
    authorizations: Tuple[Authorization, ...] = ()
892
    if isinstance(tx, SetCodeTransaction):
893
        authorizations = tx.authorizations
894
895
    tx_env = vm.TransactionEnvironment(
896
        origin=sender,
897
        gas_price=effective_gas_price,
898
        gas=gas,
899
        access_list_addresses=access_list_addresses,
900
        access_list_storage_keys=access_list_storage_keys,
901
        state=tx_state,
902
        blob_versioned_hashes=blob_versioned_hashes,
903
        authorizations=authorizations,
904
        index_in_block=index,
905
        tx_hash=get_transaction_hash(encode_transaction(tx)),
906
    )
907
908
    message = prepare_message(block_env, tx_env, tx)
909
910
    tx_output = process_message_call(message)
911
756
    tx_gas_used_before_refund = tx.gas - tx_output.gas_left
912
    # For EIP-7623 we first calculate the execution_gas_used, which includes
913
    # the execution gas refund.
914
    tx_gas_used_before_refund = tx.gas - tx_output.gas_left
915
    tx_gas_refund = min(
916
        tx_gas_used_before_refund // Uint(5), Uint(tx_output.refund_counter)
917
    )
918
    tx_gas_used_after_refund = tx_gas_used_before_refund - tx_gas_refund
919
920
    # Transactions with less execution_gas_used than the floor pay at the
921
    # floor cost.
922
    tx_gas_used_after_refund = max(
923
        tx_gas_used_after_refund, intrinsic.calldata_floor
924
    )
925
926
    tx_gas_left = tx.gas - tx_gas_used_after_refund
927
    gas_refund_amount = tx_gas_left * effective_gas_price
928
929
    # For non-1559 transactions effective_gas_price == tx.gas_price
930
    priority_fee_per_gas = effective_gas_price - block_env.base_fee_per_gas
931
    transaction_fee = tx_gas_used_after_refund * priority_fee_per_gas
932
933
    # refund gas
934
    create_ether(tx_state, sender, U256(gas_refund_amount))
935
936
    # transfer miner fees
937
    create_ether(tx_state, block_env.coinbase, U256(transaction_fee))
938
939
    for address in tx_output.accounts_to_delete:
940
        destroy_account(tx_state, address)
941
942
    block_output.block_gas_used += tx_gas_used_after_refund
943
    block_output.blob_gas_used += tx_blob_gas_used
944
945
    receipt = make_receipt(
946
        tx, tx_output.error, block_output.block_gas_used, tx_output.logs
947
    )
948
949
    receipt_key = rlp.encode(Uint(index))
950
    block_output.receipt_keys += (receipt_key,)
951
952
    trie_set(
953
        block_output.receipts_trie,
954
        receipt_key,
955
        receipt,
956
    )
957
958
    block_output.block_logs += tx_output.logs
959
960
    incorporate_tx_into_block(tx_state)

process_withdrawals

Increase the balance of the withdrawing account.

def process_withdrawals(block_env: ethereum.forks.cancun.vm.BlockEnvironmentethereum.forks.prague.vm.BlockEnvironment, ​​block_output: ethereum.forks.cancun.vm.BlockOutputethereum.forks.prague.vm.BlockOutput, ​​withdrawals: Tuple[Withdrawal, ...]) -> None:
968
    <snip>
971
    wd_state = TransactionState(parent=block_env.state)
972
973
    for i, wd in enumerate(withdrawals):
974
        trie_set(
975
            block_output.withdrawals_trie,
976
            rlp.encode(Uint(i)),
977
            rlp.encode(wd),
978
        )
979
980
        create_ether(wd_state, wd.address, U256(wd.amount) * U256(10**9))
981
982
    incorporate_tx_into_block(wd_state)

check_gas_limit

Validates the gas limit for a block.

The bounds of the gas limit, max_adjustment_delta, is set as the quotient of the parent block's gas limit and the LIMIT_ADJUSTMENT_FACTOR. Therefore, if the gas limit that is. Therefore, if the gas limit that is passed passed through as a parameter is greater than or equal to the through as a parameter is greater than or equal to the sum of of the the parent's gas and the adjustment delta then the limit for gas is tooparent's gas and the adjustment delta then the limit for gas is too high high and fails this function's check. Similarly, if the limit is lessand fails this function's check. Similarly, if the limit is less than or than or equal to the equal to the difference of the parent's gas and the adjustment of the parent's gas and the adjustment delta or delta or the predefined the predefined LIMIT_MINIMUM then this function's then this function's check fails because check fails because the gas limit doesn't allow for a sufficient orthe gas limit doesn't allow for a sufficient or reasonable amount of gas to reasonable amount of gas to be used on a block.be used on a block.

Parameters

gas_limit : Gas limit to validate.

parent_gas_limit : Gas limit of the parent block.

Returns

check : bool True if gas limit constraints are satisfied, False otherwise.

def check_gas_limit(gas_limit: Uint, ​​parent_gas_limit: Uint) -> bool:
986
    <snip>
1014
    max_adjustment_delta = parent_gas_limit // GasCosts.LIMIT_ADJUSTMENT_FACTOR
1015
    if gas_limit >= parent_gas_limit + max_adjustment_delta:
1016
        return False
1017
    if gas_limit <= parent_gas_limit - max_adjustment_delta:
1018
        return False
1019
    if gas_limit < GasCosts.LIMIT_MINIMUM:
1020
        return False
1021
1022
    return True