Close Solana Buffer Accounts and Reclaim Locked SOL
Solana program deployments create temporary buffer accounts that lock significant SOL deposits. Unclaimed SOL finds and closes them for you.
What are Solana buffer accounts?
When a developer deploys or upgrades a Solana program, the BPF Loader creates a buffer account to temporarily hold the program binary. This buffer requires a rent-exempt SOL deposit proportional to the data size — often much larger than a token account's ~0.002 SOL.
After a successful deployment, the buffer is no longer needed. But Solana does not automatically close it. The SOL remains locked until the authority explicitly closes the buffer account.
Many developers accumulate multiple buffer accounts over time from repeated deployments, upgrades, and failed upload attempts. Each one holds recoverable SOL.
Why buffer accounts lock more SOL than token accounts
A standard SPL token account holds 165 bytes of data, requiring ~0.002 SOL in rent. A program buffer holds the entire program binary — which can be tens or hundreds of kilobytes. The rent-exempt deposit scales with data size:
- A 100 KB program buffer locks ~0.7 SOL
- A 500 KB program buffer locks ~3.5 SOL
- Multiple failed deploys can create multiple buffers, compounding the locked amount
For active developers, buffer accounts are often the single largest source of reclaimable SOL.
How Unclaimed SOL handles buffer accounts
- Scans your wallet for buffer accounts where you are the upgrade authority
- Shows the total reclaimable SOL from all eligible buffers
- You review the accounts and approve the close transaction
- Buffer accounts are closed via the BPF Loader, and SOL is returned to your wallet
Your deployed programs are not affected. Only unused buffer accounts are closed. Active programs continue to run normally.
Safety and trust
- CyberScope-audited smart contract
- Only closes buffers where you are the authority
- 10% fee on buffer account recoveries, shown before signing
- You sign every transaction with your own wallet
- No private keys or seed phrases ever requested
Check for reclaimable buffer accounts
Scan My WalletFree scan. No signup. You sign every transaction.