Alpenglow
- Name: Alpenglow
- URL: https://www.anza.xyz/alpenglow-1-1
- Category: high-performance proof-of-stake consensus redesign / low-latency BFT finalization primitive / Solana validator-performance infrastructure
- Summary: Alpenglow is worth cataloging not just as
Solana’s next consensusor a generic performance upgrade, but as a distinct fast-BFT design that explicitly decomposes Solana’s old consensus stack into new sublayers and new tradeoffs. In the reviewed primary materials, Alpenglow replaces TowerBFT and Proof-of-History-era voting/finality logic with Votor, pairs that with a separate dissemination layer called Rotor, and makes the core latency claim legible through two concurrent finalization paths: an 80% stake fast-finalization path in one voting round and a 60% stake slow-finalization path in two rounds. That makes Alpenglow a useful comparison point for HotStuff-2, HotShot, Minimmit, and ChonkyBFT because the real mechanism is not merelyfaster Solana, but a deliberately narrower one-round / two-round hybrid with direct validator-to-validator voting, aggregate certificates, timeout-based skip logic, and an explicit 20% Byzantine + 20% unresponsive resilience framing. - What it does:
- Replaces Solana’s TowerBFT / PoH-centered voting-finality path with a new consensus family centered on Votor, while reserving Rotor and other subcomponents as separate layers inside the broader Alpenglow program
- Runs two finalization modes concurrently: a one-round
fast-finalizationpath at 80% stake and a two-roundslow-finalizationpath at 60% stake - Moves votes off-chain and distributes them directly between validators, with aggregate-signature-backed certificates replacing the old on-chain vote-transaction pattern
- Uses explicit local timeouts and first-round
notarize/skipplus second-roundfinalize/notarize-fallback/skip-fallbacklogic to decide whether a slot finalizes or is skipped - Finalizes ancestor blocks indirectly once a later block finalizes, making chain progression depend on certificate formation rather than Tower lockouts or probabilistic optimistic-confirmation heuristics
- Introduces validator-admission and reward-policy surfaces such as the proposed Validator Admission Ticket, aggregate-submission rewards, and a top-2000-validator cap in the reviewed rollout plan
- Key claims:
- Alpenglow clears the corpus bar because it exposes a concrete new control surface inside the fast-consensus family: concurrent 80% one-round and 60% two-round finalization paths, rather than a single generic
fast finalityclaim. - The launch blog’s headline claim is median finality around 150 ms, with some simulations reaching roughly 100 ms; the reusable insight is less the number itself than the architectural split between direct voting, aggregate certificates, and separate dissemination optimization.
- The reviewed SIMD is especially useful because it shows the rollout decomposition clearly: Solana intends to adopt the Votor parts first while leaving Rotor and other Alpenglow subcomponents to later proposals. That makes Alpenglow analytically cleaner as a stack of separable sublayers instead of one monolithic
consensus rewritelabel. - The distinctive resilience framing matters. In the reviewed sources, Alpenglow is explicit that it gives up the familiar 33% Byzantine tolerance target of more conservative two-round designs in exchange for one-round finalization plus stronger crash / unresponsive tolerance under a
20+20model. - Alpenglow is also useful because it makes incentive and operator-policy questions visible. The SIMD does not only discuss finality mechanics; it also surfaces validator-admission limits, off-chain vote aggregation, and reward-submission rules as first-class parts of the migration.
- The strongest caveat from this pass is staging. The official proposal material explicitly narrows the initial scope to Votor and postpones Rotor and other pieces, so this entry should be treated as a mechanism page and rollout-comparison baseline rather than as a fully deployed end-state profile.
- Alpenglow clears the corpus bar because it exposes a concrete new control surface inside the fast-consensus family: concurrent 80% one-round and 60% two-round finalization paths, rather than a single generic
- Whitepaper: Yes. The canonical primary artifact is
Solana Alpenglow Consensus: Increased Bandwidth, Reduced Latency v1.1, supported in this pass by Anza’s launch post and SIMD-0326; see../whitepapers/alpenglow-primary-sources-2026-05-14.md. - Sources:
Internal linkages
-
Keep the comparison set tight: hotstuff-2, hotshot, and firedancer.
-
Last reviewed: 2026-06-03 UTC