Skip to content
Get started

Single chain · Review

Tonviewer: the explorer that reassembles TON

On most chains a transaction is a transaction. On TON it is the first hop of something that may still be propagating. An explorer that shows you only that first hop is telling you almost nothing.

Updated 17 September 2026 · How we test · 10 min read
Free tier, key required 1 chain

At a glance

Operator
TON Apps / Tonkeeper team
Chain
TON
Model
Asynchronous actors
Block time
~5 seconds
Key strength
Message-chain reconstruction
API
TonAPI, key required
Open source
No
Alternative
Tonscan

The verdict

Tonviewer solves the hardest problem on TON — turning an asynchronous message tree into something a person can read — and does it better than any alternative. Jetton and NFT handling is clear, and the account view matches TON’s actual structure. It is closed source, the API needs a key, and it is dense for a first-time visitor.

What it does well

  • Reconstructs the full message chain from one user action into a single readable trace
  • Correctly distinguishes a jetton wallet from its owner, which is TON’s biggest source of confusion
  • Shows bounced messages, which are how TON reports many failures
  • Contract state, code and get-methods are all exposed on the account page
  • Strong NFT and DNS handling, including the collection structure

Where it falls short

  • Closed source, with no self-hosting option
  • The underlying TonAPI needs a key for anything beyond casual use
  • Dense interface that assumes familiarity with TON’s actor model
  • Terminology diverges from every other chain, and the explorer does not translate

Why it scored what it scored

Six criteria, each out of five, weighted as set out in our methodology. A score without a reason is just a number, so here is the reason for each one.

Coverage 2.0
TON only.
Data depth 5.0
Full message-chain reconstruction, bounce detection, jetton wallet ownership and contract get-methods. Nothing else assembles TON this completely.
Speed 4.0
Slower than Tonscan because the reassembly is real work, and worth the wait when you need the trace.
Privacy 2.0
Closed and commercial with no self-hosting path, though TonAPI at least has published limits.
API 4.0
TonAPI with a free tier behind a key. Its value over raw node access is that it does the trace reconstruction for you.
Interface 5.0
Excellent given the difficulty, turning an asynchronous message tree into something that reads as a single event.

Why TON breaks ordinary explorers

TON is built on an actor model. Every contract is an independent actor with its own state, and contracts communicate only by sending messages to each other. There are no synchronous calls — a contract cannot call another and wait for the answer within the same execution.

So a single user action decomposes into a sequence. You send a message to your wallet contract. It sends a message to a jetton wallet. That sends a message to the recipient's jetton wallet. That may send a notification message onward. Each hop is a separate on-chain transaction, in a separate block, possibly in a separate shard.

An explorer that shows you "the transaction" shows you the first hop. Everything that actually mattered happened afterwards, and if something failed three hops down, the first hop still looks entirely successful.

Tonviewer traces the tree. Open one action and you see the whole cascade, with each message's fate. That is the product, and it is the difference between understanding what happened and guessing.

Jetton wallets, which confuse everyone

TON's token standard is called Jetton, and it does not work like ERC-20.

On Ethereum, one token contract holds a mapping of every holder's balance. On TON, each holder gets their own jetton wallet contract, deployed separately, holding only their balance. The master contract governs the token; it does not store who owns what.

This is a deliberate scaling decision — it avoids a single contract becoming a bottleneck across shards — and it produces a specific, recurring confusion: your token balance is not at your wallet address. It is at a derived jetton wallet address that your wallet owns.

People send tokens to the wrong one of these constantly. Tonviewer labels them explicitly, showing the owner alongside every jetton wallet, which is the thing that makes the model comprehensible rather than alarming.

From our testing

We traced a jetton transfer that appeared to have failed. The first hop succeeded, the second hop succeeded, and the third bounced because the recipient’s jetton wallet had not been deployed and the attached value was insufficient to deploy it. Two of the three explorers we tried showed a successful transaction. Only the full message trace revealed the bounce.

Bounced messages: TON’s version of a revert

When a TON message cannot be processed, it bounces — the value returns to the sender, minus fees. This is the normal failure mode and it is nothing like an EVM revert, because the original transaction has already succeeded by the time the bounce happens.

The practical implication: on TON, a successful transaction does not mean a successful outcome. It means your message was accepted for delivery. What happened at the other end is a separate event that may arrive seconds later.

Tonviewer marks bounced messages clearly in the trace. If a transfer "went through" and the recipient reports nothing, this is the first place to look, and it is the field that explains the overwhelming majority of those cases.

TonAPI

Tonviewer is backed by TonAPI, which offers a free tier with a key and paid plans beyond it. It is a considerably friendlier surface than raw TON node access, because it does the same reassembly work the web interface does — you get traces rather than isolated messages.

That reassembly is exactly why you would use it rather than querying a node directly. Reconstructing a message tree from raw transactions across shards is real work, and the API doing it for you is most of the value.

For lighter needs, public TON HTTP endpoints exist and Tonscan is open source, which makes it the better starting point if you want to see how the data is assembled rather than trust that it was.

Tonviewer or Tonscan?

Tonviewer when you need to understand what happened — a transfer that did not arrive, a contract interaction with an unexpected result, anything involving more than one hop.

Tonscan when you want speed and simplicity, or when you want an open-source tool. It is lighter, it renders faster, and it does less decoding, which is sometimes exactly what you want.

Use both. On a chain this structurally unusual, a second rendering of the same data has caught more confusion for us than on any other network. And whichever you use, remember the two TON-specific rules: your tokens are not at your wallet address, and a successful transaction is not a successful outcome.

If this is not the one

TON has fewer explorers than the EVM world, and the differences between them are larger.

Tonviewer: common questions

Why does my TON wallet show no tokens?

Because jetton balances live in separate jetton wallet contracts your address owns, not at the address itself. Tonviewer lists them under the account’s jettons and labels the owner of each.

My TON transfer succeeded but nothing arrived.

Check for a bounced message in the trace. TON is asynchronous — your transaction succeeding means your message was sent, not that it was accepted at the far end. Bounces return the value minus fees.

What is the best TON explorer?

Tonviewer for tracing and decoding, Tonscan for speed and open source. They complement each other well enough that using both is reasonable.

Is Tonviewer official?

It comes from the team behind the Tonkeeper wallet and is widely treated as the reference explorer, but TON has no single official explorer.

Does the TonAPI need a key?

Yes for anything beyond casual use, with a free tier available. Its value over raw node access is that it reassembles message traces for you.