Skip to content
Get started

Multi-chain · Review

Blockscout: the explorer new chains reach for first

When a new rollup launches, it almost always ships with a Blockscout instance on day one. That ubiquity is earned — it is the only credible open-source answer to Etherscan — and 2026 brought a change worth knowing about.

Updated 17 September 2026 · How we test · 11 min read
Free tier, key required Open source Self-hostable 120 chains

At a glance

Operator
Blockscout Limited
Launched
2018, at POA Network
Chains with instances
Over 120
Open source
Yes
Self-hostable
Yes — the primary use case
API key
Required since 1 July 2026
Free tier
~100,000 credits/day, 5 req/sec
API shape
Etherscan-compatible

The verdict

Blockscout is the open-source EVM explorer that matters, and for any chain too new or too small for Etherscan it is the default rather than a compromise. You can read the code, run it yourself, and audit how a figure is derived. It is slower and rougher than Etherscan, contract verification coverage lags, and API traffic moved behind a key in July 2026 — but it is the only tool here you can genuinely verify.

What it does well

  • Fully open source, so you can read exactly how any displayed figure is computed
  • Self-hostable, and this is the route most rollups take — over a hundred chains run an instance
  • Etherscan-compatible API endpoints, so migrating code is usually a base-URL change
  • Contract verification with support for Solidity, Vyper, standard JSON input and Sourcify
  • The obvious answer for a chain Etherscan does not cover, which is a growing set

Where it falls short

  • API traffic moved behind a key on 1 July 2026 — previously keyless code broke
  • Hosted instances are noticeably slower than Etherscan on equivalent lookups
  • Verified-contract coverage trails Etherscan on Ethereum mainnet by a wide margin
  • Instance quality varies enormously — a chain-operated deployment may be stale or under-resourced
  • Interface is functional rather than polished

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 5.0
Instances exist for over 120 chains, and for a new rollup it is frequently the only explorer that exists at all.
Data depth 4.0
Good contract verification with Sourcify support, though verified-contract coverage on Ethereum mainnet trails Etherscan by a wide margin.
Speed 3.0
Hosted instances are noticeably slower than the commercial alternatives, and a poorly-resourced chain-operated deployment can be slower still.
Privacy 4.0
Open source and self-hostable, which is the meaningful control. A hosted instance is still a hosted instance.
API 4.0
Etherscan-compatible, but keyed since 1 July 2026, which removed browser-callable access. The free tier is workable at 100,000 credits a day.
Interface 3.0
Functional rather than polished, and quality varies between deployments in a way the software itself is not responsible for.

Why an open-source explorer matters

An explorer is an interpretation. It reads a chain, decides how to aggregate it, and renders the result. Every one of those decisions could be wrong, and with a closed explorer you have no way to check — you either trust the output or you run a node and reconcile by hand.

With Blockscout you read the indexer. When a balance looks wrong, you can find the code that computed it. When two explorers disagree, you can see what one of them is doing differently. That is not a theoretical benefit: explorers disagree about token balances more often than people assume, usually over how they handle non-standard contracts that emit irregular transfer events.

The second reason is economic. Etherscan decides which chains it supports, and that decision is commercial. A new rollup cannot simply buy its way onto the list. Blockscout means a chain can have a credible explorer on the day it launches by running one, and that has made it the de facto standard for the entire rollup ecosystem.

The API key change, and what it broke

On 1 July 2026, Blockscout moved API traffic onto a keyed Pro API. Code that had been calling hosted instances anonymously stopped working.

The free tier is not stingy — roughly 100,000 credits a day at five requests per second, which covers most non-commercial use comfortably. But the change matters for one specific reason that has nothing to do with volume: a keyed API cannot be called from browser code. Anything that was calling a Blockscout instance directly from a front end now needs a server in between.

This is the same constraint Etherscan has always had, and it is why the number of genuinely browser-callable explorer APIs keeps shrinking. The survivors are Blockstream, mempool.space, Blockchair and 3xpl. Our API comparison tracks the current state, because it has now changed twice in eighteen months.

