Skip to content
Get started

Single chain · Review

HashScan: an explorer for something that is not quite a blockchain

Hedera is a directed acyclic graph with gossip-based consensus and a governing council of named organisations. Calling it a blockchain is a stretch, and HashScan does not pretend otherwise.

Updated 17 September 2026 · How we test · 9 min read
Free, no key Open source Self-hostable 1 chain

At a glance

Operator
Swirlds Labs and Hedera community
Launched
2022
Network
Hedera
Structure
Hashgraph DAG, not a chain
Governance
Permissioned council
API
Mirror node REST, no key
Open source
Yes
Finality
Seconds

The verdict

HashScan covers Hedera properly — consensus service topics, native tokens, smart contracts and account structure — and it is built on the open Hedera mirror node API, which requires no key. It is honest about Hedera’s architecture rather than dressing it up as a conventional chain. The governance model is a genuine consideration, and it is one the explorer surfaces rather than hides.

What it does well

  • Built on the open mirror node REST API, which needs no key at all
  • Consensus Service topics and messages presented as first-class, which nothing else does
  • Token Service handled natively — Hedera tokens are protocol objects, not contracts
  • Council and node information is visible, which matters given the governance model
  • Fast, since Hedera finalises in seconds and the mirror nodes keep pace

Where it falls short

  • Hedera’s permissioned council is a meaningful decentralisation trade-off
  • Smaller ecosystem, so third-party cross-checking is limited
  • EVM-compatible contracts sit awkwardly alongside native services
  • Interface assumes familiarity with Hedera’s service vocabulary

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
Hedera only.
Data depth 4.0
Consensus Service topics, Token Service transfers, account structure and the EVM contract layer. Complete on the native services, thinner on Solidity.
Speed 5.0
Fast, helped by Hedera finalising in seconds and by mirror nodes being purpose-built for queries.
Privacy 3.0
Open source, and the mirror node it reads can be run by anyone, which is an unusually clean separation.
API 5.0
The mirror node REST API is open, documented and keyless, and it is part of the platform rather than a product built on top.
Interface 4.0
Direct and honest about a structure that is not a chain of blocks, at the cost of assuming Hedera’s service vocabulary.

Not a chain of blocks

Hedera uses hashgraph consensus — a gossip protocol where nodes share what they know and, crucially, share metadata about who told them what. From that the network derives a consistent ordering of events without mining or leader election.

The structure is a directed acyclic graph rather than a linear chain. There is no block interval to wait for and no reorganisation risk in the conventional sense; consensus timestamps are assigned and finality arrives in seconds.

This changes what an explorer shows. There are no blocks to browse in the familiar sense — there are transactions with consensus timestamps. HashScan presents it that way rather than manufacturing a block abstraction, which is the honest choice and initially disorienting if you arrived from Bitcoin or Ethereum.

The trade-off is governance. Consensus nodes are operated by a council of named organisations rather than being permissionless. Anyone can use the network; not anyone can run a consensus node. That is a deliberate design decision with real implications, and whether it is acceptable depends entirely on what you are using it for.

Services rather than contracts

Hedera exposes native services rather than expecting everything to be built in smart contracts, which is a genuinely different architecture.

The Consensus Service provides ordered, timestamped message streams on topics. Applications use it as a tamper-evident audit log without deploying any contract. HashScan shows topics and their messages directly.

The Token Service creates and transfers tokens at protocol level. Like Cardano's native assets, these are not contracts — which means no contract to audit, no upgradeable transfer logic, and no approval exploit surface.

There is also an EVM-compatible smart contract service for Solidity, which sits somewhat awkwardly beside the native services and is the least distinctive part of the platform.

For an explorer, the interesting consequence is that most Hedera activity is legible without decoding. A token transfer is a token transfer at protocol level, not a contract call that must be interpreted.

Mirror nodes: the API question, solved differently

Hedera separates consensus nodes from mirror nodes. Consensus nodes run the network; mirror nodes maintain a queryable history and serve a public REST API.

This is an unusually sensible arrangement. The API is part of the platform rather than a product some company built on top, it is openly documented, and public mirror nodes serve it without a key. We confirmed this — no registration, no token.

It means HashScan is a front end over an API anyone can call, and anyone can run their own mirror node if they want independence. That combination — open API, open explorer, self-hostable infrastructure — is rarer than it should be, and it stands in contrast to the direction Etherscan and Blockscout have both moved in.

Our API comparison lists Hedera's mirror node among the genuinely keyless options, which is a short list.

Reading Hedera accounts

Hedera account IDs look like 0.0.123456 — a shard, a realm and an account number — rather than a hash. Readable, and initially odd.

Fees are denominated in US dollars and paid in HBAR at the current rate, which makes costs predictable in a way variable gas markets are not. HashScan shows both the HBAR amount and its dollar equivalent, which is the point of the design.

Token association is the mechanism that catches people: an account must associate with a token before it can receive it, which is the same structural idea as XRP Ledger trust lines and Stellar trustlines. The consequence is the same too — unsolicited token spam cannot happen, and a transfer to an unassociated account fails.

That pattern recurring across three unrelated chains is worth noting. Every network that requires explicit opt-in to hold an asset has eliminated token spam entirely, while every network that does not has a serious problem with it.

What our reference tests showed

We tested Hedera against items chosen to exercise its native services rather than its EVM compatibility layer, since the native services are the distinctive part.

An HBAR transfer rendered with both the HBAR amount and its dollar equivalent, which is the point of Hedera's dollar-denominated fee model and is presented well.

A Token Service transfer to an associated account worked and read cleanly. A transfer to an unassociated account failed, as the model requires, and the failure reason was legible — which is the same structural pattern as XRP Ledger trust lines and Stellar trustlines, and the same one we tested for on those chains.

The Consensus Service topic was the test with no equivalent elsewhere. We looked at an active topic and its message stream, each message carrying a consensus timestamp and sequence number. For an application using Hedera as an audit log rather than as a value ledger, that view is the entire product, and no general-purpose explorer would show it at all.

We confirmed the mirror node API works without a key from a clean request, which is the claim most worth verifying given how many "free" APIs now require registration. It did, and the response was well-formed and documented.

The EVM contract layer worked but felt like a guest. Contract calls rendered adequately and without the depth an EVM-native explorer provides. Our reading is that Hedera's own services are where this platform is coherent, and the Solidity compatibility is a bridge rather than a destination.

If this is not the one

Hedera coverage elsewhere is minimal. These are listed for completeness rather than as equivalents.

HashScan: common questions

Is Hedera a blockchain?

Not strictly. It uses hashgraph consensus over a directed acyclic graph rather than a chain of blocks, with a permissioned council operating consensus nodes.

Does the Hedera API need a key?

No. The mirror node REST API is open and public instances serve it without registration. You can also run your own mirror node.

Why did my Hedera token transfer fail?

Most likely the recipient had not associated with that token. Hedera requires explicit association before an account can receive a token — the same idea as a trustline.

What is the Hedera Consensus Service?

A native service providing ordered, timestamped message streams on topics, usable as a tamper-evident audit log without deploying a smart contract. HashScan shows topics and messages directly.