Wednesday, September 16, 2026

Creating liberating content

CoinEx quits after 9...

Crypto exchange CoinEx is shutting down after nine years, citing shrinking revenue and...

Bitcoin, BTC-Related Stocks Tumble...

Bitcoin’s price tumbled — along with crypto-related stocks — following the blockage of...

Bitcoin Core v32 RC1:...

Bitcoin Core v32.0rc1 has turned the Sept. 14–Oct. 10 window into a concentrated...

AI Could Be Bitcoin’s...

Artificial intelligence may turn out to be an unexpected driver of...

Solana v1 can halt RPC readers and break fee caps

Solana’s v1 transaction format promises more than three times as much room per transaction, but RPC clients, indexers, relayers and fee sponsors that are not ready for it can fail in two very different ways: some systems stop, while others keep running with the wrong resource limits.

Solana’s live upgrade page still lists v1 as not activated on mainnet as of Sept. 4. Testnet is active and devnet is live in epoch 1140. A Solana changelog published Aug. 28 said v1 transactions were “coming soon,” leaving infrastructure operators a pre-activation window to update.

V1 raises the maximum payload from 1,232 bytes to 4,096 bytes, about a 3.3-fold increase. Legacy and v0 transactions keep their existing limits and behavior, so users and applications that continue using those formats do not need to migrate.

Related Reading

Solana’s Agave 4.2 activation target arrives with mainnet feature gates still pending

RPC consumers must pass the integer maxSupportedTransactionVersion: 1 when using getTransaction, getBlock or blockSubscribe. Without that opt-in, a v1 getTransaction request returns error -32015, one v1 transaction makes getBlock fail for the entire block, and blockSubscribe emits block: null and stops advancing at the first affected slot.

Read More:  Circle’s Noble exit puts $92 million of USDC on a four-month clock

The parameter only tells the RPC service the highest format the client can decode. It does not request v1 data or change how legacy and v0 transactions are returned.

Related Reading

Solana takes its first step toward sub-second speed by cutting block confirmation times across the network

Other failures are quieter. V1 moves compute-unit limits, loaded-account data limits and priority fees into a transactionConfig object instead of ComputeBudget instructions. An indexer that keeps scanning those instructions will report a zero compute budget for every v1 transaction without raising an error.