File tree 1 file changed +6
-1
lines changed
crates/primitives/src/chain
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -422,7 +422,11 @@ pub static BASE_MAINNET: Lazy<Arc<ChainSpec>> = Lazy::new(|| {
422
422
genesis_hash : Some ( b256 ! (
423
423
"f712aa9241cc24369b143cf6dce85f0902a9731e70d66818a3a5845b296c73dd"
424
424
) ) ,
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 ) ,
426
430
paris_block_and_final_difficulty : Some ( ( 0 , U256 :: from ( 0 ) ) ) ,
427
431
hardforks : BTreeMap :: from ( [
428
432
( Hardfork :: Frontier , ForkCondition :: Block ( 0 ) ) ,
@@ -446,6 +450,7 @@ pub static BASE_MAINNET: Lazy<Arc<ChainSpec>> = Lazy::new(|| {
446
450
( Hardfork :: Regolith , ForkCondition :: Timestamp ( 0 ) ) ,
447
451
( Hardfork :: Shanghai , ForkCondition :: Timestamp ( 1704992401 ) ) ,
448
452
( Hardfork :: Canyon , ForkCondition :: Timestamp ( 1704992401 ) ) ,
453
+ ( Hardfork :: Ecotone , ForkCondition :: Timestamp ( 1710374401 ) ) ,
449
454
] ) ,
450
455
base_fee_params : BaseFeeParamsKind :: Variable (
451
456
vec ! [
You can’t perform that action at this time.
0 commit comments