ghost-eye/src/types/mod.rs
Uncle Stretch 5db96fa8f1
fix for the slashing spans calculation during withdrawals
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2025-09-29 17:27:01 +03:00

25 lines
566 B
Rust

mod era;
mod extrinsics;
mod log;
mod account;
mod peer;
mod session;
mod nominator;
mod staking;
mod networks;
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;
pub use nominator::Nominations;
pub use staking::UnlockChunk;
pub use staking::RewardDestination;
pub use staking::SlashingSpan;
pub use networks::Gatekeeper;
pub use networks::BlockRange;