Skip to content

Commit 54db85a

Browse files
authored
feat(primitives): Add Base Mainnet Ecotone fork time (#6806)
1 parent ce28fe3 commit 54db85a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

crates/primitives/src/chain/spec.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,11 @@ pub static BASE_MAINNET: Lazy<Arc<ChainSpec>> = Lazy::new(|| {
422422
genesis_hash: Some(b256!(
423423
"f712aa9241cc24369b143cf6dce85f0902a9731e70d66818a3a5845b296c73dd"
424424
)),
425-
fork_timestamps: ForkTimestamps::default().shanghai(1704992401).canyon(1704992401),
425+
fork_timestamps: ForkTimestamps::default()
426+
.shanghai(1704992401)
427+
.canyon(1704992401)
428+
.cancun(1710374401)
429+
.ecotone(1710374401),
426430
paris_block_and_final_difficulty: Some((0, U256::from(0))),
427431
hardforks: BTreeMap::from([
428432
(Hardfork::Frontier, ForkCondition::Block(0)),
@@ -446,6 +450,7 @@ pub static BASE_MAINNET: Lazy<Arc<ChainSpec>> = Lazy::new(|| {
446450
(Hardfork::Regolith, ForkCondition::Timestamp(0)),
447451
(Hardfork::Shanghai, ForkCondition::Timestamp(1704992401)),
448452
(Hardfork::Canyon, ForkCondition::Timestamp(1704992401)),
453+
(Hardfork::Ecotone, ForkCondition::Timestamp(1710374401)),
449454
]),
450455
base_fee_params: BaseFeeParamsKind::Variable(
451456
vec![

0 commit comments

Comments
 (0)