BTC:
ETH:
SOL:
BNB:
XRP:
Explorers

Reading a block explorer, explained

Every number a trading app shows you—balance, holders, mint authority, LP lock—ultimately comes from a block explorer reading the chain directly. Learning to read the source yourself is the fastest way to stop trusting a dashboard on faith.

8 min readReviewed July 14, 2026Network primer

The short answer

A block explorer is a read-only website that indexes a chain and lets you look up any address, transaction, or token by pasting it into a search bar—no wallet connection, signature, or account required. Solana has two explorers worth knowing: the official Solana Explorer (canonical raw data, maintained by the Solana Foundation) and Solscan (friendlier decoding of swaps, holders, and token metadata). Robinhood Chain uses a different explorer entirely—Blockscout, the chain's official explorer since block one, not Etherscan.

Reading a Solana transaction

Paste a transaction signature into either Solana explorer and you land on a summary panel: status (success or failed), the slot it landed in, the fee payer, and the total fee paid in SOL. Below that sits the part that actually matters—the decoded instruction list, showing which programs the transaction called (System Program, the SPL Token program, Jupiter's router, a specific AMM) in the order they executed.

A balance-changes view (Solscan calls it out explicitly; the official explorer shows it inline) lists every SOL and token balance delta across every account touched, with pre- and post-balances side by side. That view is where you confirm what a swap actually did—what left one account, what arrived in another, and whether a new associated token account got created and funded along the way. If a transaction shows a program you don't recognize interacting with your wallet, that's the instruction list to inspect before assuming a swap or approval did only what the app's UI implied.

Reading a token mint

Paste a token's mint address and both Solana explorers show supply, decimals, and—critically—the mint authority and freeze authority fields. Mint authority set to anything other than None means whoever holds that authority can create new supply at will; freeze authority set means they can freeze individual token accounts, blocking transfers entirely. See reading a contract for why both should read None before you treat a token as immutable.

Solscan's holders tab ranks every wallet by balance and share of supply—the fastest way to see concentration risk directly, without trusting a scanner's summarized percentage. The official explorer exposes the same data through its token accounts list, just with less curation.

An explorer answers what the chain recorded; a market scanner reorganizes that data around pools, prices, and activity. The DEX Screener guide explains how to move between those two views without mistaking an indexed market field for raw chain truth.

Robinhood Chain: same idea, different explorer

Robinhood Chain is an EVM-compatible Arbitrum Layer 2, and its official block explorer is Blockscout at robinhoodchain.blockscout.com—not Etherscan. That distinction matters beyond branding: the Etherscan API v2 does not support Robinhood Chain's chain ID (4663), so any contract verification, API integration, or tooling config has to point at Blockscout specifically (Smithii). The reading experience carries over from Ethereum tooling almost exactly: a transaction page shows status, gas used, and decoded contract logs; an address page shows ETH balance, ERC-20 token holdings, and a Contract tab where a verified source—if the deployer published one—becomes readable line by line. See Robinhood Chain: the field guide for the broader network context.

A verified contract badge on Blockscout means the published source code compiles to the exact bytecode deployed on-chain—it says nothing about whether that code is safe, only that what you're reading is genuinely what's running. Unverified contracts still execute normally; you simply can't read their logic without decompiling bytecode yourself.

What to pull from an explorer before you trust a number

  1. The raw transaction, not just the app's summary. Confirm status, fee, and the full decoded instruction or log list independently.
  2. Mint or contract authority fields. On Solana, mint and freeze authority; on Robinhood Chain, whether the contract is verified and what its owner-only functions can do.
  3. Holder distribution, ranked. Top-holder concentration read directly off the explorer's holders list, not a scanner's rounded summary.
  4. Program or contract identity. Whether an unfamiliar address in a transaction is a known program, a verified contract, or something with no public source at all.

Official sources

Turn the lesson into evidence

Preflight an address instead of a search bar.

Paste a public address and get the same underlying chain data an explorer shows, reconstructed into a journal you can actually act on.

Open Solana preflight