Wallet & Infrastructure

Rent Exempt (Solana)

A minimum SOL balance an account must maintain to stay active on Solana, avoiding periodic rent charges from the network.

Rent Exempt (Solana) — Rent-exempt is a status on the Solana blockchain indicating that an account holds enough SOL to cover its storage costs indefinitely. Solana charges rent for on-chain data storage, but accounts that maintain a minimum balance — roughly 0.00089 SOL per kilobyte — are exempt from ongoing rent deductions and persist permanently.

What Is Rent Exemption on Solana?

Solana's rent mechanism charges accounts for the space they occupy in the cluster's memory. Accounts that fall below the minimum balance are gradually debited each epoch and eventually purged. Rent-exempt accounts hold at least two years' worth of rent upfront, signaling to the runtime that they should never be garbage-collected.

The exact threshold depends on the account's data size. A standard token account (~165 bytes) requires approximately 0.00203 SOL. Larger program-derived addresses (PDAs) used by DeFi protocols need proportionally more.

Why Rent Exemption Matters for DeFi

Every token account, liquidity-pool vault, and program state account on Solana must be rent-exempt to function reliably. If a critical account loses its exemption and is purged, the associated token balances or protocol state disappear from the chain. Wallets and DEX interfaces automatically calculate the rent-exempt minimum when creating new accounts.

When using tools like OpenLiquid's volume bot on Solana, each new associated token account created during trading requires a small SOL deposit to meet rent exemption, which is factored into transaction costs.

Rent Exemption vs Ethereum Storage

Ethereum charges a one-time gas fee for writing storage slots but does not impose ongoing rent. Solana's rent model encourages developers to close unused accounts and reclaim SOL, reducing state bloat. This design keeps validator hardware requirements lower and contributes to Solana's high throughput.

Common questions about Rent Exempt (Solana) in cryptocurrency and DeFi.

The amount depends on the account's data size. A standard SPL token account requires about 0.00203 SOL. You can query the exact amount using the getMinimumBalanceForRentExemption RPC method.

The Solana runtime deducts rent each epoch. If the balance reaches zero, the account and its data are permanently deleted from the ledger. Most wallets prevent this by ensuring the rent-exempt minimum at account creation.

Yes. If you close an account — for example, closing an empty token account — the full rent-exempt deposit is returned to the owner's wallet. Many Solana wallets offer a 'close empty accounts' feature to reclaim these deposits.

Ready to put your knowledge into practice?

Start Boosting