delegation_program_sdk/consts.rs
1use solana_program::pubkey;
2use solana_program::pubkey::Pubkey;
3
4/// The seed of the buffer account PDA.
5pub const BUFFER: &[u8] = b"buffer";
6
7/// The delegation program ID.
8pub const DELEGATION_PROGRAM_ID: Pubkey = pubkey!("DELeGGvXpWV2fqJUhqcF5ZSYMS4JTLjteaAMARRSaeSh");
9
10/// The magic program ID.
11pub const MAGIC_PROGRAM_ID: Pubkey = pubkey!("Magic11111111111111111111111111111111111111");