|
4 | 4 | use crate::{ |
5 | 5 | eth::EthChainId, |
6 | 6 | make_height, |
7 | | - shim::{clock::ChainEpoch, version::NetworkVersion}, |
| 7 | + shim::{ |
| 8 | + clock::{ChainEpoch, EPOCHS_IN_DAY}, |
| 9 | + version::NetworkVersion, |
| 10 | + }, |
8 | 11 | }; |
9 | 12 | use ahash::HashMap; |
10 | 13 | use cid::Cid; |
@@ -75,9 +78,11 @@ pub static HEIGHT_INFOS: Lazy<HashMap<Height, HeightInfo>> = Lazy::new(|| { |
75 | 78 | make_height!(Waffle, 4_154_640, get_bundle_cid("v14.0.0")), |
76 | 79 | // Wed 20 Nov 23:00:00 UTC 2024 |
77 | 80 | make_height!(TukTuk, 4_461_240, get_bundle_cid("v15.0.0")), |
78 | | - // TODO(forest): https://github.com/ChainSafe/forest/issues/5041 |
79 | | - make_height!(Teep, i64::MAX, get_bundle_cid("v16.0.0-rc3")), |
80 | | - make_height!(Tock, i64::MAX), |
| 81 | + // Thu 10 Apr 23:00:00 UTC 2025 |
| 82 | + make_height!(Teep, 4_867_320, get_bundle_cid("v16.0.0")), |
| 83 | + // This epoch, 90 days after Teep is the completion of FIP-0100 where actors will start applying |
| 84 | + // the new daily fee to pre-Teep sectors being extended. |
| 85 | + make_height!(Tock, 4_867_320 + EPOCHS_IN_DAY * 90), |
81 | 86 | ]) |
82 | 87 | }); |
83 | 88 |
|
|
0 commit comments