ethereum.forks.paris.forkethereum.forks.shanghai.fork

Ethereum Specification.

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

Introduction

Entry point for the Ethereum specification.

BASE_FEE_MAX_CHANGE_DENOMINATOR

63
BASE_FEE_MAX_CHANGE_DENOMINATOR = Uint(8)

ELASTICITY_MULTIPLIER

64
ELASTICITY_MULTIPLIER = Uint(2)

GAS_LIMIT_ADJUSTMENT_FACTOR

65
GAS_LIMIT_ADJUSTMENT_FACTOR = Uint(1024)

GAS_LIMIT_MINIMUM

66
GAS_LIMIT_MINIMUM = Uint(5000)

EMPTY_OMMER_HASH

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

BlockChain

History and current state of the block chain.

70
@dataclass
class BlockChain:

blocks

76
    blocks: List[Block]

state

77
    state: State

chain_id

78
    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:
82
    """
83
    Transforms the state from the previous hard fork (`old`) into the block
84
    chain object for this hard fork and returns it.
85
86
    When forks need to implement an irregular state transition, this function
87
    is used to handle the irregularity. See the :ref:`DAO Fork <dao-fork>` for
88
    an example.
89
90
    Parameters
91
    ----------
92
    old :
93
        Previous block chain object.
94
95
    Returns
96
    -------
97
    new : `BlockChain`
98
        Upgraded block chain object for this hard fork.
99
100
    """
101
    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]:
105
    """
106
    Obtain the list of hashes of the previous 256 blocks in order of
107
    increasing block number.
108
109
    This function will return less hashes for the first 256 blocks.
110
111
    The ``BLOCKHASH`` opcode needs to access the latest hashes on the chain,
112
    therefore this function retrieves them.
113
114
    Parameters
115
    ----------
116
    chain :
117
        History and current state.
118
119
    Returns
120
    -------
121
    recent_block_hashes : `List[Hash32]`
122
        Hashes of the recent 256 blocks in order of increasing block number.
123
124
    """
125
    recent_blocks = chain.blocks[-255:]
126
    # TODO: This function has not been tested rigorously
127
    if len(recent_blocks) == 0:
128
        return []
129
130
    recent_block_hashes = []
131
132
    for block in recent_blocks:
133
        prev_block_hash = block.header.parent_hash
134
        recent_block_hashes.append(prev_block_hash)
135
136
    # We are computing the hash only for the most recent block and not for
137
    # the rest of the blocks as they have successors which have the hash of
138
    # the current block as parent hash.
139
    most_recent_block_hash = keccak256(rlp.encode(recent_blocks[-1].header))
140
    recent_block_hashes.append(most_recent_block_hash)
141
142
    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:
146
    """
147
    Attempts to apply a block to an existing block chain.
148
149
    All parts of the block's contents need to be verified before being added
150
    to the chain. Blocks are verified by ensuring that the contents of the
151
    block make logical sense with the contents of the parent block. The
152
    information in the block's header must also match the corresponding
153
    information in the block.
154
155
    To implement Ethereum, in theory clients are only required to store the
156
    most recent 255 blocks of the chain since as far as execution is
157
    concerned, only those blocks are accessed. Practically, however, clients
158
    should store more blocks to handle reorgs.
159
160
    Parameters
161
    ----------
162
    chain :
163
        History and current state.
164
    block :
165
        Block to apply to `chain`.
166
167
    """
168
    validate_header(chain, block.header)
169
    if block.ommers != ():
170
        raise InvalidBlock
171
172
    block_env = vm.BlockEnvironment(
173
        chain_id=chain.chain_id,
174
        state=chain.state,
175
        block_gas_limit=block.header.gas_limit,
176
        block_hashes=get_last_256_block_hashes(chain),
177
        coinbase=block.header.coinbase,
178
        number=block.header.number,
179
        base_fee_per_gas=block.header.base_fee_per_gas,
180
        time=block.header.timestamp,
181
        prev_randao=block.header.prev_randao,
182
    )
183
184
    block_output = apply_body(
185
        block_env=block_env,
186
        transactions=block.transactions,
187
        withdrawals=block.withdrawals,
188
    )
189
    block_state_root = state_root(block_env.state)
190
    transactions_root = root(block_output.transactions_trie)
191
    receipt_root = root(block_output.receipts_trie)
192
    block_logs_bloom = logs_bloom(block_output.block_logs)
193
    withdrawals_root = root(block_output.withdrawals_trie)
