Skip to main content
Solana Qubits
Education

Education~13 min read

Alpenglow on Solana: What the New Consensus Design Changes

Intermediate · Guide · by Solana Qubits

A careful guide to Solana's Alpenglow consensus design: Votor, Rotor, finality, the 20+20 resilience model, stakeholder impact, rollout status, and the research-stage Quantumglow post-quantum adaptation.

In short

Alpenglow replaces Tower BFT voting and removes Proof of History from consensus. Votor (voting) comes first; Rotor (data distribution) is planned as a later phase under its own SIMD.

Numbers with labels

The ~150 ms median finality figure is a simulation-based design target from the official paper, not a measured mainnet guarantee.

Status matters

Approved by governance and running on a community test cluster; no confirmed mainnet activation date as of the status check below.

Rollout status — checked 2026-07-12

Confirmed: SIMD-0326 merged into the proposal repository (2025-09-09); community governance vote supported the proposal (98.27% of votes cast were yes, with 52% of total stake participating; concluded September 2025 — the vote did not itself activate anything); the initial change covers Votor while Turbine initially remains for data dissemination, with Rotor planned under a separate SIMD; Alpenglow running on a dedicated community test cluster announced by Anza since 2026-05-11, including a live "Alpenswitch" migration from Tower BFT; Agave v4.1.0 (2026-06-26) shipped readiness components such as BLS key registration (SIMD-0387).

Not yet confirmed: a mainnet activation date or epoch. The official Solana changelog states an expectation — Votor releasing starting with Agave v4.3, and the Alpenswitch migration expected on testnet in July 2026 and on mainnet in August 2026 — but that is an expectation, not a scheduled epoch or commitment. No official activation epoch existed as of the status date.

Rollout information changes. Verify the official Agave releases and the Anza blog before making operational decisions.

Block lifecycle at a glance

  1. 01Leaderbuilds the block, erasure-codes it into shreds
  2. 02Rotorstake-weighted relays broadcast shreds in one hop
  3. 03Validatorsreconstruct and validate the block
  4. 04Votordirect votes aggregate into BLS certificates
  5. 05Finalityone round at ≥80% stake, or two rounds at ≥60%

Simplified flow of one block under the full Alpenglow design; the fast and fallback voting paths run concurrently. In the phased rollout, Turbine initially performs the distribution step until Rotor ships under its own SIMD.

Alpenglow is a redesign of how Solana validators agree on which block is final. It was proposed by Anza, specified in SIMD-0326, approved by a community governance vote in 2025, and is now being tested by validators on a dedicated test cluster.

This guide explains what Alpenglow changes, how its two components — Votor and Rotor — work, what the finality numbers actually mean, what stays uncertain, and what the verified rollout status is as of the status-check date below. It is written for stakers, validator operators, developers, and technically curious readers.

One framing rule for the whole article: design targets, simulation results, testnet behavior, and mainnet reality are four different things. We label which one each number belongs to.

Why Solana is changing consensus

Solana today separates two ideas that users often mix up: a transaction can be processed and visible within a second or so (optimistic confirmation), but full consensus finality — the point where the network commits to a block so it cannot be rolled back — takes far longer, on the order of 12–13 seconds under the current design.

That gap matters. Exchanges, bridges, payment systems, and risk-sensitive applications wait for finality, not just confirmation. The Alpenglow paper argues that most of this delay is a protocol artifact rather than a physical necessity, and that a redesigned voting and data-distribution pipeline can finalize blocks at close to network latency.

There is also an operational motive. Today every validator publishes vote transactions on-chain, which consumes block space and imposes a continuous fee cost on validators. SIMD-0326 moves votes off-chain into direct validator-to-validator messages, which changes both the data flow and parts of validator economics.

The current design in plain language

Three legacy mechanisms are relevant background. Proof of History (PoH) is a cryptographic clock: a continuous hash chain that orders events and paces block production. Tower BFT is the current voting protocol, in which validators stack votes with growing lockouts until a block becomes rooted. Turbine is the block-propagation layer that splits blocks into erasure-coded pieces called shreds and fans them out through a tree of validators.

