1
2
3
4
5
6
7
8
9
10
11
pub fn devnet_chainspec() -> &'static [u8] {
    include_bytes!("devnet_chainspec.json")
}

pub fn local_chainspec() -> &'static [u8] {
    include_bytes!("local_chainspec.json")
}

pub fn mainnet_chainspec() -> &'static [u8] {
    include_bytes!("mainnet_chainspec.json")
}