spl_token_interface/
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
6// The Mint for native SOL Token accounts
7solana_pubkey::declare_id!("So11111111111111111111111111111111111111112");