solana_runtime/
static_ids.rs

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