Skip to content

Commit 7d840a8

Browse files
committed
chore: set nv25 upgrade epoch for mainnet
1 parent 945fe89 commit 7d840a8

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2594,7 +2594,7 @@
25942594
"network": {
25952595
"type": "mainnet"
25962596
},
2597-
"version": "v16.0.0-rc3",
2597+
"version": "v16.0.0",
25982598
"bundle_cid": "bafy2bzaceaj3s3rrfbibikplap264uw74qor5yl35mqwokv4lwst4plpwry36",
25992599
"manifest": {
26002600
"actors": [

src/networks/actors_bundle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ pub static ACTOR_BUNDLES: Lazy<Box<[ActorBundleInfo]>> = Lazy::new(|| {
100100
"bafy2bzacecdhvfmtirtojwhw2tyciu4jkbpsbk5g53oe24br27oy62sn4dc4e" @ "v13.0.0" for "mainnet",
101101
"bafy2bzacecbueuzsropvqawsri27owo7isa5gp2qtluhrfsto2qg7wpgxnkba" @ "v14.0.0" for "mainnet",
102102
"bafy2bzaceakwje2hyinucrhgtsfo44p54iw4g6otbv5ghov65vajhxgntr53u" @ "v15.0.0" for "mainnet",
103-
"bafy2bzaceaj3s3rrfbibikplap264uw74qor5yl35mqwokv4lwst4plpwry36" @ "v16.0.0-rc3" for "mainnet",
103+
"bafy2bzaceaj3s3rrfbibikplap264uw74qor5yl35mqwokv4lwst4plpwry36" @ "v16.0.0" for "mainnet",
104104
])
105105
});
106106

src/networks/mainnet/mod.rs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
use crate::{
55
eth::EthChainId,
66
make_height,
7-
shim::{clock::ChainEpoch, version::NetworkVersion},
7+
shim::{
8+
clock::{ChainEpoch, EPOCHS_IN_DAY},
9+
version::NetworkVersion,
10+
},
811
};
912
use ahash::HashMap;
1013
use cid::Cid;
@@ -75,9 +78,11 @@ pub static HEIGHT_INFOS: Lazy<HashMap<Height, HeightInfo>> = Lazy::new(|| {
7578
make_height!(Waffle, 4_154_640, get_bundle_cid("v14.0.0")),
7679
// Wed 20 Nov 23:00:00 UTC 2024
7780
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),
8186
])
8287
});
8388

src/networks/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ impl ChainConfig {
275275
f3_bootstrap_epoch: -1,
276276
f3_initial_power_table: None,
277277
f3_contract_address: Some(
278-
EthAddress::from_str("0x476AC9256b9921C9C6a0fC237B7fE05fe9874F50")
278+
EthAddress::from_str("0xA19080A1Bcb82Bb61bcb9691EC94653Eb5315716")
279279
.expect("invalid f3 contract eth address"),
280280
),
281281
f3_contract_poll_interval: DEFAULT_F3_CONTRACT_POLL_INTERVAL,

0 commit comments

Comments
 (0)