ghost-eye/src/types/mod.rs
Uncle Stretch 8f63c7483d
add parameter target to the log event on each page
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2025-01-24 15:55:47 +03:00

17 lines
350 B
Rust

mod era;
mod extrinsics;
mod log;
mod account;
mod peer;
mod session;
mod nominator;
pub use extrinsics::CasperExtrinsicDetails;
pub use era::{EraRewardPoints, EraInfo};
pub use log::ActionLevel;
pub use log::ActionTarget;
pub use account::SystemAccount;
pub use peer::PeerInformation;
pub use session::SessionKeyInfo;
pub use nominator::Nominator;