light_token/
constants.rs

1use solana_pubkey::Pubkey;
2
3pub const SPL_TOKEN_PROGRAM_ID: Pubkey =
4    Pubkey::new_from_array(light_token_types::SPL_TOKEN_PROGRAM_ID);
5
6pub const SPL_TOKEN_2022_PROGRAM_ID: Pubkey =
7    Pubkey::new_from_array(light_token_types::SPL_TOKEN_2022_PROGRAM_ID);
8
9pub const LIGHT_SYSTEM_PROGRAM_ID: Pubkey =
10    Pubkey::new_from_array(light_token_types::LIGHT_SYSTEM_PROGRAM_ID);
11
12pub const ACCOUNT_COMPRESSION_PROGRAM_ID: Pubkey =
13    Pubkey::new_from_array(light_token_types::ACCOUNT_COMPRESSION_PROGRAM_ID);
14
15pub const ACCOUNT_COMPRESSION_AUTHORITY_PDA: Pubkey =
16    Pubkey::new_from_array(light_token_types::ACCOUNT_COMPRESSION_AUTHORITY_PDA);
17
18pub const NOOP_PROGRAM_ID: Pubkey = Pubkey::new_from_array(light_token_types::NOOP_PROGRAM_ID);
19
20pub const CPI_AUTHORITY_PDA: Pubkey = Pubkey::new_from_array(light_token_types::CPI_AUTHORITY_PDA);
21
22pub const LIGHT_TOKEN_PROGRAM_ID: Pubkey = Pubkey::new_from_array(light_token_types::PROGRAM_ID);