194
195
    if block_output.block_gas_used != block.header.gas_used:
196
        raise InvalidBlock(
197
            f"{block_output.block_gas_used} != {block.header.gas_used}"
198
        )
199
    if transactions_root != block.header.transactions_root:
200
        raise InvalidBlock
201
    if block_state_root != block.header.state_root:
202
        raise InvalidBlock
203
    if receipt_root != block.header.receipt_root:
204
        raise InvalidBlock
205
    if block_logs_bloom != block.header.bloom:
206
        raise InvalidBlock
207
    if withdrawals_root != block.header.withdrawals_root:
208
        raise InvalidBlock
209
210
    chain.blocks.append(block)
211
    if len(chain.blocks) > 255:
212
        # Real clients have to store more blocks to deal with reorgs, but the
213
        # protocol only requires the last 255
214
        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:
223
    """
224
    Calculates the base fee per gas for the block.
225
226
    Parameters
227
    ----------
228
    block_gas_limit :
229
        Gas limit of the block for which the base fee is being calculated.
230
    parent_gas_limit :
231
        Gas limit of the parent block.
232
    parent_gas_used :
233
        Gas used in the parent block.
234
    parent_base_fee_per_gas :
235
        Base fee per gas of the parent block.
236
237
    Returns
238
    -------
239
    base_fee_per_gas : `Uint`
240
        Base fee per gas for the block.
241
242
    """
243
    parent_gas_target = parent_gas_limit // ELASTICITY_MULTIPLIER
244
    if not check_gas_limit(block_gas_limit, parent_gas_limit):
245
        raise InvalidBlock
246
247
    if parent_gas_used == parent_gas_target:
248
        expected_base_fee_per_gas = parent_base_fee_per_gas
249
    elif parent_gas_used > parent_gas_target:
250
        gas_used_delta = parent_gas_used - parent_gas_target
251
252
        parent_fee_gas_delta = parent_base_fee_per_gas * gas_used_delta
253
        target_fee_gas_delta = parent_fee_gas_delta // parent_gas_target
254
255
        base_fee_per_gas_delta = max(
256
            target_fee_gas_delta // BASE_FEE_MAX_CHANGE_DENOMINATOR,
257
            Uint(1),
258
        )
259
260
        expected_base_fee_per_gas = (
261
            parent_base_fee_per_gas + base_fee_per_gas_delta
262
        )
263
    else:
264
        gas_used_delta = parent_gas_target - parent_gas_used
265
266
        parent_fee_gas_delta = parent_base_fee_per_gas * gas_used_delta
267
        target_fee_gas_delta = parent_fee_gas_delta // parent_gas_target
268
269
        base_fee_per_gas_delta = (
270
            target_fee_gas_delta // BASE_FEE_MAX_CHANGE_DENOMINATOR
271
        )
272
273
        expected_base_fee_per_gas = (
274
            parent_base_fee_per_gas - base_fee_per_gas_delta
275
        )
276
277
    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:
281
    """
282
    Verifies a block header.
283
284
    In order to consider a block's header valid, the logic for the
285
    quantities in the header should match the logic for the block itself.
286
    For example the header timestamp should be greater than the block's parent
287
    timestamp because the block was created *after* the parent block.
288
    Additionally, the block's number should be directly following the parent
289
    block's number since it is the next block in the sequence.
290
291
    Parameters
292
    ----------
293
    chain :
294
        History and current state.
295
    header :
296
        Header to check for correctness.
297
298
    """
299
    if header.number < Uint(1):
300
        raise InvalidBlock
301
302
    parent_header = chain.blocks[-1].header
303
304
    if header.gas_used > header.gas_limit:
305
        raise InvalidBlock
306
307
    expected_base_fee_per_gas = calculate_base_fee_per_gas(
308
        header.gas_limit,
309
        parent_header.gas_limit,
310
        parent_header.gas_used,
311
        parent_header.base_fee_per_gas,
312
    )
313
    if expected_base_fee_per_gas != header.base_fee_per_gas:
314
        raise InvalidBlock
315
    if header.timestamp <= parent_header.timestamp:
316
        raise InvalidBlock
317
    if header.number != parent_header.number + Uint(1):
318
        raise InvalidBlock
319
    if len(header.extra_data) > 32:
320
        raise InvalidBlock
321
    if header.difficulty != 0:
322
        raise InvalidBlock
