Most blockchains ask you to take their word for it. The XRP Ledger closes a new version of the entire network every three to five seconds and publishes it, in full, to anyone who asks — no key, no account, no fee.
What a ledger close actually is
The XRP Ledger does not mine. There is no proof of work and no block reward. Instead a set of validators agree, several times a minute, on which transactions are in and which are out. When they agree, that version of the ledger is validated — final, no confirmations to wait for, no reorganisation later.
Each close carries a ledger index (a simple counter), the transactions included, and the resulting state. A typical close holds anywhere from a few dozen to several hundred transactions. Watch the index tick up and you are watching settlement happen.
Payments, and the trap inside them
A payment on the XRPL carries an Amount. It is tempting to read that as "how
much moved" — and for simple payments it is. But the ledger also supports
partial payments, where Amount is a maximum the sender is
willing to deliver, not the amount delivered.
Read the wrong field and you will report transfers that never happened. We did, briefly: our
first pass showed billion-XRP transfers crossing the network every few minutes. The correct
field is meta.delivered_amount, which is what actually landed. Anyone quoting
enormous on-chain volumes without saying which field they used is probably quoting ceilings.
The DEX that lives inside the chain
The unusual part of the XRPL is that an order book is built into the protocol. An
OfferCreate transaction places a resting order on-chain, visible to everyone,
settled by the same consensus that settles payments. No exchange account, no custody, no
withdrawal.
Which means XRP has two markets running at once:
- Exchange order books — Coinbase and the rest. Fast, deep, custodial. This is where price discovery mostly happens.
- The on-chain DEX — thinner, slower to move, but entirely public and impossible to fake. Every offer is a real commitment recorded in the ledger.
Watching both at once is genuinely informative. Exchange flow tells you what traders are doing right now; on-chain offers tell you where capital is quietly positioning itself.
Reading transfers without fooling yourself
The most-quoted on-chain metric is also the most misleading: "X million XRP moved." Most large transfers are exchanges shuffling their own funds between wallets. Nothing was bought, nothing was sold, nobody's opinion changed. Treating that as a signal is how people end up convinced a dump is coming every Tuesday.
A transfer is worth attention when it moves into or out of an exchange, and even then it is weak evidence. An on-chain transfer is not a trade. Only a trade is a trade.
How to watch it yourself
A public cluster of XRPL nodes accepts WebSocket connections from a browser, free. Subscribe
to the ledger stream for closes, or transactions for everything as it
happens. That is the whole setup — no SDK required, no API key to manage.
One caveat worth stating plainly: those public clusters are community-run under a fair-use policy. Fine for a person watching, or an app at modest scale. If you build something popular, run your own node — it is the polite thing to do and it is the only version that survives success.
In our board the ledger sits beside the market: ledger index and transactions per close, XRP moved on-chain, and DEX offers marching onto the field as troops beside the exchange trades. Two markets, one battlefield, both public.