Skip to main content

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")]
13pub mod spec;
14#[cfg(feature = "reth")]
15pub use spec::TempoChainSpec;
16
17pub mod constants;
18pub mod hardfork;