All articles
solanainfrastructureconsensusrpcaidepinvalidators

The future of Solana: what's actually being built and why it matters

Alpenglow rewrites consensus. Firedancer brings a second validator client. RPC 2.0 decouples reads from the validator. AI agents are making Solana their payment rail. Here's what's shipping, what's coming, and what it means for builders.

Share

Solana has spent six years proving one thing: that raw throughput matters. 50,000 TPS (theoretical), 400ms slot times, sub-cent fees — the bet was that hardware would catch up to the ambition. It did. Now the upgrades arriving in 2026 and beyond are about something different: depth. Not faster slots — better finality, better reads, better privacy, better clients. The protocol is maturing.

This is a map of what's actually being built, what's shipped, what's in testing, and what's still on the whiteboard.

1. Alpenglow: the biggest consensus change in Solana's history

Proof of History was Solana's founding idea — a cryptographic clock baked into the chain to sequence events without coordination overhead. It worked. It also produced ~12.8-second finality, because TowerBFT needed enough voting rounds to make finalization safe.

Alpenglow retires both. SIMD-0326 passed governance in early 2026 with ~98% yes and 52% of stake voting — an overwhelming mandate. The replacement is two components:

  • Votor — replaces TowerBFT. Two concurrent finalization paths: a fast path at ≥80% stake (~100ms) and a slow path at ≥60% stake (~150ms). Whichever resolves first wins. The overlapping 60% threshold makes conflicting finality impossible.
  • Rotor — refines Turbine block propagation. A single relay layer with Reed–Solomon erasure coding instead of the multi-tier tree, with bandwidth proportional to stake.

The target is ~150ms finality — roughly 80× faster than the current ~12.8 seconds. Votes move off-chain (UDP broadcast aggregated into BLS certificates), which also eliminates the ~1 SOL/day in on-chain vote fees validators currently pay and drops the minimum profitable stake from ~4,850 SOL toward ~450 SOL.

Mainnet activation is targeted for late 2026. It's in validator testing now; that timeline has moved before. What matters is the direction: sub-200ms finality makes Solana behave like a database for most UX purposes, and the commitment-level ladder (processed → confirmed → finalized) largely collapses.

2. Firedancer: the second validator client

Solana's read-layer risk is well understood — but so is its validator-client risk. Until recently, Agave was the only production client. A bug in Agave could halt the network.

