ethereum.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

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
    # TODO: This function has not been tested rigorously
174
    if len(recent_blocks) == 0:
175
        return []
176
177
    recent_block_hashes = []
178
179
    for block in recent_blocks:
180
        prev_block_hash = block.header.parent_hash
181
        recent_block_hashes.append(prev_block_hash)
182
183
    # We are computing the hash only for the most recent block and not for
184
    # the rest of the blocks as they have successors which have the hash of
185
    # the current block as parent hash.
186
    most_recent_block_hash = keccak256(rlp.encode(recent_blocks[-1].header))
187
    recent_block_hashes.append(most_recent_block_hash)
188
189
    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:
193
    <snip>
215
    validate_header(chain, block.header)
216
    if block.ommers != ():
217
        raise InvalidBlock
218
219
    block_state = BlockState(pre_state=chain.state)
220
221
    block_env = vm.BlockEnvironment(
222
        chain_id=chain.chain_id,
223
        state=block_state,
224
        block_gas_limit=block.header.gas_limit,
225
        block_hashes=get_last_256_block_hashes(chain),
226
        coinbase=block.header.coinbase,
227
        number=block.header.number,
228
        base_fee_per_gas=block.header.base_fee_per_gas,
229
        time=block.header.timestamp,
230
        prev_randao=block.header.prev_randao,
231
        excess_blob_gas=block.header.excess_blob_gas,
232
        parent_beacon_block_root=block.header.parent_beacon_block_root,
233
    )
234
235
    block_output = apply_body(
236
        block_env=block_env,
237
        transactions=block.transactions,
238
        withdrawals=block.withdrawals,
239
    )
240
    block_diff = extract_block_diff(block_state)
241
    block_state_root = chain.state.compute_state_root(block_diff)
242
    transactions_root = root(block_output.transactions_trie)
243
    receipt_root = root(block_output.receipts_trie)
244
    block_logs_bloom = logs_bloom(block_output.block_logs)
245
    withdrawals_root = root(block_output.withdrawals_trie)
246
    requests_hash = compute_requests_hash(block_output.requests)
247
248
    if block_output.block_gas_used != block.header.gas_used:
249
        raise InvalidBlock(
250
            f"{block_output.block_gas_used} != {block.header.gas_used}"
251
        )
252
    if transactions_root != block.header.transactions_root:
253
        raise InvalidBlock
254
    if block_state_root != block.header.state_root:
255
        raise InvalidBlock
256
    if receipt_root != block.header.receipt_root:
257
        raise InvalidBlock
258
    if block_logs_bloom != block.header.bloom:
259
        raise InvalidBlock
260
    if withdrawals_root != block.header.withdrawals_root:
261
        raise InvalidBlock
262
    if block_output.blob_gas_used != block.header.blob_gas_used:
263
        raise InvalidBlock
264
    if requests_hash != block.header.requests_hash:
265
        raise InvalidBlock
266
267
    apply_changes_to_state(chain.state, block_diff)
268
    chain.blocks.append(block)
269
    if len(chain.blocks) > 255:
270
        # Real clients have to store more blocks to deal with reorgs, but the
271
        # protocol only requires the last 255
272
        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:
281
    <snip>
301
    parent_gas_target = parent_gas_limit // ELASTICITY_MULTIPLIER
302
    if not check_gas_limit(block_gas_limit, parent_gas_limit):
303
        raise InvalidBlock
304
305
    if parent_gas_used == parent_gas_target:
306
        expected_base_fee_per_gas = parent_base_fee_per_gas
307
    elif parent_gas_used > parent_gas_target:
308
        gas_used_delta = parent_gas_used - parent_gas_target
309
310
        parent_fee_gas_delta = parent_base_fee_per_gas * gas_used_delta
311
        target_fee_gas_delta = parent_fee_gas_delta // parent_gas_target
312
313
        base_fee_per_gas_delta = max(
314
            target_fee_gas_delta // BASE_FEE_MAX_CHANGE_DENOMINATOR,
315
            Uint(1),
316
        )
317
318
        expected_base_fee_per_gas = (
319
            parent_base_fee_per_gas + base_fee_per_gas_delta
320
        )
321
    else:
322
        gas_used_delta = parent_gas_target - parent_gas_used
323
324
        parent_fee_gas_delta = parent_base_fee_per_gas * gas_used_delta