The one silver lining: if you self-host, none of this applies. Your instance, your rules, no key.

Instance quality varies, and that is the real catch

Blockscout's greatest strength creates its most common problem. Because anyone can run an instance, the explorer you land on for a given chain might be operated by the Blockscout team, by the chain foundation, by a third-party infrastructure provider, or by a single person who set it up eighteen months ago.

The symptoms of a neglected instance are recognisable: indexing lag of several thousand blocks, token balances that do not reconcile, contract verification that fails on valid input, or an old release with fixed bugs still present. None of this reflects on the software; all of it reflects on that deployment.

Two quick checks before you trust an instance. Compare its latest block height against the chain's own RPC or a second explorer — a gap of more than a few blocks means it is behind. And look for the version indicator in the footer; a release well over a year old is a warning.

SymptomLikely causeWhat to do
Recent transactions missingIndexer lagging the chain tipCheck tip height against the chain RPC; wait or use another instance
Token balance looks wrongNon-standard transfer events, or an incomplete token re-indexCross-check on a second explorer before acting on it
Verification rejects valid sourceCompiler version unavailable on that instanceTry Sourcify, or verify on a differently-operated instance
Contract shows as unverified elsewhereVerification is per-instance, not globalRe-verify on each instance you need it on

Contract verification, and where it lags

Blockscout verifies contracts properly — flattened Solidity, standard JSON input, multi-part source, Vyper, and integration with Sourcify, the decentralised verification repository. Mechanically it is sound.

The gap is coverage, and it is a network effect rather than a technical failure. When a project deploys on Ethereum mainnet it verifies on Etherscan, because that is where people will look. It may or may not also verify on Blockscout. The result is that a contract can show as verified on one and unverified on the other, which looks alarming and usually means nothing.

The Sourcify integration is the interesting counter-move, because Sourcify verification is portable — verify once, and any explorer that reads Sourcify can show the source. That is the right architecture, and it is slowly gaining ground. On rollups, where Blockscout is often the only explorer, coverage is naturally much better.

Running it yourself

This is the use case Blockscout is actually built for, and it shows. The stack is the indexer, a PostgreSQL database and the Phoenix web application, with Docker Compose configurations published for common setups.

You supply an archive node for the chain. That is the real cost and it dwarfs everything else — an Ethereum mainnet archive node is a multi-terabyte commitment. For a young rollup with a short history it is entirely tractable, which is precisely why rollups adopt this pattern: the chain is small, the explorer is free, and it is running before the first user arrives.

For an individual, self-hosting Blockscout for Ethereum mainnet is a serious undertaking and probably the wrong call. Otterscan against an Erigon node is far lighter if the goal is private lookups for yourself. Our self-hosting guide compares them on disk, memory and setup time.

If this is not the one

Blockscout occupies the middle ground between a hosted commercial explorer and running everything yourself. Both edges are worth knowing.

Blockscout: common questions

Is Blockscout free?

The software is open source and free to run. Hosted instances are free to browse. Since 1 July 2026 the API requires a key, with a free tier of roughly 100,000 credits a day at five requests per second.

Is Blockscout better than Etherscan?

Better on openness, self-hostability and coverage of newer chains. Worse on speed, polish and verified-contract coverage on Ethereum mainnet. For a rollup, Blockscout is usually the only real option; for mainnet contracts, Etherscan still leads.

Why does a contract show verified on Etherscan but not Blockscout?

Verification is per-explorer, not global. A project that verified on Etherscan may not have submitted to Blockscout. It says nothing about the contract itself. Sourcify-based verification is portable and is slowly fixing this.

Can I run Blockscout for my own chain?

Yes — that is the primary use case. You need an archive node, PostgreSQL and the indexer; Docker configurations are published. Over 120 chains run instances this way.

Why is the Blockscout instance for my chain out of date?

Because instances are operated independently and quality varies. Compare its tip height with the chain’s own RPC. If it is thousands of blocks behind, that deployment is lagging — the software is not the problem.