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