325
        target_fee_gas_delta = parent_fee_gas_delta // parent_gas_target
326
327
        base_fee_per_gas_delta = (
328
            target_fee_gas_delta // BASE_FEE_MAX_CHANGE_DENOMINATOR
329
        )
330
331
        expected_base_fee_per_gas = (
332
            parent_base_fee_per_gas - base_fee_per_gas_delta
333
        )
334
335
    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:
339
    <snip>
357
    if header.number < Uint(1):
358
        raise InvalidBlock
359
360
    parent_header = chain.blocks[-1].header
361
362
    excess_blob_gas = calculate_excess_blob_gas(parent_header)
363
    if header.excess_blob_gas != excess_blob_gas:
364
        raise InvalidBlock
365
366
    if header.gas_used > header.gas_limit:
367
        raise InvalidBlock
368
369
    expected_base_fee_per_gas = calculate_base_fee_per_gas(
370
        header.gas_limit,
371
        parent_header.gas_limit,
372
        parent_header.gas_used,
373
        parent_header.base_fee_per_gas,
374
    )
375
    if expected_base_fee_per_gas != header.base_fee_per_gas:
376
        raise InvalidBlock
377
    if header.timestamp <= parent_header.timestamp:
378
        raise InvalidBlock
379
    if header.number != parent_header.number + Uint(1):
380
        raise InvalidBlock
381
    if len(header.extra_data) > 32:
382
        raise InvalidBlock
383
    if header.difficulty != 0:
384
        raise InvalidBlock
385
    if header.nonce != b"\x00\x00\x00\x00\x00\x00\x00\x00":
386
        raise InvalidBlock
387
    if header.ommers_hash != EMPTY_OMMER_HASH:
388
        raise InvalidBlock
389
390
    block_parent_hash = keccak256(rlp.encode(parent_header))
391
    if header.parent_hash != block_parent_hash:
392
        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.prague.vm.BlockEnvironment, ​​block_output: ethereum.forks.prague.vm.BlockOutput, ​​tx: Transaction, ​​tx_state: TransactionState) -> Tuple[Address, Uint, Tuple[VersionedHash, ...], U64]:
401
    <snip>
457
    gas_available = block_env.block_gas_limit - block_output.block_gas_used
458
    blob_gas_available = MAX_BLOB_GAS_PER_BLOCK - block_output.blob_gas_used
459
460
    if tx.gas > gas_available:
461
        raise GasUsedExceedsLimitError("gas used exceeds limit")
462
463
    tx_blob_gas_used = calculate_total_blob_gas(tx)
464
    if tx_blob_gas_used > blob_gas_available:
465
        raise BlobGasLimitExceededError("blob gas limit exceeded")
466
467
    tx_chain_id = chain_id(tx)
468
    if tx_chain_id is not None and tx_chain_id != block_env.chain_id:
469
        raise WrongChainIdError(
470
            expected=block_env.chain_id,
471
            actual=tx_chain_id,
472
        )
473
474
    sender_address = recover_sender(tx)
475
    sender_account = get_account(tx_state, sender_address)
476
477
    if isinstance(tx, FeeMarketCapableTransaction):
478
        if tx.max_fee_per_gas < block_env.base_fee_per_gas:
479
            raise InsufficientMaxFeePerGasError(
480
                tx.max_fee_per_gas, block_env.base_fee_per_gas
481
            )
482
483
        priority_fee_per_gas = min(
484
            tx.max_priority_fee_per_gas,
485
            tx.max_fee_per_gas - block_env.base_fee_per_gas,
486
        )
487
        effective_gas_price = priority_fee_per_gas + block_env.base_fee_per_gas
488
        max_gas_fee = tx.gas * tx.max_fee_per_gas
489
    else:
490
        if tx.gas_price < block_env.base_fee_per_gas:
491
            raise InvalidBlock
492
        effective_gas_price = tx.gas_price
493
        max_gas_fee = tx.gas * tx.gas_price
494
495
    if isinstance(tx, BlobTransaction):
496
        if len(tx.blob_versioned_hashes) == 0:
497
            raise NoBlobDataError("no blob data in transaction")
498
        for blob_versioned_hash in tx.blob_versioned_hashes:
499
            if blob_versioned_hash[0:1] != VERSIONED_HASH_VERSION_KZG:
500
                raise InvalidBlobVersionedHashError(
501
                    "invalid blob versioned hash"
502
                )
