Skip to content

Commit f636225

Browse files
authored
feat: schedule GalileoV2 on Scroll Sepolia (#369)
1 parent 3b9da22 commit f636225

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl ScrollHardfork {
5858
(Self::EuclidV2, ForkCondition::Timestamp(1741852800)),
5959
(Self::Feynman, ForkCondition::Timestamp(1753167600)),
6060
(Self::Galileo, ForkCondition::Timestamp(1764054000)),
61-
(Self::GalileoV2, ForkCondition::Timestamp(u64::MAX)),
61+
(Self::GalileoV2, ForkCondition::Timestamp(1764831600)),
6262
]
6363
}
6464
}

crates/scroll/chainspec/src/lib.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,12 @@ mod tests {
715715
// Galileo
716716
(
717717
Head { number: 4740239, timestamp: 1764054000, ..Default::default() },
718-
ForkId { hash: ForkHash([0xe8, 0xc2, 0x20, 0x80]), next: u64::MAX },
718+
ForkId { hash: ForkHash([0xe8, 0xc2, 0x20, 0x80]), next: 1764831600 },
719+
),
720+
// GalileoV2
721+
(
722+
Head { number: 4740239, timestamp: 1764831600, ..Default::default() },
723+
ForkId { hash: ForkHash([0x48, 0xff, 0x11, 0x2e]), next: 0 },
719724
),
720725
],
721726
);

crates/scroll/hardforks/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub static SCROLL_SEPOLIA_HARDFORKS: LazyLock<ChainHardforks> = LazyLock::new(||
6767
(ScrollHardfork::EuclidV2.boxed(), ForkCondition::Timestamp(1741852800)),
6868
(ScrollHardfork::Feynman.boxed(), ForkCondition::Timestamp(1753167600)),
6969
(ScrollHardfork::Galileo.boxed(), ForkCondition::Timestamp(1764054000)),
70-
(ScrollHardfork::GalileoV2.boxed(), ForkCondition::Timestamp(u64::MAX)),
70+
(ScrollHardfork::GalileoV2.boxed(), ForkCondition::Timestamp(1764831600)),
7171
])
7272
});
7373

0 commit comments

Comments
 (0)