Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the type for blob_gas_used #1161

Merged
merged 2 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ethereum/cancun/fork.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02"
)
SYSTEM_TRANSACTION_GAS = Uint(30000000)
MAX_BLOB_GAS_PER_BLOCK = Uint(786432)
MAX_BLOB_GAS_PER_BLOCK = U64(786432)
VERSIONED_HASH_VERSION_KZG = b"\x01"


Expand Down Expand Up @@ -350,7 +350,7 @@ def check_transaction(
block_env: vm.BlockEnvironment,
block_output: vm.BlockOutput,
tx: Transaction,
) -> Tuple[Address, Uint, Tuple[VersionedHash, ...], Uint]:
) -> Tuple[Address, Uint, Tuple[VersionedHash, ...], U64]:
"""
Check if the transaction is includable in the block.

Expand Down Expand Up @@ -423,7 +423,7 @@ def check_transaction(
if Uint(tx.max_fee_per_blob_gas) < blob_gas_price:
raise InvalidBlock

max_gas_fee += calculate_total_blob_gas(tx) * Uint(
max_gas_fee += Uint(calculate_total_blob_gas(tx)) * Uint(
tx.max_fee_per_blob_gas
)
blob_versioned_hashes = tx.blob_versioned_hashes
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/cancun/vm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class BlockOutput:
block.
withdrawals_trie : `ethereum.fork_types.Root`
Trie root of all the withdrawals in the block.
blob_gas_used : `ethereum.base_types.Uint`
blob_gas_used : `ethereum.base_types.U64`
Total blob gas used in the block.
"""

Expand All @@ -84,7 +84,7 @@ class BlockOutput:
withdrawals_trie: Trie[Bytes, Optional[Union[Bytes, Withdrawal]]] = field(
default_factory=lambda: Trie(secured=False, default=None)
)
blob_gas_used: Uint = Uint(0)
blob_gas_used: U64 = U64(0)


@dataclass
Expand Down
10 changes: 5 additions & 5 deletions src/ethereum/cancun/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
GAS_POINT_EVALUATION = Uint(50000)

TARGET_BLOB_GAS_PER_BLOCK = U64(393216)
GAS_PER_BLOB = Uint(2**17)
GAS_PER_BLOB = U64(2**17)
MIN_BLOB_GASPRICE = Uint(1)
BLOB_BASE_FEE_UPDATE_FRACTION = Uint(3338477)

Expand Down Expand Up @@ -300,7 +300,7 @@ def calculate_excess_blob_gas(parent_header: Header) -> U64:
return parent_blob_gas - TARGET_BLOB_GAS_PER_BLOCK


def calculate_total_blob_gas(tx: Transaction) -> Uint:
def calculate_total_blob_gas(tx: Transaction) -> U64:
"""
Calculate the total blob gas for a transaction.

Expand All @@ -315,9 +315,9 @@ def calculate_total_blob_gas(tx: Transaction) -> Uint:
The total blob gas for the transaction.
"""
if isinstance(tx, BlobTransaction):
return GAS_PER_BLOB * Uint(len(tx.blob_versioned_hashes))
return GAS_PER_BLOB * U64(len(tx.blob_versioned_hashes))
else:
return Uint(0)
return U64(0)


def calculate_blob_gas_price(excess_blob_gas: U64) -> Uint:
Expand Down Expand Up @@ -357,6 +357,6 @@ def calculate_data_fee(excess_blob_gas: U64, tx: Transaction) -> Uint:
data_fee: `Uint`
The blob data fee.
"""
return calculate_total_blob_gas(tx) * calculate_blob_gas_price(
return Uint(calculate_total_blob_gas(tx)) * calculate_blob_gas_price(
excess_blob_gas
)
6 changes: 3 additions & 3 deletions src/ethereum/prague/fork.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02"
)
SYSTEM_TRANSACTION_GAS = Uint(30000000)
MAX_BLOB_GAS_PER_BLOCK = Uint(1179648)
MAX_BLOB_GAS_PER_BLOCK = U64(1179648)
VERSIONED_HASH_VERSION_KZG = b"\x01"

WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS = hex_to_address(
Expand Down Expand Up @@ -373,7 +373,7 @@ def check_transaction(
block_env: vm.BlockEnvironment,
block_output: vm.BlockOutput,
tx: Transaction,
) -> Tuple[Address, Uint, Tuple[VersionedHash, ...], Uint]:
) -> Tuple[Address, Uint, Tuple[VersionedHash, ...], U64]:
"""
Check if the transaction is includable in the block.

Expand Down Expand Up @@ -446,7 +446,7 @@ def check_transaction(
if Uint(tx.max_fee_per_blob_gas) < blob_gas_price:
raise InvalidBlock

max_gas_fee += calculate_total_blob_gas(tx) * Uint(
max_gas_fee += Uint(calculate_total_blob_gas(tx)) * Uint(
tx.max_fee_per_blob_gas
)
blob_versioned_hashes = tx.blob_versioned_hashes
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/prague/vm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class BlockOutput:
block.
withdrawals_trie : `ethereum.fork_types.Root`
Trie root of all the withdrawals in the block.
blob_gas_used : `ethereum.base_types.Uint`
blob_gas_used : `ethereum.base_types.U64`
Total blob gas used in the block.
requests : `Bytes`
Hash of all the requests in the block.
Expand All @@ -86,7 +86,7 @@ class BlockOutput:
withdrawals_trie: Trie[Bytes, Optional[Union[Bytes, Withdrawal]]] = field(
default_factory=lambda: Trie(secured=False, default=None)
)
blob_gas_used: Uint = Uint(0)
blob_gas_used: U64 = U64(0)
deposit_requests: Bytes = Bytes(b"")
requests: List[Bytes] = field(default_factory=list)

Expand Down
10 changes: 5 additions & 5 deletions src/ethereum/prague/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
GAS_POINT_EVALUATION = Uint(50000)

TARGET_BLOB_GAS_PER_BLOCK = U64(786432)
GAS_PER_BLOB = Uint(2**17)
GAS_PER_BLOB = U64(2**17)
MIN_BLOB_GASPRICE = Uint(1)
BLOB_BASE_FEE_UPDATE_FRACTION = Uint(5007716)

Expand Down Expand Up @@ -307,7 +307,7 @@ def calculate_excess_blob_gas(parent_header: Header) -> U64:
return parent_blob_gas - TARGET_BLOB_GAS_PER_BLOCK


def calculate_total_blob_gas(tx: Transaction) -> Uint:
def calculate_total_blob_gas(tx: Transaction) -> U64:
"""
Calculate the total blob gas for a transaction.

Expand All @@ -322,9 +322,9 @@ def calculate_total_blob_gas(tx: Transaction) -> Uint:
The total blob gas for the transaction.
"""
if isinstance(tx, BlobTransaction):
return GAS_PER_BLOB * Uint(len(tx.blob_versioned_hashes))
return GAS_PER_BLOB * U64(len(tx.blob_versioned_hashes))
else:
return Uint(0)
return U64(0)


def calculate_blob_gas_price(excess_blob_gas: U64) -> Uint:
Expand Down Expand Up @@ -364,6 +364,6 @@ def calculate_data_fee(excess_blob_gas: U64, tx: Transaction) -> Uint:
data_fee: `Uint`
The blob data fee.
"""
return calculate_total_blob_gas(tx) * calculate_blob_gas_price(
return Uint(calculate_total_blob_gas(tx)) * calculate_blob_gas_price(
excess_blob_gas
)
Loading