The Alpenglow design, as described by Anza, replaces Tower BFT and removes Proof of History from the consensus mechanism — the ledger still keeps its ordered block history — and pairs the new voting protocol with a flatter data-distribution design. The rollout is phased, though: SIMD-0326 states that Turbine initially remains the dissemination protocol, with Rotor to be introduced later under its own SIMD.

Votor: reaching agreement

Votor is Alpenglow's voting component. Instead of on-chain vote transactions, validators exchange votes directly as signed messages, and the results are aggregated with BLS signatures into compact certificates that prove how much stake voted for a block.

Its defining feature is two concurrent finalization paths. If at least 80% of stake votes for a block in the first round, the block is finalized immediately — one round, done. If participation is lower, a second round runs: with at least 60% of stake in each of two rounds, the block still finalizes. Both paths run at the same time, and whichever completes first wins.

  • Fast path: one voting round, requires ≥80% of stake responding.
  • Fallback path: two voting rounds, requires ≥60% of stake in each.
  • Certificates: aggregated BLS signatures that compactly prove the vote outcome.
  • Votes travel as direct validator messages, not as on-chain transactions.

The practical consequence: when the network is healthy and most stake is online, finality needs only a single round trip of votes. The slower path exists so that degraded participation slows finality instead of stopping it.

Rotor: distributing block data

Rotor answers a different question: how does a leader's block reach every validator quickly? Turbine solves this with a multi-layer tree, which means several network hops between the leader and the last validator. Rotor flattens this to a single relay layer.

The leader erasure-codes block data into shreds and sends each shred to a relay node; relays broadcast their piece to all validators. Relay selection is stake-weighted, and erasure coding means a validator can reconstruct the block without receiving every piece. Fewer hops means less accumulated latency and less dependence on any single intermediate node.

Timing matters here: Rotor is part of the published Alpenglow design, but it is not part of the initial consensus change. SIMD-0326 explicitly keeps Turbine as the dissemination protocol at first and defers Rotor to a separate, future SIMD.

How a block moves through Alpenglow

  1. The leader builds a block

    The slot leader assembles transactions and splits the block into erasure-coded shreds.

  2. Rotor distributes the data

    Each shred goes to a stake-weighted relay, and relays broadcast to all validators in one hop.

  3. Validators reconstruct and validate

    Validators rebuild the block from enough shreds and check it.

  4. Votor collects votes

    Validators send signed votes directly to each other; votes aggregate into BLS certificates.

  5. Finality

    One round with ≥80% stake, or two rounds with ≥60% each — whichever path completes first finalizes the block.

What faster finality does — and does not — mean

The number usually quoted is about 150 milliseconds median finality, sometimes approaching 100 ms. Its provenance matters: this is a simulation result published by Anza, computed over the current mainnet stake distribution and excluding computation overhead. It is a design target, not a measured mainnet guarantee.

If Alpenglow performs as specified, the biggest change is that true consensus finality would arrive at roughly the speed users today associate with optimistic confirmation. That would compress the waiting time for exchanges, bridges, and anything that requires finalized state.

Faster consensus finality does not automatically deliver faster wallet interfaces, faster RPC responses, faster indexing, higher throughput, lower fees, or zero downtime. Those depend on other parts of the stack. Treat any claim that Alpenglow alone makes Solana "N times faster" end-to-end with caution.

Resilience and failure conditions

Alpenglow's stated fault model is called "20+20": the protocol is designed to keep operating with up to 20% of stake behaving adversarially plus up to an additional 20% that is offline or unresponsive. This differs from the classic single one-third Byzantine threshold; it trades a lower adversarial bound for tolerance of a separate non-responsive share.

Under the protocol's stated assumptions, degraded participation pushes the network from the fast path to the slower two-round path before it threatens liveness. The formal safety and liveness arguments, including their network-timing assumptions, are laid out in the whitepaper — and like any consensus proofs, they hold within their model, not against every conceivable real-world failure.

