- Every empty token account holds about 0.0019 SOL you can take back.
- You cannot lose an NFT doing this — Solana itself refuses to close an account that still holds anything.
- Wrapped SOL is counted separately. It is your own balance, not rent, and mixing the two would inflate the number.
- The check is read-only — paste any address, no wallet connection required.
What is rent on Solana?
Storing data on Solana isn't free. Every account has to hold a minimum balance — its rent-exempt deposit — or the network reclaims it. Crucially, this is a deposit, not a fee: it stays with the account, and whoever closes the account gets it back.
A token account is a fixed 165 bytes, which at today's rent rate works out to 1,855,569 lamports — a figure SIMD-0437 is stepping down, which is why the scan reads it from the chain instead of hardcoding it. Every NFT you have ever bought, minted or been airdropped created one of these in your wallet, funded by you.
Why you have empty accounts you didn't ask for
When an NFT leaves your wallet, the token account that held it does not leave with it. The balance drops to zero and the account stays — still holding your deposit. Sell fifty NFTs and you have fifty dead accounts holding roughly 0.09 SOL between them.
Nothing about this is visible in a normal wallet view, which is why the SOL goes unnoticed for years. It is not lost and it is not a bug — it is simply a deposit nobody told you to collect.
Can this destroy an NFT?
No — and the reason matters more than any promise a tool could make. The SPL Token program itself refuses to close an account that still holds a balance. An NFT sits in its account as a balance of 1, so a close instruction aimed at it fails atomically with error 0xb. The protection is in Solana, not in our filtering.
What a careless tool can get wrong is the total. Three cases look reclaimable and aren't: wrapped SOL (your own balance, and the one case that closes at any amount), withheld transfer fees on Token-2022 accounts (they read as empty but hold real tokens), and accounts whose close authority belongs to someone else. All three are separated out and shown with a reason rather than quietly dropped.
How much is it worth?
Per account the amount is small; the total is a function of how much you have traded. A wallet with 600 dead accounts is holding about 1.1 SOL. The largest wallets on Solana carry tens of thousands, worth well over 100 SOL. There is no way to know without looking — which takes a few seconds above.
FAQ
What is Solana rent and why can I get it back?
Every account on Solana must hold a minimum SOL balance to stay alive — its rent-exempt deposit. A token account currently costs 1,855,569 lamports (about 0.00186 SOL) — SIMD-0437 is stepping Solana's rent rate down over time, so the scan reads the live figure from the chain rather than assuming a fixed one. That SOL isn't a fee; it's a deposit held by the account. When you sell or burn an NFT the token account stays behind, empty but still holding your deposit. Closing it returns the full amount to you.
How much SOL can I actually recover?
It depends entirely on how much you've traded. Each dead account returns about 0.0019 SOL, so the total is really a count: a casual wallet might hold a handful, while an active trader or minter accumulates hundreds. Wallets with hundreds of accounts recovering 0.5–2 SOL are common, and the largest wallets on Solana hold tens of thousands of dead accounts worth well over 100 SOL.
Is it safe? Could I lose an NFT?
Closing an empty account cannot destroy an NFT, and this is enforced by Solana itself rather than by our checks. The SPL Token program refuses to close any account that still holds a balance — the transaction fails atomically with error 0xb. So if an account still contained an NFT, the close simply would not go through. The checker additionally excludes wrapped SOL, accounts holding withheld transfer fees, and accounts controlled by another address.
Why is wrapped SOL shown separately?
Because it isn't rent. A wrapped SOL account holds SOL you already own, and unlike other token accounts it can be closed at any balance — closing it returns your whole balance plus the rent. Adding that to a 'reclaimable rent' total would be misleading: a wallet with 8 SOL wrapped would appear to have 8 SOL of free rent when the real figure might be 1. It gets its own row and its own confirmation.
Do I need to connect my wallet to check?
No. The scan is read-only and works on any address you paste — you can check a wallet you don't own. A connection is only needed to actually close accounts, because only the wallet's owner can authorise that.
Does this only find rent?
No, and that is why the totals are shown separately. Two of the categories are genuinely reclaimable rent: dead token accounts and Tensor proof accounts, where closing the account returns a refundable deposit and nothing is given up. The rest is your own money sitting somewhere you forgot: SOL deposited into a Tensor margin account to bid with, SOL left in Magic Eden bidding escrow after a bid was cancelled, and wrapped SOL. Those were never rent, so they are never added to the rent figure — mixing them would badly overstate what is actually free to reclaim.
What are Tensor proof accounts?
Tensor's whitelist program creates MintProofV2 accounts to prove a mint belongs to a collection when bidding. Each locks about 0.0068 SOL. They're included in the scan, but be aware they are genuinely rare — only around 112 exist across all of Solana, held by a handful of bot wallets, so almost no ordinary trader will have any.