Skip to content

Commit 34e1ab4

Browse files
fix(op-base): update DynamicBaseFee params after SystemConfig update (#1241)
1 parent d2ae650 commit 34e1ab4

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.changeset/angry-pigs-film.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@nomicfoundation/edr": patch
3+
---
4+
5+
Updated base mainnet eip1559 parameters after SystemConfig update on 2025-12-18

crates/edr_op/src/hardfork/base.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ pub(crate) static MAINNET_BASE_FEE_PARAMS: LazyLock<BaseFeeParams<OpSpecId>> =
3737
BaseFeeActivation::BlockNumber(38_088_319),
3838
ConstantBaseFeeParams::new(50, 5),
3939
),
40+
(
41+
BaseFeeActivation::BlockNumber(39_647_879),
42+
ConstantBaseFeeParams::new(50, 6),
43+
),
4044
]))
4145
});
4246

crates/edr_op/tests/integration/dynamic_base_fee_params.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ impl_test_dynamic_base_fee_params! {
7575
37_483_302,
7676
38_088_319,
7777
38_951_425, // jovian activated block
78+
39_647_879, // SystemConfig EIP-1559 update 2025-12-18
7879
],
7980
op_sepolia: op::sepolia_url() => [
8081
26_806_602,

0 commit comments

Comments
 (0)