Skip to content
Get started

Single chain · Review

Suiscan: where balances are derived, not stored

On Sui your coins are objects. So are your NFTs, your staking positions and the packages that define them. An explorer that shows you a balance is hiding the thing that actually matters.

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

At a glance

Operator
Blockberry / Sui ecosystem
Launched
2023
Chain
Sui
Model
Object-centric
Language
Move
Finality
Sub-second for simple transfers
API
Key required
Open source
No

The verdict

Suiscan presents Sui as it actually works — a graph of owned objects rather than a ledger of balances — and that fidelity makes ownership history, NFT provenance and Move package structure genuinely legible. It is closed source and the ecosystem is young, so tooling depth is still behind the mature chains.

What it does well

  • Object-centric views that match Sui’s actual state model rather than flattening it
  • Move package and module browsing, including published functions and their types
  • Clear ownership history — shared, owned and immutable objects are distinguished
  • Strong NFT handling, since NFTs are just objects here and the model fits naturally
  • Checkpoint and epoch data presented properly

Where it falls short

  • Closed source
  • Ecosystem is young, so labelling and metadata coverage is thin
  • API requires a key via Blockberry
  • The object model is unfamiliar enough that the interface assumes reading you may not have done

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
Sui only.
Data depth 4.0
Object ownership, versions, Move packages with published type signatures, and storage rebates broken out. It models the chain rather than approximating it.
Speed 4.0
Quick, which Sui’s sub-second finality on owned objects makes possible.
Privacy 2.0
Closed and commercial, with no self-hosting path and no onion service.
API 3.0
Available through Blockberry with a key and a free tier. Sui’s own JSON-RPC is the keyless alternative for raw data.
Interface 4.0
Good for the model it presents, and it assumes reading about objects and ownership that a newcomer will not have done.

Everything is an object

Sui does not store a table of balances. It stores objects, each with a unique identifier, a type, a version and an owner. Your SUI is held in coin objects. Your NFT is an object. A staking position is an object. The code that defines all of them lives in package objects.

A transaction takes objects as inputs and produces objects as outputs, which is closer to Bitcoin's UTXO model than to Ethereum's accounts — except that objects are typed and carry arbitrary structured data rather than just value.

This has a direct performance consequence and it explains Sui's design. Transactions touching disjoint sets of objects cannot conflict, so they can be executed in parallel without consensus ordering. A simple transfer of an object you solely own does not need agreement from the whole network about ordering, which is why it finalises in well under a second.

Suiscan shows this structure directly — object IDs, types, versions and ownership — rather than computing a balance and presenting it as the truth. The balance is a derived figure; the objects are the state.

Three kinds of ownership

Sui distinguishes ownership in a way most chains do not, and the distinction determines how a transaction is processed.

Owned objects belong to a single address. Only that address can use them, so transactions touching only owned objects skip full consensus and finalise almost immediately.

Shared objects can be used by anyone — a liquidity pool, an order book, a shared registry. Because multiple parties may try to modify them simultaneously, these transactions require consensus ordering and are correspondingly slower.

Immutable objects cannot be changed at all. Published packages are immutable, which is why Sui contract upgrades work differently from EVM proxy patterns.

Suiscan labels the ownership type on every object. That field explains why one transaction was instant and another took longer, which is otherwise mysterious.

Move packages, and why upgrades differ

Sui uses Move, a language designed around resources that cannot be copied or accidentally discarded. That property is enforced by the type system rather than by developer discipline, which removes a category of bug that has been expensive on other chains.

Suiscan lets you browse published packages: modules, public functions, struct definitions and type signatures. For anyone assessing what a package can do, that is the equivalent of reading verified source on Etherscan, and it is available by default because packages are published as readable bytecode with type information.

The upgrade model is worth understanding. Because packages are immutable objects, upgrading means publishing a new version with a link to the previous one, rather than swapping an implementation behind a proxy. The upgrade path is explicit and on chain, which is more transparent than the EVM approach — though it does mean you must check which version an application is actually calling.

Using it in practice

Two things worth knowing when you open an address page.

Your SUI balance is the sum of your coin objects, and there may be many of them. Wallets merge these automatically, but a page showing several coin objects rather than one balance is normal rather than a sign of anything wrong.

And storage rebates are real. Sui charges for storage and refunds part of it when an object is deleted, which means a transaction that cleans up after itself can cost less than you expect, occasionally close to nothing. Suiscan shows the storage cost and rebate separately, which is the only way to understand an unexpectedly small fee.

For cross-checking, 3xpl indexes Sui and renders faster if you only need to confirm a transaction exists. For anything involving objects, packages or ownership, Suiscan is the tool that models the chain correctly.

What our reference tests showed

Our Sui reference items were chosen to exercise the object model: a simple owned-object transfer, a transaction touching a shared object, an NFT transfer, a package publication, and a transaction that deleted an object to trigger a storage rebate.

The owned-object transfer finalised almost instantly and Suiscan showed it as such, with the ownership type labelled. The shared-object transaction took visibly longer and the explorer's presentation made the reason apparent — consensus ordering was required because the object could be contended.

That contrast is the most useful thing we learned from the testing. Two transactions that look identical to a user took markedly different times, and the explanation was a single field on the page. Without an explorer that surfaces ownership type, the difference is simply unpredictable latency.

The NFT transfer rendered with full provenance, because on Sui an NFT is an object with a version history rather than an entry in a contract's mapping. Following previous owners took no additional queries.

The package publication view showed modules, public functions and their type signatures without us having to submit source for verification — the type information is published with the bytecode, which is a structural advantage over the EVM's verify-after-the-fact model.

The storage rebate test produced a transaction with a net cost lower than its gross gas, and Suiscan showed the storage cost and rebate as separate lines. Without that breakdown the final figure looks like an error.

If this is not the one

Sui coverage outside its own ecosystem is thin. These are what exists for cross-checking.

Suiscan: common questions

Why does my Sui address show multiple coin objects?

Because SUI is held in coin objects rather than a single balance, and you can hold many. Wallets merge them when needed. It is normal.

Why was one Sui transaction instant and another slower?

Transactions touching only objects you solely own skip full consensus ordering and finalise almost immediately. Transactions touching shared objects require consensus. Suiscan shows the ownership type of every object involved.

How do Sui contract upgrades work?

Packages are immutable objects, so an upgrade publishes a new version linked to the old one rather than swapping an implementation behind a proxy. The upgrade path is explicit on chain — check which version an application actually calls.

Does Suiscan have an API?

Yes, via Blockberry, with a key required and a free tier. Sui’s own JSON-RPC is the alternative if you want raw data.