TRON Blockchain Explorers

To look up any TRON mainnet address and see its balance, transaction history, and token holdings, use one of the following block explorers:

  • TRONScan: tronscan.org – The official TRON block explorer.
  • OKLink: oklink.com/tron – Multi-chain explorer with TRON support.
  • Blockexplorer.one: TRON mainnet blocks and transactions.

Checking an Address via API

You can query TRON address data programmatically using the TronGrid REST API:

GET https://api.trongrid.io/v1/accounts/{address}

This returns the TRX balance, bandwidth, energy, and all TRC-10 and TRC-20 token balances associated with the address.

What Information Is Visible On-Chain?

Every TRON mainnet address exposes the following public information:

  • TRX balance (in SUN; 1 TRX = 1,000,000 SUN)
  • TRC-10 and TRC-20 token balances
  • Full transaction history
  • Bandwidth and Energy resources
  • Staking and voting activity
  • Account activation status and creation date

TRON addresses are pseudonymous. While the address itself does not reveal identity, all transactions are permanently and publicly visible on-chain.

Validating a TRON Address

A valid TRON mainnet address must:

  • Start with the letter T
  • Be exactly 34 characters long
  • Contain only Base58 characters (no 0, O, I, or l)
  • Pass the Base58Check checksum validation