Short answer: Solana's Transaction V1 upgrade, scheduled for mainnet on September 9, 2026, raises the maximum size of a single transaction from 1,232 to 4,096 bytes, about 3.3 times more room. It does not make blocks bigger or fees lower on its own: it lets complex operations such as zero-knowledge proofs and large multisig actions fit into one atomic transaction. After ecosystem teams asked for more integration time, Anza moved activation back by six days, and the feature went live at the start of epoch 1035 on September 15.
What changed, and when?
The upgrade is defined by two Solana Improvement Documents: SIMD-0296 sets the new size limit, and SIMD-0385 introduces the v1 transaction format that uses it. The timeline, pieced together from Solana's official upgrade page and news reports:
- September 1 — V1 activates on testnet at epoch 1025, according to Cryptopolitan.
- Early September — September 9 is widely reported as the mainnet date.
- September 10 — Anza, the team behind the Agave validator client, postpones activation after several ecosystem teams request more time to test and integrate V1 support, PANews reported.
- September 15, about 01:00 UTC — the
txv1feature gate activates on mainnet at the start of epoch 1035.
No hard fork, chain split, token migration or downtime was involved. Older transaction formats keep working exactly as before.
| Legacy / v0 transactions | v1 transactions | |
|---|---|---|
| Maximum size | 1,232 bytes | 4,096 bytes |
| Accounts per transaction | Up to 64 | Up to 64 (unchanged) |
| Address lookup tables | Supported in v0 | Not supported; full 32-byte addresses are written inline |
| Compute limits and priority fee | Set by ComputeBudget instructions, fee in micro-lamports per compute unit | Set in a transaction config field, fee as an absolute lamport amount |
| Separate per-byte fee | No | No |
| Who needs to act | Nobody | Developers who want the extra space |
Why was the old limit 1,232 bytes?
The original cap came from Solana's early networking design: transactions had to fit into the minimum IPv6 packet size after overhead. Once the network moved to the QUIC protocol, that constraint no longer applied. The new ceiling of 4,096 bytes matches a single memory page on typical validator hardware, so a transaction never spans a page boundary, Cryptopolitan explained, adding that the figure was chosen after studying the sizes of Jito bundle submissions.
The practical gain is atomicity. Workloads that previously had to be split across several transactions, such as ZK proofs for confidential transfers, BLS signatures, large multisig setups used by DAOs and some cross-chain operations, can now succeed or fail as one unit. Solana co-founder Anatoly Yakovenko pointed to moving data atomically through two ZK roots in a single transaction as one example.
Does this make Solana faster or cheaper?
Not by itself. Reporting by 24/7 Wall St, carried by Yahoo Finance, stressed that users should not expect automatic fee reductions or faster confirmations from V1. The official upgrade page adds a nuance: larger transactions use more validator bandwidth, so the scheduler is expected to require higher priority fees for them. A plain SOL or USDC transfer is small and stays well below the old limit.
Where users may notice a difference is in complex actions. The upgrade page notes that some operations will need fewer signatures and one confirmation instead of several, which also means fewer half-finished multi-step flows.
V1 is also separate from Solana's other 2026 changes. Reports described a roughly 90% cut to rent, the balance accounts must hold to stay on-chain, in late August, and the Alpenglow consensus upgrade, which targets finality of around 150 milliseconds instead of about 12.8 seconds, with October 2026 as the tentative target.
What bigger transactions mean for SOL and USDC transfers and swaps
- You do not need to do anything. There is no token swap, claim or migration. Anyone asking you to "upgrade" or "migrate" your SOL or USDC for V1 is running a scam; see how to avoid crypto exchange scams.
- Simple transfers are unchanged. Sending SOL or USDC on Solana, or funding a swap from a Solana wallet, still uses legacy or v0 transactions with the same fee logic.
- Expect short-lived tooling glitches. RPC providers, explorers and indexers that have not upgraded cannot read v1 transactions and may return errors or show zero priority fees. If a deposit is not credited, check the transaction signature on an up-to-date explorer before assuming funds are lost, and give the service the signature.
- Check the network label when swapping. USDC on Solana is not interchangeable with USDC on other chains. Pick the exact network on both sides of the swap and compare the payout on the exchangers list.
- Choose the network by total cost. For small stablecoin amounts, low-fee networks such as Solana usually beat Ethereum mainnet; the full comparison is in the cheapest way to move crypto.
FAQ
Did Solana make its blocks three times bigger?
No. The upgrade raised the maximum size of a single transaction from 1,232 to 4,096 bytes, about 3.3 times more. The change applies to individual transactions, not to block size.
When did Solana Transaction V1 go live on mainnet?
It was scheduled for September 9, 2026, but Anza postponed it after ecosystem teams asked for more integration time. The feature activated at the start of epoch 1035 on September 15, 2026, at about 01:00 UTC.
Do I need to do anything with my SOL or USDC?
No. Balances, addresses and existing transaction formats are unchanged, and there is no migration. Treat any request to upgrade or migrate your tokens as a scam.
Are Solana fees lower after the upgrade?
Not because of V1. Ordinary transfers cost the same, and very large v1 transactions may need higher priority fees because they use more bandwidth. The main benefit is fitting complex operations into one transaction.
What is Alpenglow?
Alpenglow is a separate planned upgrade to Solana's consensus that targets finality of around 150 milliseconds instead of roughly 12.8 seconds. October 2026 was named as a tentative target.
Sources
- Solana: Larger Transaction Sizes
- crypto.news: Solana triples transaction capacity with v1 upgrade
- Yahoo Finance: Solana Activates Transaction V1 on September 9 With Alpenglow Following in October
- PANews: Solana Delays Transaction V1 Mainnet Activation to September 15
- Solana Compass: Transaction V1 (SIMD-0385) is live on Solana mainnet at epoch 1035
- Cryptopolitan: Solana sizes its new 4,096-byte transaction limit to one memory page