Sui / transaction

Sui transaction lookup

Look up any Sui transaction on SuiVision. tx.taxi detects the format, picks the right Sui explorer, and redirects.

Sui uses an object-centric model where accounts, coins, and on-chain assets are all addressed as objects. Sui addresses and object IDs are 32-byte values written as a 0x prefix followed by 64 hex characters - longer than an Ethereum address but in a similar shape. Transaction digests are base58-encoded strings, which is the easy signal that distinguishes a Sui tx from an EVM tx. Paste any Sui value at tx.taxi/{value} and the router classifies the format and 302-redirects you to the matching SuiVision page, whether it's an address, an object, or a transaction digest. On this page: Sui transaction lookups specifically.

How it works

  1. Copy your Sui transaction (e.g. the transaction hash from your wallet).
  2. Paste into the search above or visit tx.taxi/<your-transaction> directly.
  3. tx.taxi detects the Sui format and redirects to SuiVision.

Frequently asked questions

How long is a Sui address?

A Sui address is 32 bytes, written as '0x' followed by 64 hex characters. That is twice the length of an Ethereum address. Object IDs use the same 32-byte format.

What format are Sui transaction digests?

Sui transaction digests are base58-encoded strings, not hex. That makes them easy to tell apart from EVM transaction hashes, which are always 0x-prefixed hex.

What is an object on Sui?

Sui's data model treats accounts, NFTs, coin balances, and contract state as discrete objects, each with its own 32-byte ID. SuiVision shows object metadata, owner, and version history when you look one up.

Related