2021-06-15 18:04:00 +02:00
|
|
|
pub mod config;
|
|
|
|
pub mod instruction;
|
|
|
|
pub mod state;
|
|
|
|
|
|
|
|
pub mod program {
|
|
|
|
crate::declare_id!("Stake11111111111111111111111111111111111111");
|
|
|
|
}
|
2022-02-22 09:21:23 -06:00
|
|
|
|
|
|
|
/// The minimum stake amount that can be delegated, in lamports.
|
|
|
|
/// NOTE: This is also used to calculate the minimum balance of a stake account, which is the
|
|
|
|
/// rent exempt reserve _plus_ the minimum stake delegation.
|
|
|
|
pub const MINIMUM_STAKE_DELEGATION: u64 = 1;
|