Skip to content

Commit 1fc039a

Browse files
committed
chore(testnet): add configuration for testnet-2
1 parent 2b0ac96 commit 1fc039a

4 files changed

Lines changed: 624 additions & 13 deletions

File tree

config/src/defaults.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -548,20 +548,20 @@ impl Defaults for Testnet {
548548
/// First superblocks signing committee
549549
fn consensus_constants_bootstrapping_committee(&self) -> Vec<String> {
550550
vec![
551-
"twit1f0am8c97q2ygkz3q6jyd2x29s8zaxqlxcqltxx".to_string(),
552-
"twit1pc8jzqph4t0md02e6fgwgsw26yll20p98c3pgh".to_string(),
553-
"twit1mseplfttj5vvm8r7d5pn5je9dd02el4hw4w4cp".to_string(),
554-
"twit1najvm34rta4vnkpfax8kk0vhpntg5lgdz8wc33".to_string(),
551+
"twit164wvguueu2uuf8ernlw7d40fjalg4njqdzzxyx".to_string(),
552+
"twit1la2gphmexpqx5r5kx957632j9ryzudwvlwqslj".to_string(),
553+
"twit1nfnfj9t6farlsxxlr7egechguxvje9qlu263w4".to_string(),
554+
"twit1kk29qm846g96xze9hurhra7rfak3s997fxdq0g".to_string(),
555555
]
556556
}
557557

558558
fn consensus_constants_checkpoint_zero_timestamp(&self) -> i64 {
559-
// Thursday, 29-Jan-2025, 20:00 UTC
560-
1_738_180_800
559+
// Tuesday, 08-Jul-2025, 19:00 UTC
560+
1_752_001_200
561561
}
562562

563563
fn consensus_constants_genesis_hash(&self) -> Hash {
564-
"5aaafb853ce897c1431ee5babc5533650d37c4fab44045bde9c74a3fff8c080e"
564+
"1eed88826bdaf4b1f222bf19c0ebd372d2f6a6af2f23430fc22ee0d0911d8db0"
565565
.parse()
566566
.unwrap()
567567
}
@@ -573,8 +573,8 @@ impl Defaults for Testnet {
573573
fn protocol_versions(&self) -> HashMap<ProtocolVersion, (Epoch, u16)> {
574574
[
575575
(ProtocolVersion::V1_7, (0, 45)),
576-
(ProtocolVersion::V1_8, (101, 45)),
577-
(ProtocolVersion::V2_0, (281, 20)),
576+
(ProtocolVersion::V1_8, (15, 45)),
577+
(ProtocolVersion::V2_0, (45, 20)),
578578
]
579579
.into_iter()
580580
.collect()

data_structures/src/superblock.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ const WIT2_BOOTSTRAP_COMMITTEE: [&str; 12] = [
3939

4040
/// Committee for superblock indices during the bootstrapping of wit/2
4141
const WIT2_BOOTSTRAP_COMMITTEE_TEST: [&str; 4] = [
42-
"twit1f0am8c97q2ygkz3q6jyd2x29s8zaxqlxcqltxx",
43-
"twit1pc8jzqph4t0md02e6fgwgsw26yll20p98c3pgh",
44-
"twit1mseplfttj5vvm8r7d5pn5je9dd02el4hw4w4cp",
45-
"twit1najvm34rta4vnkpfax8kk0vhpntg5lgdz8wc33",
42+
"twit164wvguueu2uuf8ernlw7d40fjalg4njqdzzxyx",
43+
"twit1la2gphmexpqx5r5kx957632j9ryzudwvlwqslj",
44+
"twit1nfnfj9t6farlsxxlr7egechguxvje9qlu263w4",
45+
"twit1kk29qm846g96xze9hurhra7rfak3s997fxdq0g",
4646
];
4747

4848
/// Possible result of SuperBlockState::add_vote

0 commit comments

Comments
 (0)