Reduced Rent
Updated September 2026 • Solana Foundation
"Rent" is a misleading name. Rent is not a fee. Rent is a fully refundable bond
that pays for the storage an account occupies on every validator. Solana
requires accounts to hold a minimum balance sized to their data, and when
that account is closed, the lamports are returned in full to whoever closes
it. SIMD-0437
reduces the constant behind that bond, lamports_per_byte, from 6,960 down to
696 — a 90% cut — rolled out in five separate feature-gated steps.
| Expected Mainnet Activation Date | Steps 1-2: September 2026; Steps 3-5: Agave 4.4 (November 2026) |
| Devnet Activation | August 2026 |
| Breaking Change? | No |
| Indexing Changes Required? | No, state growth is possible |
Technical Details
What Rent Actually Pays For
Every Solana account must hold enough lamports to cover the cost of storing the on-chain state for the account. This minimum balance is held against the account and returned when the account is closed. The intent is for a user to "rent" the storage space on chain. When the account is closed, validators no longer have to store that state, so the amount is refunded.
The Lamports-Per-Byte Constant
The minimum balance for an account is calculated as:
min_balance = (128 + data_size) * lamports_per_byte
The 128 is a fixed account storage overhead, and data_size is the size of
the account in bytes. lamports_per_byte was 6,960. The constant was set years
ago and never adjusted until the first rent-reduction step cut it to 6,333 at
the start of mainnet epoch 1028 on September 3 2026. Because rent was fixed in
lamports rather than tied to any actual validator storage cost, its real-world
cost has moved independently of what storage actually costs to provide.
Additionally, there has been concern that cheaper storage costs for accounts
would lead to a large demand spike in on-chain storage space.
Rent Case Study
Assuming a payments business wants to create one million token accounts for their users, the pre-reduction on-chain cost of rent would be one million accounts times $0.159 for an SPL token account rent deposit. So a business would have paid $159,000 before the rollout began. However, once all five rent-reduction feature gates are active on mainnet and assuming similar economics, the cost of an SPL token account's rent would be $0.0159, resulting in a total cost of $15,900. A reduction of this size could make it practical for many more businesses to cover rent on behalf of their users, making onboarding easier. The deposit math above comes from Rent Reduction on Solana: A Data-Backed Analysis, a Solana Foundation study of rent economics.
Five-Step Phased Rollout
To address concerns about a rapid spike in on-chain state, core developers
chose to roll out rent reduction in a five-step phased approach. Rather than cut
lamports_per_byte to 696 in one move, SIMD-0437 splits the
reduction across five independent feature gates. Each step activates
separately. Core developers will determine if they can proceed with the next
feature activation or if they need to gather more data on state demand.
| Feature Gate | SIMD | Reduction | Status |
|---|---|---|---|
4a6f7o7iTcA8hRDCrPLkSatnt5Ykxiu36wo5p1Tt12wC | SIMD-0437-1 | 6,960 → 6,333 (9%) | Live on Mainnet |
61BtM7BkDEE8Yq5fskEVAQT9mYA8qCejJWoLe5apqg81 | SIMD-0437-2 | 6,960 → 5,080 (27%) | Live on Testnet |
Ftxb3ZKq7aNqgxDBbP7EonvR2RszZk9ctjdsTX38kQaz | SIMD-0437-3 | 6,960 → 2,575 (63%) | Expected in Agave 4.4 |
GsUBNYNDPdMLHPD37TToHzrzcNcjpC9w5n1EcJk5iTaM | SIMD-0437-4 | 6,960 → 1,322 (81%) | Expected in Agave 4.4 |
mZdnRh9T2EbDNvqKjkCR3bvo5c816tJaojtE9Xs7iuY | SIMD-0437-5 | 6,960 → 696 (90%) | Expected in Agave 4.4 |
Each feature gate is independent. The activations can be put on hold if the data doesn't support moving forward.
Rollout Status
The rollout is underway:
- SIMD-0437-1 (6,960 → 6,333 lamports per byte) is active on mainnet as of September 3, 2026. This first 9% cut is already reflected in the minimum balance for new accounts.
- SIMD-0437-2 (6,960 → 5,080 lamports per byte) activates on testnet on September 3, 2026. Based on the feature-gate queue, mainnet activation is expected one to two weeks later, in mid-September 2026.
The remaining three steps, SIMD-0437-3 through SIMD-0437-5, are delayed until Agave 4.4, expected in November 2026. This means the full 90% reduction, and the $0.0159 SPL token account deposit that comes with it, won't land until late 2026. However, accounts will get 27% cheaper than their original rent levels in September.
Fallback Safeguard
A sixth feature gate exists specifically to reverse course: if a step causes
unexpected state growth or other issues, this fallback resets
lamports_per_byte back to 6,960, the original value, without disrupting
existing accounts. This is paired with
SIMD-0392,
which allows rent to be raised again later if empirical state growth turns
out to be a problem.
Umberto Natale, a data researcher at the Solana Foundation, has done an in-depth analysis of the potential state growth issue when rent is reduced by 90%. His model estimates that even after the full reduction, a state-bloat attack would still require roughly $17 million of locked capital to consume the network's current storage headroom. The data also shows most newly allocated account state is transient — in the cohort analyzed, 75.5% of account-creation events close within the same transaction — and net state growth is currently around 0.3 GB per day. His research suggests that the 90% reduction will not cause systemic risk to the cluster.
About This Upgrade
Solana will decrease rent by 90%. Cheaper rent means it costs less SOL to create token accounts, PDAs, and any other on-chain state. The rent amount is fully refundable but still has to be deposited up front. That's a real cost reduction for developers and users doing onboarding, minting, or account creation at scale.
This upgrade doesn't change what rent exemption means or how the bond mechanism works. The change only recalibrates the cost of rent, resulting in a 90% reduction in costs for end users and businesses.
Learn more: Solana Upgrades