Solana has activated Transaction V1 on its mainnet, a protocol-level change that gives developers substantially more space per transaction and new options for composing complex on-chain operations. The feature went live at the start of epoch 1035, around 01:00 UTC on September 15, 2026, and is now available on mainnet, testnet, and devnet. The maximum serialized transaction size has increased from 1,232 bytes to 4,096 bytes, approximately 3.3 times more capacity, as specified in SIMD-0296, while the V1 Message Format follows SIMD-0385. The previous limit was tied to conservative network MTU constraints, and the change removes the hard limit on stream size in QUIC, enabling larger transactions.
The upgrade is particularly relevant for DeFi developers, wallet providers, indexers, RPC operators, tokenized asset projects, and payment solutions. With V1, more instructions and data can be included in a single transaction, preserving atomicity. Developers previously had to split operations into multiple transactions or use Jito bundles, but a bundle is not the same as a native transaction at protocol level. Now routing, proof checking, and batching can all succeed or fail together, potentially requiring fewer signatures and confirmations. Use cases include zero-knowledge proofs, large multisig operations, and BLS signatures.
V1 also changes resource management. Compute limit and priority fee settings move from ComputeBudget instructions to transaction settings, making them easier for infrastructure providers to access. Address Lookup Tables are removed from V1 transactions because account references are included inline, which simplifies parsing but increases size: an ALT index uses one byte, while an inline public key uses 32 bytes. Solana’s analysis found 62% of v0 transactions used at least one ALT, and dense transactions using more than one ALT could grow by over 1,500 bytes. The 64-account limit remains unchanged.
The launch comes as Solana expands its tokenized-finance footprint. DeFiLlama data shows total value locked near $5.95 billion and 24-hour decentralized exchange volume around $1.79 billion. The network has also reported more than $4 billion in real-world assets held across over 350,000 addresses, while xStocks has accumulated over $500 million in assets under management. However, Galaxy Research has noted that a large portion of Solana token value remains unused and competing platforms still lead in some fast-growing areas. V1 broadens what developers can build, but user adoption, liquidity, and transaction activity will determine its lasting impact.
Operators are advised to update infrastructure: RPC readers should set maxSupportedTransactionVersion: 1 for getTransaction and getBlock, indexers should read V1 compute limits and priority fees from transactionConfig, and validators/RPC operators should run Agave v4.2.2 or later. V1 senders should explicitly set compute and loaded-account limits and use base64 for transactions larger than 1,232 bytes, while wallet providers should confirm V1 parsing and signing before advertising support.