323
    if header.nonce != b"\x00\x00\x00\x00\x00\x00\x00\x00":
324
        raise InvalidBlock
325
    if header.ommers_hash != EMPTY_OMMER_HASH:
326
        raise InvalidBlock
327
328
    block_parent_hash = keccak256(rlp.encode(parent_header))
329
    if header.parent_hash != block_parent_hash:
330
        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.

Returns

sender_address : The sender of the transaction. effective_gas_price : The price to charge for gas when the transaction is executed.

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. PriorityFeeGreaterThanMaxFeeError : If the priority fee is greater than the maximum fee per gas. InsufficientMaxFeePerGasError : If the maximum fee per gas is insufficient for the transaction.

def check_transaction(block_env: ethereum.forks.paris.vm.BlockEnvironmentethereum.forks.shanghai.vm.BlockEnvironment, ​​block_output: ethereum.forks.paris.vm.BlockOutputethereum.forks.shanghai.vm.BlockOutput, ​​tx: Transaction) -> Tuple[Address, Uint]:
338
    """
339
    Check if the transaction is includable in the block.
340
341
    Parameters
342
    ----------
343
    block_env :
344
        The block scoped environment.
345
    block_output :
346
        The block output for the current block.
347
    tx :
348
        The transaction.
349
350
    Returns
351
    -------
352
    sender_address :
353
        The sender of the transaction.
354
    effective_gas_price :
355
        The price to charge for gas when the transaction is executed.
356
357
    Raises
358
    ------
359
    InvalidBlock :
360
        If the transaction is not includable.
361
    GasUsedExceedsLimitError :
362
        If the gas used by the transaction exceeds the block's gas limit.
363
    NonceMismatchError :
364
        If the nonce of the transaction is not equal to the sender's nonce.
365
    InsufficientBalanceError :
366
        If the sender's balance is not enough to pay for the transaction.
367
    InvalidSenderError :
368
        If the transaction is from an address that does not exist anymore.
369
    PriorityFeeGreaterThanMaxFeeError :
370
        If the priority fee is greater than the maximum fee per gas.
371
    InsufficientMaxFeePerGasError :
372
        If the maximum fee per gas is insufficient for the transaction.
373
374
    """
375
    gas_available = block_env.block_gas_limit - block_output.block_gas_used
376
    if tx.gas > gas_available:
377
        raise GasUsedExceedsLimitError("gas used exceeds limit")
378
    sender_address = recover_sender(block_env.chain_id, tx)
379
    sender_account = get_account(block_env.state, sender_address)
380
381
    if isinstance(tx, FeeMarketTransaction):
382
        if tx.max_fee_per_gas < tx.max_priority_fee_per_gas:
383
            raise PriorityFeeGreaterThanMaxFeeError(
384
                "priority fee greater than max fee"
385
            )
386
        if tx.max_fee_per_gas < block_env.base_fee_per_gas:
387
            raise InsufficientMaxFeePerGasError(
388
                tx.max_fee_per_gas, block_env.base_fee_per_gas
389
            )
390
391
        priority_fee_per_gas = min(
392
            tx.max_priority_fee_per_gas,
393
            tx.max_fee_per_gas - block_env.base_fee_per_gas,
394
        )
395
        effective_gas_price = priority_fee_per_gas + block_env.base_fee_per_gas
396
        max_gas_fee = tx.gas * tx.max_fee_per_gas
397
    else:
398
        if tx.gas_price < block_env.base_fee_per_gas:
399
            raise InvalidBlock
400
        effective_gas_price = tx.gas_price
401
        max_gas_fee = tx.gas * tx.gas_price
402
403
    if sender_account.nonce > Uint(tx.nonce):
404
        raise NonceMismatchError("nonce too low")
405
    elif sender_account.nonce < Uint(tx.nonce):
406
        raise NonceMismatchError("nonce too high")
407
    if Uint(sender_account.balance) < max_gas_fee + Uint(tx.value):
408
        raise InsufficientBalanceError("insufficient sender balance")
409
    if sender_account.code:
410
        raise InvalidSenderError("not EOA")
411
412
    return sender_address, effective_gas_price

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:
421
    """
422
    Make the receipt for a transaction that was executed.
423
424
    Parameters
425
    ----------
426
    tx :
427
        The executed transaction.
428
    error :
429
        Error in the top level frame of the transaction, if any.
430
    cumulative_gas_used :
431
        The total gas used so far in the block after the transaction was
432
        executed.
433
    logs :
434
        The logs produced by the transaction.
435
436
    Returns
437
    -------
438
    receipt :
439
        The receipt for the transaction.
440
441
    """
