Key Takeaways
Alpenglow replaces two of Solana's founding technologies. Proof of History and Tower BFT are both removed and replaced with Votor (consensus) and Rotor (block propagation), targeting finality of 100 to 150 milliseconds instead of the current 12.8 seconds.
Validator votes move off-chain entirely. Currently, validator votes make up roughly 75% of all Solana transactions. Alpenglow eliminates this overhead, freeing block space for actual user activity.
Testing is live, mainnet is not. The community test cluster went live on May 11, 2026. Mainnet activation is targeted for Q3 to Q4 2026, pending testnet results and a formal Agave release.
Why This Upgrade Matters
Solana built its reputation on speed. Block times of roughly 400 milliseconds put it well ahead of most other public blockchains when it launched. But there has always been a gap between how fast blocks are produced and how fast a transaction achieves finality.
Finality is the point at which a transaction is considered irreversible. On current Solana mainnet, that takes approximately 12.8 seconds. For most consumer applications, that delay is invisible. For financial systems, real-time trading, or any use case where settlement guarantees matter, 12.8 seconds is a long time.
Alpenglow is Solana's answer to that gap. Developed by Anza, an engineering team spun out of Solana Labs, it targets finality of 100 to 150 milliseconds and replaces the two core consensus mechanisms Solana has relied on since its launch.
This article explains what Alpenglow actually changes at a mechanical level, why those changes matter, and how you can observe the upgrade running on Solana's community test cluster today.
What Solana's Consensus Looked Like Before Alpenglow
To understand Alpenglow, it helps to understand what it replaces. Solana's consensus ran on two interconnected systems.
Proof of History (PoH) is a cryptographic clock. It generates a continuous, verifiable sequence of hashes that timestamps transactions before they even reach validators. This allows validators to agree on the ordering of events without needing to communicate about time explicitly. It was one of Solana's most original design contributions.
Tower BFT is the voting mechanism built on top of PoH. Validators cast votes on blocks, and those votes are recorded as on-chain transactions. The system uses a 32-round confirmation process, with each round adding confidence that a block is final.
Together, these systems produced blocks quickly but created two compounding problems. First, finality took a long time because of the multi-round voting process. Second, validator votes consumed an enormous share of network capacity. By some estimates, validator vote transactions accounted for roughly 75% of all transactions on Solana's ledger at any given time. That is a significant amount of block space being used not for user activity, but for internal bookkeeping.
What Alpenglow Changes: Votor and Rotor
Alpenglow introduces two new protocol components: Votor and Rotor.
Votor: The New Consensus Mechanism
Votor replaces Tower BFT. The core design change is that validator votes no longer appear on-chain at all. Instead, validators sign vote certificates using BLS (Boneh-Lynn-Shacham) signature aggregation and distribute them directly to each other as lightweight UDP messages. Thousands of individual signatures are compressed into a single compact proof of roughly 1,000 bytes. Only that aggregated certificate lands on-chain.
Votor achieves finality in one of two paths, running concurrently:
Fast path: If validators representing more than 80% of total staked SOL respond in the first round, the block finalises in approximately 100 milliseconds.
Slow path: If fewer validators respond but the count reaches at least 60% of total stake, a second round completes finalisation at approximately 150 milliseconds.
The two paths always run in parallel. The network finalises on whichever is faster given current conditions. This design keeps consensus moving even when parts of the network are delayed or temporarily offline.
One structural consequence of this design: Votor also eliminates epoch-based vote lockouts. The current Tower BFT system uses exponential lockouts to enforce vote commitment, which creates slash risk for validators who miss slots. Votor removes this mechanism entirely, simplifying validator operations.
Rotor: The New Block Propagation System
Rotor replaces Turbine, Solana's current mechanism for distributing block data across the validator network. The analogy is useful: Turbine works like a game of telephone, with a block producer broadcasting data through multiple relay layers, each fanning out to more validators. Information travels multiple hops across the network.
Rotor switches to a single-hop model. The block producer sends data to a small set of relay nodes, and those relays push it to everyone simultaneously. Relay assignments are deterministic and stake-weighted, which removes the randomness of the previous model and makes propagation more predictable.
Rotor also uses erasure coding to divide block data into fragments. Validators can reconstruct the full block even if they miss some fragments, improving resilience under variable network conditions. Simulations cited in the Alpenglow white paper show block propagation times as low as 18 milliseconds under typical bandwidth conditions.
One important note: Rotor is not part of the current test cluster deployment. The community cluster running since May 2026 tests Votor only, under SIMD-0326. Rotor will ship in a separate SIMD at a later stage. Current testing still uses Turbine for block propagation.
Solana Consensus Before and After Alpenglow
Feature | Before Alpenglow | After Alpenglow |
Consensus Protocol | Proof of History + Tower BFT | Votor (Alpenglow) |
Block Propagation | Turbine (multi-hop relay) | Rotor (single-hop broadcast)* |
Transaction Finality | ~12.8 seconds | ~100 to 150 milliseconds |
Voting Process | 32-round on-chain vote | 1 to 2 rounds, off-chain |
Validator Vote Overhead | ~75% of all transactions | Eliminated from block space |
Block Time | ~400ms block time, ~12.8s finality | ~400ms block time, ~150ms finality |
* Rotor is planned for a future SIMD. Current community cluster tests Votor with Turbine still active.
Why Sub-Second Finality Changes What You Can Build
The practical implications of 100 to 150 millisecond finality go beyond the raw performance number. They change the category of applications that are viable on a public blockchain.
High-frequency trading and DeFi order books: Real-time order matching requires fast, deterministic finality. A 12-second confirmation window makes on-chain order books slow compared to centralised exchanges. At 150 milliseconds, the gap with centralised trading infrastructure shrinks considerably.
Payment settlement and stablecoins: Financial institutions exploring blockchain-based settlement need finality guarantees before they can credit accounts or move to the next leg of a transaction. Faster finality makes blockchain settlement more comparable to what traditional payment rails currently deliver.
On-chain gaming: Games with real-time state updates require fast, irreversible confirmation. Waiting 12 seconds to confirm an in-game transaction is not compatible with most game design requirements.
MEV economics: Solana co-founder Anatoly Yakovenko noted at Consensus Miami 2026 that Alpenglow changes the economics of maximal extractable value. The window for profitable transaction reordering shrinks sharply when blocks finalise in milliseconds rather than seconds.
Finality Speed: How Solana Compares
Blockchain / System | Finality Time | Notes |
Solana (post-Alpenglow) | ~100 to 150ms (target) | Community test cluster, not mainnet yet |
Solana (current mainnet) | ~12.8 seconds | Tower BFT with PoH |
Ethereum | ~12 to 64 seconds | Two-slot finality on PoS |
Visa (centralised) | 1 to 3 seconds (auth) | Authorisation only, not settlement |
Traditional wire transfer | Hours to days | Depends on bank and jurisdiction |
Note: All Alpenglow figures are targets from the community test cluster. Mainnet performance may vary.
Who Is Building This
Team | Role | Alpenglow Relevance |
Anza | Core protocol engineering (Agave client) | Designed and built Votor; runs community test cluster |
Jump Crypto (Firedancer) | Alternative validator client in C/C++ | Benefits from simpler consensus to reimplement |
Solana Foundation | Governance and ecosystem coordination | Managed SIMD-0326 governance vote |
Validator community | Network operators staking SOL | 98.27% voted yes on Alpenglow in September 2025 |
Morgan Stanley's Solana ETF Filing: The Institutional Context
On June 18, 2026, Morgan Stanley filed an amended S-1 registration statement with the SEC for the Morgan Stanley Solana Trust, intended to trade under the ticker MSOL on NYSE Arca. The filing proposes a 0.14% annual sponsor fee, which would make it the lowest-cost Solana ETF in the US market if approved. The fund plans to stake a portion of its SOL holdings, with Figment, Galaxy Blockchain Infrastructure, and Coinbase Canada listed as staking service providers.
This does not mean Alpenglow and the ETF filing are directly connected. They are separate developments. But they are arriving at the same moment and together represent two different layers of institutional engagement with Solana: one technical, one financial. The ETF filing is under SEC review with no confirmed approval timeline.
How to Connect to the Alpenglow Test Cluster
Anza opened the Alpenglow community test cluster on May 11, 2026. If you want to observe or participate in testing, here is how to get started. This section is aimed at developers and validator operators. You do not need to join the cluster to learn from this article.
Prerequisites
A Linux server with at least 16GB RAM and a reliable network connection
The Agave validator client installed from source (Agave master branch)
Basic familiarity with the Solana CLI
Test SOL from the cluster faucet (not real SOL)
Step 1: Install the Agave Client from Master
The Alpenglow test cluster requires the current Agave master branch, not a stable release. Build it from source:
git clone https://github.com/anza-xyz/agave.git
cd agave && git checkout master && ./cargo build --release
This build process can take 30 to 60 minutes depending on your hardware. Ensure you have Rust installed and up to date before starting.
Step 2: Configure the Solana CLI for the Test Cluster
The Alpenglow community cluster has its own endpoint. Set your CLI to point to it:
solana config set --url <alpenglow-cluster-rpc-endpoint>
Check Anza's official communications on X (@anza_xyz) or the Solana Tech Discord for the current cluster RPC endpoint, as these addresses are updated during the testing phase.
Step 3: Fund a Test Wallet
Request test SOL from the cluster airdrop faucet:
solana airdrop 10 <your-wallet-address>
This is test SOL with no real-world value. The cluster may be subject to periodic resets, which will remove balances and transaction history.
Step 4: Observe Finality Times
Once connected, you can submit a transaction and measure confirmation time. The simplest way is a SOL transfer and a timestamp check:
solana transfer <destination> 0.001 --with-compute-unit-price 1
Check the block explorer for the cluster to see confirmed finality. Compare the slot confirmation time against the roughly 12.8 seconds you would expect on current mainnet.
Step 5: Explore the Alpenswitch
Developers testing validator migration can observe the "Alpenswitch" process, the live transition of validator nodes from Tower BFT to Alpenglow on a running network. This is what Anza is testing ahead of mainnet. You do not need to run a validator to observe the cluster, but validator operators who want to participate should consult Anza's validator documentation and the SIMD-0326 specification on the Solana Foundation GitHub.
What to Expect
The community test cluster is not mainnet. The 100 to 150ms finality figures come from a controlled environment. Real-world performance on mainnet will depend on the full validator set, geographic distribution of nodes, and actual network conditions. Treat test cluster results as indicative, not guaranteed.
The next major milestone is the inclusion of Alpenglow in a formal Agave release, followed by activation on Solana's public testnet. Mainnet activation is currently targeted for Q3 to Q4 2026, conditional on testnet results and security audits.
Risks and Open Questions
Replacing core consensus mechanisms carries systemic risk. A few areas worth watching:
Migration risk: The Alpenswitch must transition all validator nodes without disrupting the live network. Testing in a community cluster with a limited validator set is not the same as doing it on mainnet with over a thousand validators.
Centralisation concerns: Stake-weighted relay assignments in Rotor could give large validators disproportionate influence over block propagation. This is a known concern in the design literature and has not been fully resolved.
Rotor is still pending: The current test cluster uses Turbine, not Rotor. The full Alpenglow vision as described in the white paper requires both components. Rotor's implementation and testing timeline is separate.
Security audits: Anza has noted that security audits are required before mainnet activation. The timeline for those audits has not been published.
Frequently Asked Questions
What is Solana Alpenglow?
Alpenglow is a complete replacement of Solana's consensus architecture, removing Proof of History and Tower BFT and replacing them with two new components: Votor (for consensus and voting) and Rotor (for block propagation). The upgrade targets transaction finality of 100 to 150 milliseconds, compared to the current 12.8 seconds.
What is the difference between Votor and Rotor?
Votor handles how validators agree on which blocks are final. It moves votes off-chain and compresses them using BLS signature aggregation, replacing the current 32-round on-chain voting process. Rotor handles how block data is distributed across the validator network, replacing the multi-hop Turbine system with a single-hop broadcast model. As of June 2026, Votor is being tested on the community cluster while Rotor is scheduled for a separate future update.
Is Alpenglow live on Solana mainnet?
No. As of June 2026, Alpenglow is running on a community test cluster that went live on May 11, 2026. The next step is a formal Agave client release followed by testnet activation. Mainnet deployment is targeted for Q3 to Q4 2026, but this timeline depends on testing outcomes and security audits.
Does Alpenglow affect regular Solana users or just validators?
Most Solana users will not need to do anything. The upgrade is a protocol-level change handled by validator operators. If Alpenglow reaches mainnet, users would experience faster confirmation times automatically. Developers building on Solana may need to update applications that rely on current finality timing assumptions.
What was the governance vote result for Alpenglow?
In September 2025, the Solana community voted on SIMD-0326, the Alpenglow improvement proposal. The result was 98.27% in favour, with approximately 52% of total staked SOL participating. It passed with only 1.05% opposing votes.
Is the Morgan Stanley Solana ETF connected to Alpenglow?
Not directly. Morgan Stanley filed amended S-1 registration documents for a spot Solana ETF (ticker MSOL) with the SEC on June 18, 2026. This is a separate institutional development and remains under SEC review with no confirmed approval date. Alpenglow is a technical protocol upgrade; the ETF is a regulated financial product.
Why does removing on-chain votes matter so much?
Validator votes currently account for an estimated 75% of all transactions on Solana's ledger. By moving votes off-chain, Alpenglow effectively frees up three-quarters of Solana's transaction throughput for actual user activity, without changing the block time or hardware requirements.
Disclaimer: This content is for educational and informational purposes only and is not financial advice. Nothing here is a recommendation to buy or sell any asset or use any platform. Do your own research and manage your risk.
Top 5 Crypto Exchanges for New Crypto Traders
Best Free Trading Fee Calculators in 2026
How to Spot a Crypto Scam in 2026: The Complete Red Flag Checklist
AI Agents for Crypto Trading and DeFi: Step-by-Step Setup Guide with Permission and Risk Management
Need deeper training?
Join our structured modules with live examples and expert checklists for effective implementation.
JOIN THE ACADEMY





