How to read a block explorer
A block explorer is a public search engine for a blockchain. Here is what the main fields on a transaction, address, and block page mean, and how to verify things yourself.
Quick answer
A block explorer is a website that indexes a public blockchain so anyone can search it. You can look up a transaction by its hash, an account by its address, or a block by its number, and read the same ledger every node sees. Explorers are read-only: they do not hold your funds or keys and cannot reverse anything. Reading one lets you independently verify status, amounts, and fees.
Key points
- A block explorer indexes a public blockchain and lets anyone search it without an account.
- You can look up transactions by hash, accounts by address, and blocks by number.
- A transaction page shows status, sender and recipient, value, gas used, fee, nonce, and confirmations.
- Explorers are read-only tools; they do not custody funds or private keys.
- Reading one yourself is the most reliable way to verify a payment rather than trusting a screenshot.
What a block explorer is
Because a public blockchain is replicated across thousands of nodes, its entire history is open to inspection. A block explorer is simply a website that makes that history searchable. Etherscan, the most widely used explorer for Ethereum, describes itself as a service “that allows users to easily look up, confirm, and validate transactions that have taken place on the Ethereum Blockchain.” Think of it as a search engine pointed at the ledger.
Two facts about explorers should be fixed in mind before anything else. First, an explorer is independent infrastructure, not the blockchain itself; Etherscan notes that it “is not funded, operated, or managed by the Ethereum Foundation but instead exists as an independent entity.” It is a convenient window onto data that every node holds. Second, and more importantly for safety, an explorer is read-only. In Etherscan’s own words, it is “not a wallet service provider, we do not store your private keys and we have no control over the transactions.” An explorer can show you what happened; it can never move your funds, and it will never legitimately ask for your private key or seed phrase.
The three things you can look up
Almost everything on an explorer is one of three types of object, each with its own kind of identifier.
- A transaction, identified by a transaction hash: a long string beginning with 0x. This is the record of a single action.
- An address, identified by the account or contract address, also beginning with 0x. This is a participant, either a person’s account or a smart contract.
- A block, identified by a block number: the batch of transactions confirmed together at a point in the chain.
Paste any of these into the search bar and the explorer takes you to the relevant page. All three views are drawn from the same underlying ledger; they are just different ways of slicing it.
Reading a transaction page
The transaction page is where you will spend most of your time, and its fields map directly onto the transaction structure described in Ethereum’s documentation. The most important ones:
Status
Usually shown as Success or Failed. This is the first thing to check. A green Success means the transaction executed as intended; a Failed status means it was included in a block but did not achieve its effect, for example because a contract call reverted, and, as covered elsewhere, it still consumed gas.
Transaction hash
The unique identifier for this transaction. It is generated when the transaction is created and is how you or anyone else can find and reference it later. If someone claims to have paid you, the transaction hash is the thing to ask for and verify.
Block and confirmations
The block number the transaction was included in, often shown alongside a confirmation count. As discussed in the article on confirmations, more confirmations mean the transaction is buried deeper and is harder to reverse.
From and To
The sender’s address and the recipient’s address. If the “To” is a contract, the explorer will usually label it and may show the specific function that was called.
Value
The amount of the native currency transferred. Note that a transaction can carry a value of zero and still be meaningful, for instance when its purpose is to call a contract function rather than move funds.
Transaction fee and gas
The fee paid, usually broken down into the gas used and the price per gas. This lets you see exactly what the computation cost, and, on Ethereum, how the base fee and priority tip combined.
Nonce
The sender’s transaction counter. Ethereum’s documentation defines the nonce as “a sequentially incrementing counter which indicates the transaction number from the account,” which fixes the order of that account’s transactions.
Reading an address page
Searching an address shows the account’s public activity: its current balance, the tokens it holds, and a list of its transactions. For a smart contract address, an explorer typically offers additional tabs. Many contracts have their source code published and verified on the explorer, letting you read exactly what the contract does, and some explorers provide a way to call the contract’s read-only functions directly from the page.
An address page is a powerful diligence tool, but it demands care in interpretation. Because activity is pseudonymous, an address is not a name; seeing transactions to or from an address tells you what happened, not who did it. And a balance or a list of holdings is a factual record, not an endorsement, of anything.
Reading a block page
A block page shows the metadata for one block: its number, its timestamp, who proposed it, the list of transactions it contains, and figures for the gas used across the block. In everyday use you will look at block pages less often than transaction pages, but they are useful for seeing the context a transaction sits in and for confirming how long ago it was confirmed.
Practical uses, and one important caution
Reading an explorer turns you from someone who takes claims on trust into someone who can verify. A screenshot of a wallet showing a payment proves very little; anyone can fake an image. A transaction hash that resolves on a public explorer to a Success status, the right amount, the right recipient, and a healthy confirmation count is strong, independent evidence. This is why the correct response to “I’ve sent it, here’s a screenshot” is to ask for the transaction hash and check it yourself.
The caution is the mirror image of the explorer’s usefulness, and it is worth repeating because scammers exploit it. An explorer is read-only and never needs access to your account. No legitimate explorer will ask you to “connect” in order to unlock, verify, or release funds, or ask for your seed phrase or private key. Any site that does either is not an explorer; it is an attempt to steal your keys. Use explorers for what they are, a transparent, public record you can read, and the boundary stays clear: they let you confirm the truth, and they can never change it.
Checking a token or contract before you interact
Beyond confirming payments, an explorer is a first line of due diligence before interacting with an unfamiliar token or contract. A few habits make it far more useful. Look for a verified source code label on a contract page: it means the human-readable code has been published and matches the deployed bytecode, so what the contract does is open to inspection rather than hidden. Check the contract’s age and activity, since a brand-new address with no history warrants more caution than a long-established one. And treat the name shown next to a token as a claim, not proof; many tokens can use the same name, and only the underlying contract address uniquely identifies which one you are dealing with.
A related trap is worth naming because explorers make it visible. Anyone can send you a token or a tiny transaction you did not ask for, and it will appear on your address page. Its presence there is not an endorsement, a gift you should act on, or a sign your account is compromised; it is simply a record that someone sent something. Unsolicited tokens are a common bait used to lure people into interacting with a malicious contract. Reading the explorer calmly, and understanding that an incoming entry is just data on a public ledger, is the defence.
Sources
Frequently asked questions
Do I need an account to use a block explorer?
Can a block explorer move or recover my funds?
What is the difference between a transaction hash and an address?
How do I verify that someone actually paid me?
A site claiming to be an explorer asked me to connect my wallet or enter my seed phrase. Is that normal?
Note: CamoCrypt is security & education only — no prices, no predictions, no investment advice. Verify every address and contract yourself; we cannot recover lost funds and neither can anyone who contacts you claiming they can.