solana_runtime/
static_ids.rs

1use {
2    solana_inline_spl::{associated_token_account, token, token_2022},
3    solana_pubkey::Pubkey,
4};
5
6lazy_static! {
7    /// Vector of static token & mint IDs
8    pub static ref STATIC_IDS: Vec<Pubkey> = vec![
9        associated_token_account::id(),
10        associated_token_account::program_v1_1_0::id(),
11        token::id(),
12        token::native_mint::id(),
13        token_2022::id(),
14    ];
15}