Skip to content

Commit 43c1406

Browse files
committed
feat: mainnet host (ethereum) genesis file
1 parent a275d7a commit 43c1406

File tree

2 files changed

+26726
-0
lines changed

2 files changed

+26726
-0
lines changed

crates/genesis/src/lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ use std::{borrow::Cow, path::PathBuf, str::FromStr, sync::LazyLock};
2121
/// Signet mainnet genesis file.
2222
pub const MAINNET_GENESIS_JSON: &str = include_str!("./mainnet.genesis.json");
2323

24+
/// Signet mainnet host genesis file.
25+
pub const MAINNET_HOST_GENESIS_JSON: &str = include_str!("./mainnet.host.genesis.json");
26+
2427
/// Pecorino genesis file.
2528
pub const PECORINO_GENESIS_JSON: &str = include_str!("./pecorino.genesis.json");
2629

@@ -35,6 +38,11 @@ pub static MAINNET_GENESIS: LazyLock<Genesis> = LazyLock::new(|| {
3538
serde_json::from_str(MAINNET_GENESIS_JSON).expect("Failed to parse mainnet genesis")
3639
});
3740

41+
/// Signet mainnet host genesis for the Signet mainnet.
42+
pub static MAINNET_HOST_GENESIS: LazyLock<Genesis> = LazyLock::new(|| {
43+
serde_json::from_str(MAINNET_HOST_GENESIS_JSON).expect("Failed to parse mainnet host genesis")
44+
});
45+
3846
/// Genesis for the Pecorino testnet.
3947
pub static PECORINO_GENESIS: LazyLock<Genesis> = LazyLock::new(|| {
4048
serde_json::from_str(PECORINO_GENESIS_JSON).expect("Failed to parse pecorino genesis")

0 commit comments

Comments
 (0)