Skip to content

Commit

Permalink
Fix mainnet granite activation time (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
Inphi committed Aug 21, 2024
1 parent 819fa54 commit 42bd03b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions bindings/rust-bindings/etc/configs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
delta_time = 1708560000
ecotone_time = 1710374401
fjord_time = 1720627201
granite_time = 1725984001
granite_time = 1726070401
block_time = 2
seq_window_size = 3600
max_sequencer_drift = 600
Expand Down Expand Up @@ -84,7 +84,7 @@
delta_time = 1708560000
ecotone_time = 1710374401
fjord_time = 1720627201
granite_time = 1725984001
granite_time = 1726070401
block_time = 2
seq_window_size = 3600
max_sequencer_drift = 600
Expand Down Expand Up @@ -198,7 +198,7 @@
delta_time = 1708560000
ecotone_time = 1710374401
fjord_time = 1720627201
granite_time = 1725984001
granite_time = 1726070401
block_time = 2
seq_window_size = 3600
max_sequencer_drift = 600
Expand Down Expand Up @@ -257,7 +257,7 @@
delta_time = 0
ecotone_time = 0
fjord_time = 1720627201
granite_time = 1725984001
granite_time = 1726070401
block_time = 2
seq_window_size = 3600
max_sequencer_drift = 600
Expand Down Expand Up @@ -371,7 +371,7 @@
delta_time = 1708560000
ecotone_time = 1710374401
fjord_time = 1720627201
granite_time = 1725984001
granite_time = 1726070401
block_time = 2
seq_window_size = 3600
max_sequencer_drift = 600
Expand Down Expand Up @@ -430,7 +430,7 @@
delta_time = 1708560000
ecotone_time = 1710374401
fjord_time = 1720627201
granite_time = 1725984001
granite_time = 1726070401
block_time = 2
seq_window_size = 3600
max_sequencer_drift = 600
Expand Down Expand Up @@ -489,7 +489,7 @@
delta_time = 1708560000
ecotone_time = 1710374401
fjord_time = 1720627201
granite_time = 1725984001
granite_time = 1726070401
block_time = 2
seq_window_size = 3600
max_sequencer_drift = 600
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust-bindings/src/superchain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ mod tests {
delta_time: Some(1708560000),
ecotone_time: Some(1710374401),
fjord_time: Some(1720627201),
granite_time: Some(1725984001),
granite_time: Some(1726070401),
holocene_time: None,
},
alt_da: None,
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust-primitives/src/rollup_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ pub const OP_MAINNET_CONFIG: RollupConfig = RollupConfig {
delta_time: Some(1_708_560_000_u64),
ecotone_time: Some(1_710_374_401_u64),
fjord_time: Some(1_720_627_201_u64),
granite_time: Some(1_725_984_001_u64),
granite_time: Some(1_726_070_401_u64),
holocene_time: None,
batch_inbox_address: address!("ff00000000000000000000000000000000000010"),
deposit_contract_address: address!("beb5fc579115071764c7423a4f12edde41f106ed"),
Expand Down Expand Up @@ -459,7 +459,7 @@ pub const BASE_MAINNET_CONFIG: RollupConfig = RollupConfig {
delta_time: Some(1708560000),
ecotone_time: Some(1710374401),
fjord_time: Some(1720627201),
granite_time: Some(1_725_984_001_u64),
granite_time: Some(1_726_070_401_u64),
holocene_time: None,
batch_inbox_address: address!("ff00000000000000000000000000000000008453"),
deposit_contract_address: address!("49048044d57e1c92a77f79988d21fa8faf74e97e"),
Expand Down
2 changes: 1 addition & 1 deletion superchain/configs/mainnet/superchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ canyon_time = 1704992401 # Thu 11 Jan 2024 17:00:01 UTC
delta_time = 1708560000 # Thu 22 Feb 2024 00:00:00 UTC
ecotone_time = 1710374401 # Thu 14 Mar 2024 00:00:01 UTC
fjord_time = 1720627201 # Wed 10 Jul 2024 16:00:01 UTC
granite_time = 1725984001 # Tue 10 Sep 2024 16:00:01 UTC
granite_time = 1726070401 # Tue 11 Sep 2024 16:00:01 UTC

[l1]
chain_id = 1
Expand Down

0 comments on commit 42bd03b

Please sign in to comment.