Token accounts and why they multiply
New Solana readers often expect one wallet address to hold one balance per token, similar to an account number at a bank. On Solana, tokens live in separate token accounts — and you may legitimately have more than one account for the same mint.
Mint vs token account
The mint defines the token type: decimals, total supply, and authorities. A token account holds a balance of exactly one mint. Your wallet address is neither; it is the owner authority over token accounts. Explorers list token accounts as rows with their own public keys.
Associated token accounts
Most wallets create an associated token account (ATA) the first time you receive a mint. The address is derived deterministically from your wallet plus the mint, so wallets can find it again without storing a separate key. When an explorer labels an account "Associated," it is usually this pattern.
When duplicates appear
Non-ATA token accounts can be created intentionally — for example custodial setups, airdrop farming histories, or older integrations that predate ATA standards. Two accounts for the same mint mean two balances that must be summed for a total holdings figure.
Reading a transfer
A token transfer instruction lists source token account, destination token account, mint, and amount. If the destination ATA does not exist yet, the transaction may include a create instruction that costs additional rent-exempt lamports. Watch for that create step or you will wonder why the fee payer lost more SOL than the network fee.
Closing accounts
Empty token accounts can be closed to reclaim rent-exempt lamports. Explorers show closure as a separate instruction. After closure, the account key disappears from active lists but remains in historical transactions.
Checklist for your wallet
- Open your wallet address on an explorer.
- Filter token accounts by one mint you hold.
- Count rows — more than one means sum balances manually.
- Note which row your wallet software uses for sends.
See also: mint, token account, rent exemption.