Skip to main content

hotmint_staking/
lib.rs

1pub mod manager;
2pub mod rewards;
3pub mod store;
4pub mod types;
5
6pub use manager::StakingManager;
7pub use store::{InMemoryStakingStore, StakingStore};
8pub use types::{
9    SlashReason, SlashResult, StakeEntry, StakingConfig, UnbondingEntry, ValidatorState,
10};