solana_runtime/
static_ids.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use {
    solana_inline_spl::{associated_token_account, token, token_2022},
    solana_sdk::pubkey::Pubkey,
};

lazy_static! {
    /// Vector of static token & mint IDs
    pub static ref STATIC_IDS: Vec<Pubkey> = vec![
        associated_token_account::id(),
        associated_token_account::program_v1_1_0::id(),
        token::id(),
        token::native_mint::id(),
        token_2022::id(),
    ];
}