What it means for users and stakers

For ordinary users, the intended visible change is that finalized state arrives much sooner, which matters most when moving value across exchanges and bridges. Day-to-day interactions that already rely on optimistic confirmation may feel similar.

For stakers, no action is required by the protocol change itself: delegation, stake accounts, activation, and cooldown continue to work through the same staking system. Alpenglow is a consensus change, not a staking-account change. As always, reward rates are variable, depend on many factors, and are not guaranteed — this article makes no reward or APY predictions.

What it means for validators

Validators are the group most directly affected. Votes leave the chain as direct validator messages — but that does not make voting free. SIMD-0326 replaces today's on-chain vote transaction fees with a Validator Admission Ticket (VAT), initially set at about 80% of the cost of today's vote fees (roughly 0.8 SOL per day at the proposal's own figures), alongside restructured vote-related rewards. Validator costs change in structure more than they disappear, and the net effect for any individual validator depends on final parameters and network conditions, so we do not repeat specific profitability estimates here.

Operationally, Alpenglow introduces BLS keys for voting. SIMD-0387 added BLS public-key registration to vote accounts, and the Agave v4.1.0 release (June 26, 2026) shipped this so validators can register keys ahead of activation while keeping their existing vote authority keys. Operators should follow official Anza release notes rather than third-party summaries for exact steps and timing.

Solana Qubits operates a mainnet validator and tracks this transition as part of normal operations. Nothing in this article implies privileged information about the rollout.

What it means for developers

Application code that reads confirmation levels is the main thing to review. Today, many applications distinguish "confirmed" from "finalized" and accept the long gap between them. If finality compresses to sub-second levels, some of that special-casing may simplify — but commitment-level semantics and RPC behavior during and after the transition should be verified against official documentation, not assumed.

Programs themselves (smart contracts) are not the target of this change: Alpenglow redesigns consensus underneath the runtime rather than the runtime interface. Still, anything sensitive to block timing, slot pacing, or vote-account contents deserves a review when official migration guidance appears.

Rollout path and current mainnet status

The verified sequence so far: Anza published the Alpenglow design in May 2025 and the whitepaper v1.1 in July 2025. SIMD-0326 was merged into the proposal repository on September 9, 2025. A community governance vote (epochs 840–842, concluded in early September 2025) supported the proposal: 98.27% of votes cast were yes, 1.05% no, and 0.69% abstained, with 52% of total stake participating. The vote expressed community support for the proposal — it did not itself activate anything on mainnet.

In 2026, implementation moved into public testing: since May 11, 2026, Alpenglow has been running on a dedicated community test cluster announced by Anza (separate from Solana's devnet and testnet), including a live migration from Tower BFT on a running network — a procedure developers call "Alpenswitch." Agave v4.1.0 (June 26, 2026) shipped readiness components such as BLS key registration.

As of the status-check date, no official mainnet activation date or epoch has been confirmed. The official Solana changelog describes the current expectation: the Votor portion of Alpenglow is slated to start releasing with Agave v4.3, with the Alpenswitch migration expected on testnet in July 2026 and on mainnet in August 2026. That is a stated expectation — a target, not a commitment — and it can move. The status box near the top of this page summarizes what is and is not confirmed, and the sources section links the places where the status will change first.

Quantumglow: a post-quantum research direction

Quantumglow is a research-stage post-quantum adaptation of Alpenglow described by Anza and in Section 5 of the Alpenglow v1.2 whitepaper. It is not a separate validator client or evidence of a deployed upgrade. SIMD-0326 remains based on whitepaper v1.1; publishing v1.2 does not by itself amend that SIMD or approve Quantumglow. As of 2026-08-05, Anza had not announced a Quantumglow-specific client release, public SIMD, activation decision, or deployment schedule.

The design targets two cryptographic pressure points. First, post-quantum signatures are much larger than the EdDSA and BLS signatures assumed by Alpenglow. Quantumglow proposes Ax (short for Alpenglow XMSS), a purpose-built, hash-based XMSS-style signature scheme whose one-time public-key material can be exchanged and cached ahead of time. This is a protocol research proposal, not a commitment to ship a particular signature scheme.

Second, there is no known post-quantum replacement for BLS that preserves Alpenglow's constant-size aggregated quorum certificates with acceptable aggregation and verification costs. Quantumglow avoids that requirement: validators broadcast single-signer approvals, while certificates become local protocol events rather than objects sent across the network. Weak certificate events preserve the evidence needed for safety; strong certificate events support liveness. The approval mechanism coordinates the two and follows the distributed-quorum-signature approach described in the linked research paper.

Block propagation changes too. Instead of attaching a large post-quantum signature to every shred, the proposal uses authenticated channels for data dissemination and one signed block commitment covering the block payload. A validator accepts the reconstructed block only after it receives the matching commitment.

  • BLS votes → Ax, an Alpenglow-specific XMSS-style hash-based signature proposal.
  • BLS aggregation → an approval broadcast that stays off the healthy-path latency critical path.
  • Certificates carried as messages → local weak and strong certificate events.
  • A signature on every shred → one block commitment plus authenticated channels.

Anza's analysis argues that healthy, common-case execution can retain Alpenglow-like latency because an 80% fast-path vote does not need an extra approval round; slower or adversarial executions may add communication. The performance evidence available at the check date consists of protocol analysis, simulation, and cryptographic microbenchmarks — not a released client, a public-cluster result, or a mainnet measurement. “Comparable performance” should therefore be read as a research result under stated assumptions, not an operational guarantee.

Quantumglow addresses Alpenglow's consensus and block-authentication design, not the full Solana migration problem. Accounts and transaction authorization, wallet key migration, stake-weighted networking, and programs that rely on elliptic-curve cryptography require separate work. The proposal is useful evidence that Alpenglow can be studied under post-quantum constraints; it is not evidence that Solana is currently quantum-resistant.

Common misconceptions

  1. "Alpenglow is already live on mainnet"

    Not as of the status-check date. It runs on a dedicated community test cluster; mainnet activation has no confirmed date.

  2. "150 ms is guaranteed"

    The ~150 ms median figure is a simulation-based design target under stated assumptions, excluding computation overhead. Mainnet behavior must be measured, not assumed.

  3. "Solana gets rid of Proof of History, so history breaks"

    PoH's role was consensus timing, not data storage. Removing it from consensus does not delete history; blocks remain ordered and stored.

  4. "Faster finality means higher TPS"

    Finality latency and throughput are different dimensions. Alpenglow targets the former; throughput depends on other parts of the stack.

  5. "Votor and Rotor ship together"

    The published design includes both, but SIMD-0326 keeps Turbine for data dissemination initially; Rotor is planned separately under its own future SIMD.

  6. "Stakers must migrate their stake"

    No staking-account action is required by the consensus change itself. Protocol activation never requires revealing a seed phrase; verify upgrade information through official sources rather than unsolicited messages.

  7. "Quantumglow is an announced client upgrade"

    Not as of 2026-08-05. It is a research-stage protocol adaptation with no announced client release, SIMD, activation decision, or deployment schedule.

  8. "Quantumglow means Solana is quantum-resistant"

    No. It studies post-quantum changes to Alpenglow consensus and block authentication. Accounts, transactions, wallet migration, networking, and program cryptography remain separate parts of a network-wide transition.

Glossary

  • Consensus finality — the point where the network commits to a block so it cannot be rolled back without breaking the protocol's guarantees.
  • Optimistic confirmation — an earlier, faster signal that a supermajority has voted on a block; strong in practice but not the same as finality.
  • Votor — Alpenglow's voting component: off-chain votes, BLS-aggregated certificates, and two concurrent finalization paths.
  • Rotor — Alpenglow's planned data-dissemination component: erasure-coded shreds distributed through a single stake-weighted relay layer. Deferred to its own SIMD; Turbine initially remains in place.
  • VAT (Validator Admission Ticket) — the per-validator fee proposed in SIMD-0326 to replace on-chain vote transaction fees, initially about 80% of today's vote-fee cost.
  • Certificate — an aggregated proof (BLS signatures) that a quorum of stake voted for a block.
  • Shred — an erasure-coded piece of a block used for propagation.
  • 20+20 resilience — the stated fault model: up to 20% adversarial stake plus up to 20% additional non-responsive stake.
  • SIMD — Solana Improvement Document; SIMD-0326 specifies Alpenglow.
  • Alpenswitch — the live migration procedure from Tower BFT to Alpenglow exercised on the test cluster; the name is developer shorthand that also appears in official changelog coverage.
  • Quantumglow — Anza's research-stage post-quantum adaptation of Alpenglow; not a validator client or released upgrade, with no Quantumglow-specific public SIMD or activation plan confirmed as of 2026-08-05.
  • Ax (Alpenglow XMSS) — the purpose-built, hash-based XMSS-style signature scheme proposed for Quantumglow validator messages.

Sources

Official protocol and status sources are listed first; the secondary explainer is included as background reading. Rollout status was checked 2026-07-12, while the Quantumglow research classification was checked 2026-08-05. Both can change, so check the official sources for later releases, proposals, or activation decisions.

Sources

Anza — Alpenglow: A New Consensus for Solana

Official Anza announcement (May 19, 2025) introducing Votor and Rotor, the simulation-based finality targets, and the 20+20 resilience model.

Alpenglow whitepaper v1.1

Official protocol paper (v1.1, July 22, 2025) used for the original Alpenglow design, voting paths, certificates, proofs, and simulation figures discussed in this guide.

Alpenglow whitepaper v1.2

Official protocol paper (v1.2, July 29, 2026) with the formal Alpenglow design, proofs, and the Quantumglow construction in Section 5.

Anza — Quantumglow: Will Solana’s Performance Survive Quantum Computing?

Official Anza research overview (July 30, 2026) of the proposed post-quantum adaptation of Alpenglow, including Ax, local certificate events, approvals, and block commitments.

Byzantine Fault-Tolerant Post-Quantum Distributed Quorum Signatures

Research paper introducing distributed quorum signatures: ordinary signatures plus Bracha-style approval broadcast, with local weak and strong certificate events.

Anza — Securing Solana Against a Powerful Quantum Adversary

Broader Anza research overview of the separate post-quantum work needed across accounts, transactions, block propagation, consensus, networking, and programs.

SIMD-0326: Alpenglow (official proposal)

The official Solana improvement document specifying the Alpenglow consensus change, based on whitepaper v1.1 and merged September 9, 2025.

Solana Status — SIMD-0326 governance result

Official Solana Status announcement of the completed community governance vote: 98.27% of votes cast were yes, 1.05% no, 0.69% abstain, with 52% of stake participating. X may require login; the same result is reflected by independent SIMD vote trackers and news coverage.

Agave releases (anza-xyz/agave)

Official Agave validator client releases; the place to watch for Alpenglow feature availability and release notes.

Solana Changelog — Agave v4.1.0 and Alpenglow

Official solana.com changelog covering the Agave v4.1.0 release and its Alpenglow readiness components, including BLS key registration.

Helius — Alpenglow explainer

Secondary educational explainer used as background reading. Helius is an independent company; this reference is not an official protocol source and implies no partnership.

Continue reading

Informational article, dynamic status

This article is educational and source-linked. It is not financial, investment, security, or operational advice, and it does not imply partnership with or endorsement by Anza, Helius, the Solana Foundation, or any other organization. Protocol design, parameters, timelines, and activation status can change; the rollout facts above were verified on 2026-07-12, while the Quantumglow research status was checked on 2026-08-05. Both may be outdated by the time you read this. Verify current status through the linked official sources.