503
504
        blob_gas_price = calculate_blob_gas_price(block_env.excess_blob_gas)
505
        if Uint(tx.max_fee_per_blob_gas) < blob_gas_price:
506
            raise InsufficientMaxFeePerBlobGasError(
507
                "insufficient max fee per blob gas"
508
            )
509
510
        max_gas_fee += Uint(calculate_total_blob_gas(tx)) * Uint(
511
            tx.max_fee_per_blob_gas
512
        )
513
        blob_versioned_hashes = tx.blob_versioned_hashes
514
    else:
515
        blob_versioned_hashes = ()
516
517
    if isinstance(tx, (BlobTransaction, SetCodeTransaction)):
518
        if not isinstance(tx.to, Address):
519
            raise TransactionTypeContractCreationError(tx)
520
521
    if isinstance(tx, SetCodeTransaction):
522
        if not any(tx.authorizations):
523
            raise EmptyAuthorizationListError("empty authorization list")
524
525
    if sender_account.nonce > Uint(tx.nonce):
526
        raise NonceMismatchError("nonce too low")
527
    elif sender_account.nonce < Uint(tx.nonce):
528
        raise NonceMismatchError("nonce too high")
529
530
    if Uint(sender_account.balance) < max_gas_fee + Uint(tx.value):
531
        raise InsufficientBalanceError("insufficient sender balance")
532
    sender_code = get_code(tx_state, sender_account.code_hash)
533
    if sender_account.code_hash != EMPTY_CODE_HASH and not is_valid_delegation(
534
        sender_code
535
    ):
536
        raise InvalidSenderError("not EOA")
537
538
    return (
539
        sender_address,
540
        effective_gas_price,
541
        blob_versioned_hashes,
542
        tx_blob_gas_used,
543
    )

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:
552
    <snip>
573
    receipt = Receipt(
574
        succeeded=error is None,
575
        cumulative_gas_used=cumulative_gas_used,
576
        bloom=logs_bloom(logs),
577
        logs=logs,
578
    )
579
580
    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:
588
    <snip>
607
    # Pre-check that the system contract has code. We use a throwaway
608
    # TransactionState here that is *never* propagated back to BlockState
609
    # (no incorporate_tx_into_block call); the same get_account / get_code
610
    # lookups are performed and properly tracked by
611
    # process_unchecked_system_transaction below, which this function
612
    # always calls. Reading via a TransactionState (rather than directly
613
    # against pre_state) lets us see system contracts deployed earlier in
614
    # the same block — see EIP-7002 and EIP-7251 for this edge case.
615
    untracked_state = TransactionState(parent=block_env.state)
616
    system_contract_code = get_code(
617
        untracked_state,
618
        get_account(untracked_state, target_address).code_hash,
619
    )
620
621
    if len(system_contract_code) == 0:
622
        raise InvalidBlock(
623
            f"System contract address {target_address.hex()} does not "
624
            "contain code"
625
        )
626
627
    system_tx_output = process_unchecked_system_transaction(
628
        block_env,
629
        target_address,
630
        data,
631
    )
632
633
    if system_tx_output.error:
634
        raise InvalidBlock(
635
            f"System contract ({target_address.hex()}) call failed: "
636
            f"{system_tx_output.error}"
637
        )
638
639
    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.prague.vm.BlockEnvironment, ​​target_address: Address, ​​data: Bytes) -> MessageCallOutput:
647
    <snip>
666
    system_tx_state = TransactionState(parent=block_env.state)
667
    system_contract_code = get_code(
668
        system_tx_state,
669
        get_account(system_tx_state, target_address).code_hash,
670
    )
671
672
    tx_env = vm.TransactionEnvironment(
673
        origin=SYSTEM_ADDRESS,
674
        gas_price=block_env.base_fee_per_gas,
675
        gas=SYSTEM_TRANSACTION_GAS,
676
        access_list_addresses=set(),
677
        access_list_storage_keys=set(),
678
        state=system_tx_state,
679
        blob_versioned_hashes=(),
680
        authorizations=(),
681
        index_in_block=None,
682
        tx_hash=None,
683
    )
