use ;
/// The authority allowed to initialize the program.
pub const INITIALIZER_ADDRESS: Pubkey = pubkey!;
/// The seed of the boost PDA.
pub const BOOST: & = b"boost";
/// The seed of the config PDA.
pub const CONFIG: & = b"config";
/// The seed of the stake PDA.
pub const STAKE: & = b"stake";
/// Denominator for basis point calculations.
pub const DENOMINATOR_BPS: u64 = 10_000;
/// The duration of a boost rotation in seconds.
pub const ROTATION_DURATION: i64 = 90;