What Is Solana Rent and Why Is Your SOL Locked?
Updated · 5 min read
Every account on Solana has to hold a minimum SOL balance so validators can keep its data in memory. This minimum is called the rent-exempt deposit. It is not a fee: the SOL is still yours, it is just parked inside the account. When the account is closed, the deposit goes back to the wallet you choose.
How Solana rent works
Solana stores the state of every account on validators. To stop the network from filling up with abandoned data, each account must hold enough lamports to be rent-exempt. The required amount grows with the size of the account in bytes.
A standard SPL token account is 165 bytes. At the current network rent rate its rent-exempt minimum is 0.00148844 SOL. Accounts opened before Solana lowered its rent rate keep the deposit they were funded with, typically 0.00203928 SOL. Token-2022 accounts that use extensions are larger, so they lock more.
Why so many wallets have locked SOL
Every time you receive or buy a new token, your wallet gets a new associated token account (ATA) for that mint, and the rent deposit is paid from your SOL balance. When you later sell or transfer the full balance, the token disappears from your wallet view, but the empty account and its deposit usually stay behind.
Active traders, especially memecoin and pump.fun traders, can collect hundreds of these empty accounts. At roughly 0.0015 to 0.002 SOL each, 100 empty accounts hold about 0.15 to 0.2 SOL, and 500 hold about 0.75 to 1 SOL.
How to get the deposit back
An empty token account can be closed with the CloseAccount instruction of the SPL Token program. Closing deletes the account and sends its lamports to a destination you specify, normally your own wallet. Only the account owner can sign this instruction, and it fails if the account still holds tokens.
You can close accounts one by one with the Solana CLI, or scan your wallet and close them in batches with a tool like RecycleTokens.
Check your wallet for locked SOL
Scan any Solana address for empty token accounts and see exactly how much rent you can reclaim. Free to check, non-custodial to close.
Frequently asked questions
Is Solana rent a fee I have already lost?
No. Rent-exempt deposits are refundable. The SOL stays in the account and returns to you when the account is closed.
How much SOL is locked in one token account?
A new standard SPL token account holds 0.00148844 SOL at the current rent rate; older accounts usually hold 0.00203928 SOL. Token-2022 accounts with extensions hold more. The scanner always shows the exact amount.
Does closing an account delete my tokens?
Only empty accounts can be closed. If an account still holds tokens, the close instruction fails, so no tokens can be lost this way.
