native_mint.rs 234 B

1234567
  1. //! The Mint that represents the native token
  2. /// There are `10^9` lamports in one SOL
  3. pub const DECIMALS: u8 = 9;
  4. // The Mint for native SOL Token accounts
  5. solana_pubkey::declare_id!("So11111111111111111111111111111111111111112");