alloy_hardforks/ethereum/
hoodi.rs

1//! Hoodi hardfork starting points
2
3/// Prague hoodi hard fork activation block is 60412.
4pub const HOODI_PRAGUE_BLOCK: u64 = 60412;
5
6/// Prague hoodi hard fork activation timestamp is 1742999832.
7pub const HOODI_PRAGUE_TIMESTAMP: u64 = 1_742_999_832;
8/// Osaka hoodi hard fork activation timestamp is 1761677592.
9pub const HOODI_OSAKA_TIMESTAMP: u64 = 1_761_677_592;
10
11/// BPO1 hardfork activation timestamp
12pub const HOODI_BPO1_TIMESTAMP: u64 = 1762365720;
13
14/// BPO2 hardfork activation timestamp
15pub const HOODI_BPO2_TIMESTAMP: u64 = 1762955544;