442
    receipt = Receipt(
443
        succeeded=error is None,
444
        cumulative_gas_used=cumulative_gas_used,
445
        bloom=logs_bloom(logs),
446
        logs=logs,
447
    )
448
449
    return encode_receipt(tx, receipt)

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. block_output : The block output for the current block. 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.paris.vm.BlockEnvironmentethereum.forks.shanghai.vm.BlockEnvironment, ​​transactions: Tuple[LegacyTransaction | Bytes, ...], ​​withdrawals: Tuple[Withdrawal, ...]) -> ethereum.forks.paris.vm.BlockOutputethereum.forks.shanghai.vm.BlockOutput:
457
    """
458
    Executes a block.
459
460
    Many of the contents of a block are stored in data structures called
461
    tries. There is a transactions trie which is similar to a ledger of the
462
    transactions stored in the current block. There is also a receipts trie
463
    which stores the results of executing a transaction, like the post state
464
    and gas used. This function creates and executes the block that is to be
465
    added to the chain.
466
467
    Parameters
468
    ----------
469
    block_env :
470
        The block scoped environment.
471
    block_output :
472
        The block output for the current block.
473
    transactions :
474
        Transactions included in the block.
475
    withdrawals :
476
        Withdrawals to be processed in the current block.
477
478
    Returns
479
    -------
480
    block_output :
481
        The block output for the current block.
482
483
    """
484
    block_output = vm.BlockOutput()
485
486
    for i, tx in enumerate(map(decode_transaction, transactions)):
487
        process_transaction(block_env, block_output, tx, Uint(i))
488
489
    process_withdrawals(block_env, block_output, withdrawals)
490
491
    return block_output

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.paris.vm.BlockEnvironmentethereum.forks.shanghai.vm.BlockEnvironment, ​​block_output: ethereum.forks.paris.vm.BlockOutputethereum.forks.shanghai.vm.BlockOutput, ​​tx: Transaction, ​​index: Uint) -> None:
500
    """
501
    Execute a transaction against the provided environment.
502
503
    This function processes the actions needed to execute a transaction.
504
    It decrements the sender's account balance after calculating the gas fee
505
    and refunds them the proper amount after execution. Calling contracts,
506
    deploying code, and incrementing nonces are all examples of actions that
507
    happen within this function or from a call made within this function.
508
509
    Accounts that are marked for deletion are processed and destroyed after
510
    execution.
511
512
    Parameters
513
    ----------
514
    block_env :
515
        Environment for the Ethereum Virtual Machine.
516
    block_output :
517
        The block output for the current block.
518
    tx :
519
        Transaction to execute.
520
    index:
521
        Index of the transaction in the block.
522
523
    """
524
    trie_set(
525
        block_output.transactions_trie,
526
        rlp.encode(index),
527
        encode_transaction(tx),
528
    )
529
530
    intrinsic_gas = validate_transaction(tx)
531
532
    (
533
        sender,
534
        effective_gas_price,
535
    ) = check_transaction(
536
        block_env=block_env,
537
        block_output=block_output,
538
        tx=tx,
539
    )
540
541
    sender_account = get_account(block_env.state, sender)
542
543
    effective_gas_fee = tx.gas * effective_gas_price
544
545
    gas = tx.gas - intrinsic_gas
546
    increment_nonce(block_env.state, sender)
547
548
    sender_balance_after_gas_fee = (
549
        Uint(sender_account.balance) - effective_gas_fee
550
    )
551
    set_account_balance(
552
        block_env.state, sender, U256(sender_balance_after_gas_fee)
553
    )
554
555
    access_list_addresses = set()
556
    access_list_storage_keys = set()
557
    access_list_addresses.add(block_env.coinbase)
558
    if isinstance(tx, (AccessListTransaction, FeeMarketTransaction)):
559
        for access in tx.access_list:
560
            access_list_addresses.add(access.account)
561
            for slot in access.slots:
562
                access_list_storage_keys.add((access.account, slot))
563
564
    tx_env = vm.TransactionEnvironment(
565
        origin=sender,
566
        gas_price=effective_gas_price,
567
        gas=gas,
568
        access_list_addresses=access_list_addresses,
569
        access_list_storage_keys=access_list_storage_keys,
570
        index_in_block=index,
571
        tx_hash=get_transaction_hash(encode_transaction(tx)),
572
    )
