alloy_hardforks/arbitrum/
mainnet.rs

1//! Arbitrum One hardfork starting points
2
3/// Shanghai arbitrum hard fork activation block is 184097479.
4pub const ARBITRUM_ONE_SHANGHAI_BLOCK: u64 = 184_097_479;
5/// Cancun arbitrum hard fork activation block is 190301729.
6pub const ARBITRUM_ONE_CANCUN_BLOCK: u64 = 190_301_729;
7/// Paris arbitrum hard fork activation timestamp is 1622240000.
8pub const ARBITRUM_ONE_PARIS_TIMESTAMP: u64 = 1_622_240_000;
9/// Shanghai arbitrum hard fork activation timestamp is 1708804873.
10pub const ARBITRUM_ONE_SHANGHAI_TIMESTAMP: u64 = 1_708_804_873;
11/// Cancun arbitrum hard fork activation timestamp is 1710424089.
12pub const ARBITRUM_ONE_CANCUN_TIMESTAMP: u64 = 1_710_424_089;