SPL Token Basics
SPL tokens are the standard token assets used on Solana. Bonkit relies on those token standards when users create a mint, manage supply, or distribute tokens through campaigns and batch sends.
Core Terms
| Term | What it means |
|---|---|
| Mint | The token definition itself |
| Mint address | The public address that identifies the token |
| Token account | The account that holds a balance of that token for a wallet |
| Authority | The wallet or address allowed to perform certain actions |
The Basic Model
At a high level:
token = mint + supply rules + authority rules + metadata
The mint defines the token, while token accounts hold balances.A wallet does not hold the mint itself. It holds token accounts associated with that mint.
You can think of a wallet balance as:
balance(wallet, mint) = sum of token accounts owned by wallet for that mintWhy This Matters in Bonkit
When you use Bonkit:
Create Tokencreates the mint and initial configurationMy Tokenshelps you discover or import existing mintsManage Tokenexposes supply, metadata, and control actionsCreate AirdropandMulti Senderuse the mint you selected for distribution
Authorities
Common authority concepts include:
- mint authority
- freeze authority
- metadata update authority
In practice, Bonkit only lets the connected wallet execute actions that its authorities allow.
Token Programs
You may see:
TokenToken-2022
The important user-level difference is that Token-2022 can support more advanced extensions and control patterns. If you do not need those features, a standard token may be simpler.
Official references:
Read Next
Last updated on