Block Explorer Development (Blockscout)
Block explorer development and operations for EVM chains and rollups. We deploy, customize for non-standard networks, and operate Blockscout explorers in production, from standard throughput to million-TPS chains.
A chain without a working block explorer has no transparency, no way for developers to debug failed transactions, and no way for users to independently verify that a transaction settled. For chains, rollups, and app-chains, that means no ecosystem credibility and no developer trust at launch.
A block explorer is the web interface that makes a blockchain readable: every block, transaction, address, token, and smart contract, searchable in real time. Block explorer development is the engineering work of standing one up for a specific network and keeping it accurate under load.
For EVM chains and rollups the open-source standard is Blockscout, and deploying it well is rarely a stock install. Protofire deploys, customizes, hosts, and operates Blockscout explorers for chains, rollups, and foundations in production. We treat the explorer as core ecosystem infrastructure and build it accordingly: branded UI, custom indexing for non-standard networks, source-code verification, public APIs, and long-term maintenance and incident response. When a network's data outgrows a default deployment, we tune the database and the hardware until the explorer keeps pace with the chain.
We work with EVM L1/L2 chains and app-chains that want a production-grade explorer at mainnet without pulling their core team off protocol work. We also work with high-throughput or non-standard networks (UTXO/EVM hybrids, multi-sharded chains) where a stock Blockscout install simply will not keep up.
A Blockscout explorer stack built and operated end to end
Every layer from the chain's RPC endpoints to the user's browser, deployed, tuned, and maintained by Protofire.
Chain / RPC Layer
Indexer
Database (Postgres)
Contract Verification
Backend API
Branded Frontend
What is a block explorer?
A block explorer (also called a blockchain explorer) is a search and visualization tool for on-chain data. It reads from a node and an index of the chain, then renders blocks, transactions, addresses, balances, token transfers, contract code, and event logs in a browsable interface.
Developers use it to verify and read smart contracts, debug failed transactions, and track gas; validators and operators use it to monitor network health; end users use it as the trust layer, the proof that a transaction actually settled. For a chain, an explorer is table-stakes ecosystem tooling: without one, developers cannot debug and users cannot independently verify activity.
Block explorer development covers all three layers: the indexer that ingests chain data, the backend API that serves it, and the frontend that renders it. It also covers the operations that keep them in sync as the chain produces new blocks.
How does Protofire deploy and customize Blockscout?
Blockscout is the most widely used open-source explorer for EVM networks, and it is the base we deploy from. A deployment is more than running the stack: we wire up chain config, RPC, and indexing, apply branding so the explorer matches the network, and build custom development where a default install does not fit. Quai, for example, combines the EVM and UTXO models with multi-sharding, a non-standard execution model that stock Blockscout does not handle out of the box, so we extended the deployment to index it correctly and improve overall network productivity.
We also host the full solution, including on bare metal for networks with many users and heavy usage, where managed cloud gets expensive; for Harmony, a multi-sharded network with heavy usage, we enhanced the UI and optimized infrastructure cost that way. Because Blockscout is open-source, there is no per-seat licensing and no vendor lock-in as the network grows.
Indexing, contract verification, and explorer APIs
The hard part of a custom block explorer is keeping the index in lockstep with a live chain. Indexing has to ingest blocks as fast as they are produced. On a high-throughput network that means tuning the database (Postgres memory, vacuum thresholds, critical indexes, query plans) and the ingestion pipeline (batch sizes, concurrency) rather than accepting the defaults.
Source-code verification lets developers upload Solidity, which is matched against deployed bytecode to expose read/write contract UIs once verified. That is the feature that turns an explorer into a developer tool rather than a passive data viewer.
A public, well-optimized API lets builders, wallets, and ecosystem tools query on-chain data directly without standing up their own indexing stack. We pair explorer work with our broader indexing capability (we run subgraph infrastructure and are a top-3 indexer in The Graph ecosystem) and with the RPC endpoints the explorer reads from, so the read side of the network is engineered as one coherent data layer rather than four disconnected services.
Who is block explorer development for?
This service is for EVM L1/L2 chains and app-chains, typically around a mainnet launch or a testnet upgrade, that need a branded explorer as an ecosystem primitive but do not want to build and staff one in-house. It is for foundations and ecosystem-growth teams closing tooling gaps against competitor chains, where explorer quality is starting to block ecosystem credibility.
It is for rollups and high-throughput networks where a stock install cannot keep pace, and for networks with non-standard execution (UTXO/EVM hybrids, multi-sharding) that need genuine custom Blockscout development. The common trigger is the same: the core team would rather stay on protocol priorities than own explorer operations. It is not a fit for non-EVM chains with no EVM compatibility, or for pre-mainnet networks with no production chain data to index yet.
How a deployment works
Setup
Deployment
Ongoing Support
What chains come to us for
How we scaled a Blockscout explorer to a million-TPS network
Somnia is an EVM-compatible Layer 1 designed for bursts of up to one million transactions per second with sub-second finality; during testnet it processed up to 103 million transactions per day. A default Blockscout deployment could not absorb that: a rapidly growing Postgres database (19+ TB, 2B+ rows) caused query slowdowns and indexing delays, and stock infrastructure was insufficient for the throughput.
We optimized the explorer at the database, infrastructure, and application layers at once: tuning Postgres for large-scale ingestion (memory, vacuum thresholds, critical indexes, query optimization), deploying a 96-core, 1 TB RAM, 100+ TB storage machine with containerized orchestration, and tuning batch sizes and concurrency for high-throughput indexing, while preserving contract verification, address lookups, search, and analytics under load. The result: the explorer indexed up to 103 million transactions in a single day, held a 2B+-row dataset without query slowdown, and kept near-instantaneous block, transaction, and contract lookups despite record-breaking throughput.
An infrastructure team that operates the explorers it installs
Protofire is a blockchain infrastructure and development company that has shipped 250+ projects since 2016, across 60+ networks and 95+ protocols. On the data and infrastructure side we are a top-3 indexer in The Graph ecosystem, a Filecoin infrastructure partner since 2021, an official Safe Guardian, and the maintainer of Solhint, the open-source Solidity linter used by 1M+ developers.
We run Blockscout and explorer infrastructure in production: the Somnia Blockscout explorer built to scale toward one million TPS, and a rebuilt Gnosis explorer holding 99.99% uptime across 300,000+ validated addresses while lifting developer activity 40% with sub-second queries. When we deploy an explorer we also operate it, monitoring, updates, and incident response, so your team never inherits a static install to maintain alone.
“Explorers designed as core infrastructure, not a default install left to rot.”
We deployed and optimized the Somnia Blockscout explorer to index up to 103 million transactions per day on a network targeting one million TPS, tuning Postgres (19+ TB, 2B+ rows) and deploying a 96-core, 1 TB RAM machine to keep the explorer in lockstep at record-breaking throughput.
We enhanced the Gnosis Conditional Tokens Explorer to deliver 99.99% uptime across 300,000+ validated addresses with sub-second queries, driving a 40% increase in developer engagement.
A stock Blockscout install vs a production explorer
| A stock Blockscout install | Protofire | |
|---|---|---|
| Non-standard networks | Breaks on UTXO/EVM hybrids and multi-sharded chains | Custom indexing for non-standard networks |
| Scale under load | Falls behind as the chain grows | Database and hardware tuned to keep pace |
| Branding and APIs | Default UI, generic endpoints | Branded UI, source-code verification, public APIs |
| Operations | You host, monitor, and patch it | Hosted, monitored, maintained, with incident response |
FAQ
What is a block explorer?
Blockscout vs Etherscan, what's the difference?
Can you customize Blockscout for a non-standard chain?
How long does a Blockscout deployment take?
Do you host and maintain the explorer, or just deploy it?
We're a chain or foundation, can you run our explorer as an ecosystem primitive?
Reviewed by Arsenii Petrovich, Infrastructure & DevOps Lead at Protofire. Last reviewed: June 2026.


