Tokensspl-token
SPL Token Program
Also known asSPL Token
The original Solana Program Library token program (TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA) that implements fungible and non-fungible token operations. It manages mints (token definitions) and token accounts (balances). Core instructions include InitializeMint, MintTo, Transfer, Burn, Approve (delegation), and Revoke. All SPL tokens on mainnet before Token-2022 use this program.
Related terms
3Tokens
Mint
An on-chain account defining a token type. A mint specifies: supply (total minted), decimals (0 for NFTs, 6 for USDC, 9...
Tokens
Token Account
An account that holds a balance of a specific token for a specific owner. Token accounts store: mint (which token), owne...
Tokens
Solana Program Library (SPL)
Solana Program Library—a collection of on-chain programs and client libraries maintained by Solana Labs. Key SPL program...