spherenet_program_whitelist_interface/
ids.rs1pub(crate) const PROGRAM_WHITELIST_PROGRAM_ID: &str = "PwL1111111111111111111111111111111111111111";
5
6pub const PROGRAM_WHITELIST_SEED: &[u8] = b"000000000038250e";
8pub(crate) const PROGRAM_WHITELIST_ACCOUNT_ID: &str = "PwLEsb9Yng69Kxxt4hYyhZ3JAyePgWaWtpBLXvsEgiL";
9
10pub mod program {
12 pinocchio_pubkey::declare_id!(crate::ids::PROGRAM_WHITELIST_PROGRAM_ID);
13}
14
15pub mod account {
17 pinocchio_pubkey::declare_id!(crate::ids::PROGRAM_WHITELIST_ACCOUNT_ID);
18}
19
20#[cfg(feature = "solana-p")]
24pub mod program_solana {
25 solana_program::declare_id!(crate::ids::PROGRAM_WHITELIST_PROGRAM_ID);
26}
27
28#[cfg(feature = "solana-p")]
30pub mod account_solana {
31 solana_program::declare_id!(crate::ids::PROGRAM_WHITELIST_ACCOUNT_ID);
32}