Skip to content

Commit 1da1b6e

Browse files
committed
Add holocene timestamp to chainspecs
1 parent c79cc9a commit 1da1b6e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

crates/chainspec/src/fraxtal.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ pub(crate) static FRAXTAL_MAINNET: LazyLock<Arc<OpChainSpec>> = LazyLock::new(||
8181
OpHardfork::Granite.boxed(),
8282
ForkCondition::Timestamp(1738958401),
8383
),
84+
(
85+
OpHardfork::Holocene.boxed(),
86+
ForkCondition::Timestamp(1744052401),
87+
),
8488
]),
8589
base_fee_params: BaseFeeParamsKind::Variable(
8690
vec![

crates/chainspec/src/fraxtal_testnet.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ pub(crate) static FRAXTAL_TESTNET: LazyLock<Arc<OpChainSpec>> = LazyLock::new(||
8181
OpHardfork::Granite.boxed(),
8282
ForkCondition::Timestamp(1738191600),
8383
),
84+
(
85+
OpHardfork::Holocene.boxed(),
86+
ForkCondition::Timestamp(1742583600),
87+
),
8488
]),
8589
base_fee_params: BaseFeeParamsKind::Variable(
8690
vec![

0 commit comments

Comments
 (0)