573
574
    message = prepare_message(block_env, tx_env, tx)
575
576
    tx_output = process_message_call(message)
577
578
    tx_gas_used_before_refund = tx.gas - tx_output.gas_left
579
    tx_gas_refund = min(
580
        tx_gas_used_before_refund // Uint(5), Uint(tx_output.refund_counter)
581
    )
582
    tx_gas_used_after_refund = tx_gas_used_before_refund - tx_gas_refund
583
    tx_gas_left = tx.gas - tx_gas_used_after_refund
584
    gas_refund_amount = tx_gas_left * effective_gas_price
585
586
    # For non-1559 transactions effective_gas_price == tx.gas_price
587
    priority_fee_per_gas = effective_gas_price - block_env.base_fee_per_gas
588
    transaction_fee = tx_gas_used_after_refund * priority_fee_per_gas
589
590
    # refund gas
591
    sender_balance_after_refund = get_account(
592
        block_env.state, sender
593
    ).balance + U256(gas_refund_amount)
594
    set_account_balance(block_env.state, sender, sender_balance_after_refund)
595
596
    # transfer miner fees
597
    coinbase_balance_after_mining_fee = get_account(
598
        block_env.state, block_env.coinbase
599
    ).balance + U256(transaction_fee)
600
    set_account_balance(
601
        block_env.state,
602
        block_env.coinbase,
603
        coinbase_balance_after_mining_fee,
604
    )
605
606
    for address in tx_output.accounts_to_delete:
607
        destroy_account(block_env.state, address)
608
609
    block_output.block_gas_used += tx_gas_used_after_refund
610
611
    receipt = make_receipt(
612
        tx, tx_output.error, block_output.block_gas_used, tx_output.logs
613
    )
614
615
    receipt_key = rlp.encode(Uint(index))
616
    block_output.receipt_keys += (receipt_key,)
617
618
    trie_set(
619
        block_output.receipts_trie,
620
        receipt_key,
621
        receipt,
622
    )
623
624
    block_output.block_logs += tx_output.logs

process_withdrawals

Increase the balance of the withdrawing account.

def process_withdrawals(block_env: ethereum.forks.shanghai.vm.BlockEnvironment, ​​block_output: ethereum.forks.shanghai.vm.BlockOutput, ​​withdrawals: Tuple[Withdrawal, ...]) -> None:
632
    """
633
    Increase the balance of the withdrawing account.
634
    """
635
636
    def increase_recipient_balance(recipient: Account) -> None:
637
        recipient.balance += wd.amount * U256(10**9)
638
639
    for i, wd in enumerate(withdrawals):
640
        trie_set(
641
            block_output.withdrawals_trie,
642
            rlp.encode(Uint(i)),
643
            rlp.encode(wd),
644
        )
645
646
        modify_state(block_env.state, wd.address, increase_recipient_balance)

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 GAS_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 GAS_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:
650
    """
651
    Validates the gas limit for a block.
652
653
    The bounds of the gas limit, ``max_adjustment_delta``, is set as the
654
    quotient of the parent block's gas limit and the
655
    ``GAS_LIMIT_ADJUSTMENT_FACTOR``. Therefore, if the gas limit that is
656
    passed through as a parameter is greater than or equal to the *sum* of
657
    the parent's gas and the adjustment delta then the limit for gas is too
658
    high and fails this function's check. Similarly, if the limit is less
659
    than or equal to the *difference* of the parent's gas and the adjustment
660
    delta *or* the predefined ``GAS_LIMIT_MINIMUM`` then this function's
661
    check fails because the gas limit doesn't allow for a sufficient or
662
    reasonable amount of gas to be used on a block.
663
664
    Parameters
665
    ----------
666
    gas_limit :
667
        Gas limit to validate.
668
669
    parent_gas_limit :
670
        Gas limit of the parent block.
671
672
    Returns
673
    -------
674
    check : `bool`
675
        True if gas limit constraints are satisfied, False otherwise.
676
677
    """
678
    max_adjustment_delta = parent_gas_limit // GAS_LIMIT_ADJUSTMENT_FACTOR
679
    if gas_limit >= parent_gas_limit + max_adjustment_delta:
680
        return False
681
    if gas_limit <= parent_gas_limit - max_adjustment_delta:
682
        return False
683
    if gas_limit < GAS_LIMIT_MINIMUM:
684
        return False
685
686
    return True