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