Skip to content

Commit 6cf5107

Browse files
authored
eip-7918: update blob_base_cost (#1915)
1 parent 9b30723 commit 6cf5107

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Users can select any of the artifacts depending on their testing needs for their
127127
- ✨ Introduce blockchain tests for benchmark to cover the scenario of pure ether transfers [#1742](https://github.com/ethereum/execution-spec-tests/pull/1742).
128128
-[EIP-7934](https://eips.ethereum.org/EIPS/eip-7934): Add test cases for the block RLP max limit of 10MiB ([#1730](https://github.com/ethereum/execution-spec-tests/pull/1730)).
129129
-[EIP-7939](https://eips.ethereum.org/EIPS/eip-7939) Add count leading zeros (CLZ) opcode tests for Osaka ([#1733](https://github.com/ethereum/execution-spec-tests/pull/1733)).
130-
-[EIP-7918](https://eips.ethereum.org/EIPS/eip-7918): Blob base fee bounded by execution cost test cases (initial), includes some adjustments to [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) tests ([#1685](https://github.com/ethereum/execution-spec-tests/pull/1685)).
130+
-[EIP-7918](https://eips.ethereum.org/EIPS/eip-7918): Blob base fee bounded by execution cost test cases (initial), includes some adjustments to [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) tests ([#1685](https://github.com/ethereum/execution-spec-tests/pull/1685)). Update the blob_base_cost ([#1915](https://github.com/ethereum/EIPs/pull/1915)).
131131

132132
## [v4.5.0](https://github.com/ethereum/execution-spec-tests/releases/tag/v4.5.0) - 2025-05-14
133133

src/ethereum_test_forks/forks/forks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,7 @@ def excess_blob_gas_calculator(
14791479
blob_gas_per_blob = cls.blob_gas_per_blob(block_number, timestamp)
14801480
target_blob_gas_per_block = target_blobs_per_block * blob_gas_per_blob
14811481
max_blobs_per_block = cls.max_blobs_per_block(block_number, timestamp)
1482-
blob_base_cost = 2**14 # EIP-7918 new parameter
1482+
blob_base_cost = 2**13 # EIP-7918 new parameter
14831483

14841484
def fn(
14851485
*,

0 commit comments

Comments
 (0)