apl_token/native_mint.rs
1//! The Mint that represents the native token
2
3/// There are `10^9` lamports in one SOL
4pub const DECIMALS: u8 = 9;
5
6use crate::Pubkey;
7
8/// The Mint that represents the native token
9pub fn id() -> Pubkey {
10 Pubkey::from_slice(b"AplNative11111111111111111111111")
11}
12
13/// The Mint that represents the native token
14pub const ID: Pubkey = Pubkey::new_from_array(*b"AplNative11111111111111111111111");