Skip to content
QuantascanAlpha

Proof-of-Work vs Proof-of-Stake on QRL

QRL Legacy is mined (Proof-of-Work); QRL 2.0 is staked (Proof-of-Stake). Here's what that difference actually means.

6 min readUpdated 2026-06-20

On this page

QRL runs as two chains, and one of the biggest differences between them is how they agree on the next block. QRL Legacy is a Proof-of-Work chain — it is mined. QRL 2.0 is a Proof-of-Stake chain — it is staked. This guide explains what that means without the jargon.

Why a blockchain needs "consensus"

A blockchain is a shared ledger with no central operator. Thousands of independent computers need to agree on one history: which transactions happened, and in what order. The rule they use to agree — and to decide who gets to add the next block — is the consensus mechanism. Proof-of-Work and Proof-of-Stake are two different answers to the same question: how do we make it expensive to cheat?

QRL Legacy: Proof-of-Work (mining)

In Proof-of-Work, computers called miners race to solve a hard mathematical puzzle. The puzzle is deliberately costly: the only way to solve it is to try enormous numbers of guesses, which burns electricity. The first to solve it gets to add the next block and collect the block reward (a coinbase transaction of newly minted coins).

QRL Legacy uses a Proof-of-Work algorithm called QRandomX — a QRL variant of RandomX, tuned to favour ordinary CPUs over specialised mining hardware (ASICs), which keeps mining more accessible.

Security comes from cost: to rewrite history, an attacker would need to out-compute the entire honest network, which is prohibitively expensive in hardware and energy.

QRL 2.0: Proof-of-Stake (staking)

QRL 2.0 replaces miners with validators. Instead of spending electricity, a validator locks up — stakes — an amount of QRL as a security deposit. The protocol then selects validators to propose and confirm ("attest") blocks. Honest work earns rewards; provable cheating is punished by slashing, which destroys part of the stake.

QRL 2.0's Proof-of-Stake runs on a beacon chain operated by the qrysm consensus client, paired with the gqrl execution client. Time is divided into fixed slots of 60 seconds, grouped into epochs of 128 slots (about 2.1 hours), which the protocol uses to assign duties and finalise blocks. Rewards reach validators as protocol withdrawals rather than mined block rewards.

Security comes from stake-at-risk: attacking the chain means risking the validators' own deposits.

Side by side

Block production compared: on QRL Legacy, miners spend electricity to solve a QRandomX puzzle and produce a new block secured by hash power; on QRL 2.0, validators stake coins, the beacon chain selects a proposer, and a new block is produced about every 60 seconds, secured by the staked coins.QRL Legacy — Proof-of-WorkMinersspend electricitySolve QRandomX puzzleNew blocksecurity = hash powerQRL 2.0 — Proof-of-StakeValidators stake coinsBeacon chain picks a proposerNew block ~60ssecurity = staked coins
How each chain adds a block: Proof-of-Work miners solve a QRandomX puzzle (security = hash power); Proof-of-Stake validators are selected by the beacon chain (security = staked coins).
QRL Legacy (PoW)QRL 2.0 (PoS)
Who adds blocksMinersValidators
Cost of honestyElectricity + hardwareStaked QRL
Algorithm / layerQRandomXBeacon chain (qrysm)
RewardMined block rewardStaking rewards (withdrawals)
Penalty for cheatingWasted workSlashing
Energy useHighLow

Why QRL is moving from one to the other

QRL 2.0 is the successor chain. The shift from mining to staking mirrors the broader industry move (most visibly Ethereum's) toward lower energy use and a stake-based security model — while keeping QRL's defining feature, quantum-resistant signatures, on both chains. QRL Legacy is not switched off in the process: it becomes a permanent, read-only archive. The relationship between the two chains is covered in QRL Legacy vs QRL 2.0.

Where to go next

FAQ about Proof-of-Work vs Proof-of-Stake on QRL

Common questions about this page
Is QRL Proof-of-Work or Proof-of-Stake?
Both, across two chains. QRL Legacy uses Proof-of-Work (mining) with the QRandomX algorithm. QRL 2.0, its successor, uses Proof-of-Stake, where validators stake QRL instead of mining.
Can I still mine QRL?
You can mine QRL Legacy, which remains a Proof-of-Work chain. QRL 2.0 cannot be mined — it is secured by staking. The project's direction is from mining toward staking.
What replaces mining rewards on QRL 2.0?
Validators earn rewards for proposing and attesting blocks, paid out as protocol withdrawals rather than mined block rewards. Misbehaving validators can be penalised by slashing.
Is Proof-of-Stake less secure?
It is a different security model, not an inherently weaker one. Proof-of-Work spends energy to make attacks expensive; Proof-of-Stake puts validators' staked funds at risk instead. Both are widely used; QRL 2.0 follows the same consensus design as Ethereum's.