Skip to content

Commit fe5f52c

Browse files
committed
set galileo timestamps
1 parent 3b9da22 commit fe5f52c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

crates/scroll/alloy/hardforks/src/hardfork.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ impl ScrollHardfork {
4141
(Self::Euclid, ForkCondition::Timestamp(1744815600)),
4242
(Self::EuclidV2, ForkCondition::Timestamp(1745305200)),
4343
(Self::Feynman, ForkCondition::Timestamp(1755576000)),
44-
(Self::Galileo, ForkCondition::Timestamp(u64::MAX)),
44+
(Self::Galileo, ForkCondition::Timestamp(1762506265)),
45+
// TODO: update GalileoV2 timestamp when devnet is prepared
4546
(Self::GalileoV2, ForkCondition::Timestamp(u64::MAX)),
4647
]
4748
}

crates/scroll/hardforks/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ pub static SCROLL_MAINNET_HARDFORKS: LazyLock<ChainHardforks> = LazyLock::new(||
4040
(ScrollHardfork::Euclid.boxed(), ForkCondition::Timestamp(1744815600)),
4141
(ScrollHardfork::EuclidV2.boxed(), ForkCondition::Timestamp(1745305200)),
4242
(ScrollHardfork::Feynman.boxed(), ForkCondition::Timestamp(1755576000)),
43-
(ScrollHardfork::Galileo.boxed(), ForkCondition::Timestamp(u64::MAX)),
43+
(ScrollHardfork::Galileo.boxed(), ForkCondition::Timestamp(1762506265)),
44+
// TODO: update GalileoV2 timestamp when devnet is prepared
4445
(ScrollHardfork::GalileoV2.boxed(), ForkCondition::Timestamp(u64::MAX)),
4546
])
4647
});

0 commit comments

Comments
 (0)