tempo_chainspec/lib.rs
1//! Tempo chainspec implementation.
2
3#![cfg_attr(not(feature = "std"), no_std)]
4#![cfg_attr(all(not(test), feature = "reth"), warn(unused_crate_dependencies))]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7#[cfg(feature = "reth")]
8extern crate alloc;
9
10#[cfg(feature = "reth")]
11mod bootnodes;
12#[cfg(feature = "reth")]
13mod network_identity;
14#[cfg(feature = "reth")]
15pub mod spec;
16#[cfg(feature = "reth")]
17pub use network_identity::NetworkIdentity;
18#[cfg(feature = "reth")]
19pub use spec::TempoChainSpec;
20
21pub mod constants;
22pub mod hardfork;