Skip to content
QuantascanAlpha

How to read a block explorer

A practical walk-through of finding a transaction, checking a wallet, and understanding the data Quantascan shows you.

6 min readUpdated 2026-01-15

On this page

A block explorer is just a search engine for a blockchain. Every transaction ever made, every block ever produced, every address ever used — it's all public, and an explorer makes it queryable.

This guide walks through the things people most often want to do.

Three primitives: block, transaction, address

A block is a batch of transactions agreed to by the network at a point in time. On QRL 2.0 a new block arrives roughly every 60 seconds (one block per consensus slot); on QRL Legacy roughly every minute too. Each block has a unique number ("height") and a unique hash. Browse the latest at /blocks. (New to the two-chain setup? Start with what is QRL.)

A transaction is a single signed instruction — usually a value transfer, sometimes a contract call. Each transaction has a hash that uniquely identifies it. Find the latest at /transactions.

An address is a public identifier where coins can be received and from which they can be sent. On QRL Legacy these start with Q; on QRL 2.0 they also start with Q (a chain-specific prefix). Browse the largest balances at /richlist.

Every other page on Quantascan is some view of these three things plus their relationships.

Searching

The search bar at the top of every page accepts:

  • A block height (4234567)
  • A block hash (0x...)
  • A transaction hash (0x... — usually 64 hex characters)
  • An address (Q...)
  • A token symbol if it's been indexed

Paste, hit enter, you land on the right detail page. No exact-format requirement — the search bar autodetects.

Checking a wallet

Go to /address/Q... (or paste an address in the search bar). The page shows:

  • Balance — what the address holds right now
  • Total received / sent — cumulative inflows and outflows over the chain's lifetime
  • Transaction count — how many on-chain operations this address has signed or received
  • First seen / last active — when the address first appeared on chain and when it last did anything

Below that is the full transaction history, paginated. Each row links to the tx detail and the counterparty address.

Understanding gas (QRL 2.0 only)

On QRL 2.0, transactions consume gas — a unit of computational work. Three numbers matter:

  • Gas used — how much the transaction actually consumed (lower = cheaper).
  • Gas price — how much the sender paid per unit of gas (priority bid).
  • Transaction fee — gas used × effective gas price, the total cost.

You'll see all three on every tx detail page. The fee shows up in the chain's native unit, Quanta (1 Quanta = 1e9 Shor = 1e18 Planck).

QRL Legacy doesn't have gas — fees are fixed per transaction type.

Reading a transaction status

On a transaction detail page:

  • Success (green check) — the transaction executed and the state change was applied.
  • Failed / reverted (red X) — the transaction was included in a block but reverted. The sender still paid the gas, but no state change took effect. Usually means a contract threw an error.

Multi-recipient transactions on QRL Legacy (a single tx paying multiple addresses) are shown as a list of recipients with per-row values.

Analytics — the part block explorers usually skip

Most explorers stop at "here's the data, paginated." Quantascan also pre-aggregates the data into rollups so you can ask harder questions:

  • How decentralised is QRL?Supply page for Gini and Nakamoto coefficients.
  • Who's accumulating right now?Whale tracker for 24h net flows on the largest holders.
  • Is the chain healthy?Network page for daily active addresses, fee market, scorecard.
  • Who's running validators?Validators page for top earners + decentralisation.

These pages don't show individual transactions — they show the chain as a whole.

Tips that save time

  • The chain toggle in the header (top-right) flips between QRL Legacy and QRL 2.0. Same page, different chain.
  • Cards on the homepage are clickable — each links to the underlying detail page.
  • Every address page has a link to its transaction graph for visualising counterparty relationships.
  • The Charts catalogue (/charts) lists every time-series chart on the site in one place — useful when you want a specific metric and don't remember which analytics page hosts it.

If you can't find something, the search bar is the right starting point about 90% of the time.

FAQ about How to read a block explorer

Common questions about this page
What is a transaction hash?
A transaction hash (or TXID) is a unique fingerprint identifying one transaction on the chain. Paste it into the search bar to open that transaction's detail page with its status, amounts, and counterparties.
What does pending, confirmed, or failed mean?
Pending means the transaction is waiting to be included in a block. Confirmed (success) means it executed and the state change applied. Failed or reverted means it was included in a block but reverted — the sender paid the fee but nothing else changed.
What is a block height?
Block height is the sequential number of a block since genesis (block 0); a higher number is a newer block. On QRL 2.0 a new block arrives roughly every 60 seconds, one per consensus slot.
How do I check a QRL wallet balance?
Paste the address (it starts with Q) into the search bar, or open its address page directly. The page shows the current balance, total received and sent, transaction count, and the full transaction history.