Skip to content
QuantascanAlpha

Gas and fees explained

The difference between gas and a fee, and why QRL Legacy and QRL 2.0 charge transaction fees in completely different ways.

6 min readUpdated 2026-06-30

On this page

People use the words "gas" and "fee" as if they're the same thing. They're not. And to make it more confusing, QRL's two chains charge fees in completely different ways. This guide untangles both — first gas vs fee, then QRL Legacy vs QRL 2.0.

Gas vs fee: work vs money

The simplest way to keep them apart is a fuel analogy:

TermAnalogyWhat it really is
GasLitres of fuel a trip burnsHow much work a transaction needs
Gas pricePrice per litreWhat you pay per unit of work
FeeThe total billThe money that leaves your balance

So the one line to remember:

Gas is an amount of work. A fee is an amount of money.

They're linked by a multiplication:

fee = gas used × gas price

A plain transfer does little work, so it uses little gas; a smart-contract call does more work, so it uses more gas. Either way, the fee is just that gas multiplied by the price per gas.

One crucial caveat before we go further: gas only exists on QRL 2.0. It's an EVM concept. That's exactly why the two chains differ.

QRL Legacy: a fee is just a fee

QRL Legacy is the original Proof-of-Work chain. It has no smart contracts — only a fixed set of transaction types — so every transaction does roughly the same, predictable amount of work. There's nothing variable to meter, so there's no gas.

Instead you pay a simple, flat-style fee directly in shor, and that fee goes to the miner who produces the block.

On QRL Legacy: fee = fee. There is no gas, no multiplication, and nothing is burned.

QRL 2.0: the fee is built from gas

QRL 2.0 is the EVM-compatible Proof-of-Stake successor. Because it runs arbitrary smart contracts, it must charge by how much work you do — hence gas. It uses the modern EIP-1559 fee model (the same one Ethereum uses), where the gas price has two parts:

On QRL 2.0: gas price = base fee + tip, and fee = gas used × (base fee + tip).

  • Base fee — set automatically by the protocol based on how full recent blocks are (it rises when the network is busy, falls when it's quiet). The base fee is permanently burned — destroyed and removed from the total supply forever.
  • Priority tip — an optional extra you add to jump the queue. The tip goes to the validator who includes your transaction.

So on QRL 2.0 two things happen to your fee that never happen on Legacy: the price moves with demand, and a chunk of every fee (the base fee) is burned rather than paid to anyone.

Side by side

QRL LegacyQRL 2.0
Gas?NoYes (EVM work meter)
Fee modelFlat feegas used × (base fee + tip)
Price moves with demand?NoYes (EIP-1559)
Who gets paidMinerValidator (the tip only)
Base feeBurned (removed from supply)
Paid inshorQuanta

Why the burn matters

Because QRL 2.0 burns the base fee of every transaction, heavy usage actually removes coins from circulation. On a busy chain this can offset — or even outpace — new issuance, making fees a genuine part of the supply story. You can watch this directly on the gas & fees dashboard and the fee-burned chart. QRL Legacy has no burn, so its fees never affect supply.

Where to go next

FAQ about Gas and fees explained

Common questions about this page
What is the difference between gas and a fee?
Gas is an amount of work — how much computation a transaction needs. A fee is an amount of money — what you pay for that work. The fee equals the gas used multiplied by the gas price. Gas is the quantity; the fee is the bill.
How is a transaction fee calculated on QRL 2.0?
Fee = gas used × gas price. The gas used reflects the work the transaction did; the gas price is what you pay per unit of gas. Under EIP-1559 the gas price is a base fee (set by the protocol) plus an optional priority tip.
On QRL 2.0, what makes up the gas price?
The gas price per unit of gas is the base fee plus the priority tip. The base fee is set automatically by the network and is permanently burned (removed from supply); the tip is an optional extra that goes to the validator who includes your transaction.
Do QRL Legacy transactions have gas?
No. QRL Legacy doesn't run smart contracts, so it has no gas. It charges a simple flat-style fee in shor that goes to the miner. On Legacy a fee is just a fee — there is nothing to multiply. Gas is a QRL 2.0 (EVM) concept only.