684
685
    system_tx_message = Message(
686
        block_env=block_env,
687
        tx_env=tx_env,
688
        caller=SYSTEM_ADDRESS,
689
        target=target_address,
690
        gas=SYSTEM_TRANSACTION_GAS,
691
        value=U256(0),
692
        data=data,
693
        code=system_contract_code,
694
        depth=Uint(0),
695
        current_target=target_address,
696
        code_address=target_address,
697
        should_transfer_value=False,
698
        is_static=False,
699
        accessed_addresses=set(),
700
        accessed_storage_keys=set(),
701
        disable_precompiles=False,
702
        parent_evm=None,
703
    )
704
705
    system_tx_output = process_message_call(system_tx_message)
706
707
    incorporate_tx_into_block(system_tx_state)
708
709
    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.prague.vm.BlockEnvironment, ​​transactions: Tuple[LegacyTransaction | Bytes, ...], ​​withdrawals: Tuple[Withdrawal, ...]) -> ethereum.forks.prague.vm.BlockOutput:
717
    <snip>
742
    block_output = vm.BlockOutput()
743
744
    process_unchecked_system_transaction(
745
        block_env=block_env,
746
        target_address=BEACON_ROOTS_ADDRESS,
747
        data=block_env.parent_beacon_block_root,
748
    )
749
750
    process_unchecked_system_transaction(
751
        block_env=block_env,
752
        target_address=HISTORY_STORAGE_ADDRESS,
753
        data=block_env.block_hashes[-1],  # The parent hash
754
    )
755
756
    for i, tx in enumerate(map(decode_transaction, transactions)):
757
        process_transaction(block_env, block_output, tx, Uint(i))
758
759
    process_withdrawals(block_env, block_output, withdrawals)
760
761
    process_general_purpose_requests(
762
        block_env=block_env,
763
        block_output=block_output,
764
    )
765
766
    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:
773
    <snip>
784
    # Requests are to be in ascending order of request type
785
    deposit_requests = parse_deposit_requests(block_output)
786
    requests_from_execution = block_output.requests
787
    if len(deposit_requests) > 0:
788
        requests_from_execution.append(DEPOSIT_REQUEST_TYPE + deposit_requests)
789
790
    system_withdrawal_tx_output = process_checked_system_transaction(
791
        block_env=block_env,
792
        target_address=WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS,
793
        data=b"",
794
    )
795
796
    if len(system_withdrawal_tx_output.return_data) > 0:
797
        requests_from_execution.append(
798
            WITHDRAWAL_REQUEST_TYPE + system_withdrawal_tx_output.return_data
799
        )
800
801
    system_consolidation_tx_output = process_checked_system_transaction(
802
        block_env=block_env,
803
        target_address=CONSOLIDATION_REQUEST_PREDEPLOY_ADDRESS,
804
        data=b"",
805
    )
806
807
    if len(system_consolidation_tx_output.return_data) > 0:
808
        requests_from_execution.append(
809
            CONSOLIDATION_REQUEST_TYPE
810
            + system_consolidation_tx_output.return_data
811
        )

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

process_withdrawals

Increase the balance of the withdrawing account.

def process_withdrawals(block_env: ethereum.forks.prague.vm.BlockEnvironment, ​​block_output: ethereum.forks.prague.vm.BlockOutput, ​​withdrawals: Tuple[Withdrawal, ...]) -> None:
969
    <snip>
972
    wd_state = TransactionState(parent=block_env.state)
973
974
    for i, wd in enumerate(withdrawals):
975
        trie_set(
976
            block_output.withdrawals_trie,
977
            rlp.encode(Uint(i)),
978
            rlp.encode(wd),
979
        )
980
981
        create_ether(wd_state, wd.address, U256(wd.amount) * U256(10**9))
982
983
    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 passed through as a parameter is greater than or equal to the sum of the parent's gas and the adjustment delta then the limit for gas is too high and fails this function's check. Similarly, if the limit is less than or equal to the difference of the parent's gas and the adjustment delta or the predefined LIMIT_MINIMUM then this function's check fails because the gas limit doesn't allow for a sufficient or reasonable amount of gas to 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:
987
    <snip>
1015
    max_adjustment_delta = parent_gas_limit // GasCosts.LIMIT_ADJUSTMENT_FACTOR
1016
    if gas_limit >= parent_gas_limit + max_adjustment_delta:
1017
        return False
1018
    if gas_limit <= parent_gas_limit - max_adjustment_delta:
1019
        return False
1020
    if gas_limit < GasCosts.LIMIT_MINIMUM:
1021
        return False
1022
1023
    return True