alloy_hardforks/ethereum/holesky.rs
1//! Holesky hardfork starting points
2
3/// Paris holesky hard fork activation block is 6698.
4pub const HOLESKY_SHANGHAI_BLOCK: u64 = 6_698;
5/// Cancun holesky hard fork activation block is 894733.
6pub const HOLESKY_CANCUN_BLOCK: u64 = 894_733;
7/// Prague holesky hard fork activation block is 3419704.
8pub const HOLESKY_PRAGUE_BLOCK: u64 = 3_419_704;
9
10/// Paris holesky hard fork activation timestamp is 1695902100.
11pub const HOLESKY_PARIS_TIMESTAMP: u64 = 1_695_902_100;
12/// Sanghai holesky hard fork activation timestamp is 1696000704.
13pub const HOLESKY_SHANGHAI_TIMESTAMP: u64 = 1_696_000_704;
14/// Cancun holesky hard fork activation timestamp is 1707305664.
15pub const HOLESKY_CANCUN_TIMESTAMP: u64 = 1_707_305_664;
16/// Prague holesky hard fork activation timestamp is 1740434112.
17pub const HOLESKY_PRAGUE_TIMESTAMP: u64 = 1_740_434_112;