Firedancer changes that. Jump Crypto's ground-up Solana client — written in C, not Rust — shares no codebase with Agave. An exploit that works against one doesn't work against the other. Firedancer is already live on Frankendancer (a hybrid that uses the Agave runtime with Firedancer's networking) and the full client is running on testnet.

Client diversity on the validator layer is what made Ethereum more resilient after the Merge. Solana is getting there. Sig (a third client in Go) is also in development, though earlier-stage.

3. RPC 2.0: reads leave the validator

The original RPC is bundled into the Agave validator. ~96% of node traffic is reads, but the validator was built for consensus, not as a database. The result: expensive to run, slow to query, and proprietary provider stacks filling the gap.

RPC 2.0, built by Triton with the Solana Foundation, Helius, Jupiter, and Anza, decouples reads entirely. Two modules shipped in June 2026:

  • Cloudbreak — indexed account reads on PostgreSQL. A query tracker monitors traffic and auto-builds an index when a filter pattern crosses a frequency threshold. getProgramAccounts averages 205ms vs ~2,488ms on Agave (P90: 278ms vs 6,583ms). Up to 20× faster. Self-hostable on commodity hardware for roughly 700 GB of storage at under $400/month.
  • Superbank — the full 400+ TB ledger in ClickHouse (sorted columnar + materialised views). getSignatureStatuses at p50: 38× faster (1,885ms → 49ms). getTransaction: 3.3× (460ms → 138ms). Every epoch from genesis at the same price — no premium for old data.

Both are AGPL-licensed. The neutral RPC organisation is managed by the Solana Foundation. This is to the read layer what Firedancer is to the write layer: open, modular, and not locked to a vendor.

4. The AI agent economy

"AI x crypto" spent most of 2024 and early 2025 as a meme. In 2026 something different is happening: actual autonomous agents, with actual wallets, executing actual on-chain operations — swaps, payments, claims, subscriptions. Solana is the dominant rail for this because fees are small enough that an agent can transact economically without human oversight.

The primitive layer that makes this possible:

  • Policy-gated agent wallets — Crossmint and Privy both offer server-side wallets with spending limits, whitelisted programs, and delegated signers. The LLM can sign without you trusting the LLM to be safe.
  • MCP servers — Solana RPC, Jupiter swaps, Helius parsed history, SNS lookups wrapped as MCP tools that any Claude-compatible agent can call. SendAI's Solana Agent Kit is the reference; Helius and Crossmint have their own.
  • HTTP-native payments — the x402 protocol lets an agent pay for an API call mid-HTTP-request, using USDC on Solana. No OAuth, no billing portal, no human in the loop.

What's credibly shipping: treasury rebalancers, swap agents, auto-claim bots, research agents that post on-chain summaries. What isn't: fully autonomous economic actors making large discretionary decisions. The infrastructure outpaced the applications; that gap is closing.

5. Payments and stablecoins

Solana is the highest-volume stablecoin chain by transfer count. USDC and PYUSD dominate; new entrants (PayPal, Stripe, institutional issuers) keep choosing Solana for consumer payments because settlement is cheap and fast enough that it doesn't need a separate layer-2.

The payment infrastructure is maturing around it: Solana Pay provides a standard QR-code and link protocol; Solana Actions and Blinks bring payment UIs into any web context without a wallet download; x402 and OTL are building the plumbing for machine-to-machine payments. The stablecoin layer is no longer experimental — it's infrastructure.

6. DePIN: physical networks settling on-chain

DePIN (Decentralised Physical Infrastructure Networks) is Solana's strongest differentiated use case versus Ethereum. Helium (wireless), Hivemapper (mapping), Render (GPU compute), io.net, NATIX — real-world hardware rewarded in tokens, with settlement on Solana.

The reason they chose Solana isn't ideological — it's economic. Rewarding a sensor for a 3-cent data reading requires sub-cent fees. Ethereum can't do that without a rollup. Solana does it natively. As DePIN networks scale from thousands to millions of devices, that fee difference compounds.

7. Privacy: from optional to practical

Confidential compute has moved from research to production on Solana in 2025–2026. Three distinct approaches are shipping:

None of these are interchangeable — they solve different threat models. But the arc is clear: privacy is becoming a property you can select, not a separate chain you migrate to.

8. Post-quantum cryptography

NIST's 2024 standards (ML-KEM, ML-DSA, SLH-DSA — FIPS 203/204/205) give Solana a target to migrate toward. The quantum threat to ed25519 is not imminent — current estimates put cryptographically-relevant quantum computers at 10–15 years away, and existing signatures are only vulnerable to a "harvest now, decrypt later" attack.

But key infrastructure takes years to migrate. The SIMDs and research are already in progress; expect post-quantum signature support to land as an optional extension well before it becomes urgent.

9. Developer experience: from rough to competitive

Solana's developer experience was its worst reputation problem for years. That's changed materially. The current stack:

  • Frameworks Anchor, Pinocchio, and Steel cover the safety-vs-performance spectrum. Anchor is the default for new projects; Pinocchio is the choice for performance-critical programs.
  • TypeScript clients Solana Kit (formerly web3.js v2), gill — modern, tree-shakeable, typed. No reason to use the old web3.js for new projects.
  • Client generation Codama generates typed TypeScript (and Rust) clients from your IDL, eliminating the manual ABI glue layer.
  • Local testing LiteSVM and Surfpool give you fast local environments and mainnet forks without spinning up a full validator.
  • AI-native tooling Solana's new builder CLI scaffolds projects with LLM-aware context built in. The barrier to entry for a first Solana program is now hours, not weeks.

What to watch

The open questions that will define the next two years:

  1. Alpenglow mainnet activation. 150ms finality changes what you can build (synchronous multi-step UX, on-chain games, real-time settlement). The timeline matters.
  2. Firedancer mainnet adoption. The client is ready in testing. How fast validators migrate from Frankendancer to full Firedancer determines how quickly the network gets genuine client diversity.
  3. RPC 2.0 operator adoption. Cloudbreak and Superbank are AGPL and self-hostable. Whether the ecosystem converges on an open read layer or continues to fragment across proprietary provider stacks depends on how many operators deploy it.
  4. Agentic payment volume. x402 and OTL are live but the application layer is nascent. If even a small fraction of AI API calls begin flowing through on-chain micropayments, stablecoin volume on Solana inflects sharply.
  5. Privacy as a default. Confidential Transfers are in the token standard; they're not widely used yet. Enterprise and institutional adoption of Solana likely requires privacy-by-default — watch compliance tooling (viewing keys, auditor roles) as the enabler.

The honest view

Solana is past the point where its future is in doubt. The question now is execution: can Alpenglow ship on time without a consensus regression? Can Firedancer reach 20% of stake? Will RPC 2.0 actually reduce operator costs or add operational complexity?

These are the kinds of problems a mature protocol has — not "does this thing work" but "can the ecosystem coordinate to upgrade it." The governance and tooling to do that exist now. The track record since 2023 is that upgrades ship, outages have become rarer, and the developer base keeps compounding. The future of Solana is less about the protocol proving itself and more about the ecosystem of builders deciding what to do with it.

Further reading on devrels

Keep reading

The future of Solana: what's actually being built and why it matters | devrels.xyz