use crate::*;
use lazy_static::lazy_static;
use solana_program::pubkey::Pubkey;
#[allow(unused_imports)]
use std::str::FromStr;
pub const SWITCHBOARD_PROGRAM_ID: Pubkey = pubkey!("SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f");
#[cfg(not(feature = "pid_override"))]
lazy_static! {
pub static ref SWITCHBOARD_ON_DEMAND_PROGRAM_ID: Pubkey =
pubkey!("SBondMDrcV3K4kxZR1HNVT7osZxAHVHgYXL5Ze1oMUv");
}
#[cfg(feature = "pid_override")]
lazy_static! {
pub static ref SWITCHBOARD_ON_DEMAND_PROGRAM_ID: Pubkey =
Pubkey::from_str(&std::env::var("SWITCHBOARD_ON_DEMAND_PROGRAM_ID").unwrap()).unwrap();
}