miraland_program/stake/mod.rs
1//! The [stake native program][np].
2//!
3//! [np]: https://docs.solana.com/developing/runtime-facilities/sysvars#stakehistory
4
5#[allow(deprecated)]
6pub mod config;
7pub mod instruction;
8pub mod stake_flags;
9pub mod state;
10pub mod tools;
11
12mod deprecated;
13pub use deprecated::*;
14
15pub mod program {
16 crate::declare_id!("Stake11111111111111111111111111111111111111");
17}
18
19/// The minimum number of epochs before stake account that is delegated to a delinquent vote
20/// account may be unstaked with `StakeInstruction::DeactivateDelinquent`
21pub const MINIMUM_DELINQUENT_EPOCHS_FOR_DEACTIVATION: usize = 5;