tendermint/
chain.rs

1//! Chain information types for Tendermint networks
2
3pub mod id;
4mod info;
5
6pub use self::{id::Id, info::Info};