Skip to content
Get started

Single chain · Review

LineaScan: familiar tooling, a different settlement story

Linea is a zkEVM, which means your Solidity contracts work unchanged and the settlement model does not. LineaScan gives you the familiar interface and one genuinely Linea-specific view.

Updated 17 September 2026 · How we test · 9 min read
Free tier, key required 1 chain

At a glance

Operator
Etherscan Ltd
Launched
2023
Chain
Linea
Chain ID
59144
Architecture
zkEVM validity rollup
Built by
Consensys
Settles to
Ethereum
API key
Etherscan V2 key works

The verdict

LineaScan is competent, predictable Etherscan-family tooling on a zkEVM. Contract verification, proxy resolution and the read/write tabs all behave exactly as they do on Ethereum, which is the point of a zkEVM. The proof batch view is the only thing here you cannot get from a generic EVM explorer, and it is the thing worth understanding.

What it does well

  • Full Etherscan contract tooling with no behavioural surprises
  • Proof batch status showing when a transaction is verified on Ethereum
  • Covered by the Etherscan V2 free key with chainid=59144
  • Solidity contracts and EVM tooling work without modification, which the explorer reflects
  • Fast and reliable, with none of the indexing lag smaller explorers suffer

Where it falls short

  • Very little that is distinctive — it is Etherscan with different data
  • Proof and settlement mechanics are shown but not explained
  • Closed source, no self-hosting, standard privacy position
  • Blockscout instances cover Linea and are open source

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
Linea only, with the Etherscan V2 key covering it alongside sixty other networks.
Data depth 4.0
Full Etherscan tooling plus proof batch verification status. Everything works exactly as on Ethereum, which is what zkEVM equivalence buys.
Speed 4.0
Responsive, helped by a short chain history.
Privacy 2.0
The standard Etherscan-family position, with Blockscout available as the open-source alternative on this chain.
API 5.0
Etherscan V2 key with chainid 59144, sharing the same per-second limit across chains.
Interface 4.0
Clean and predictable, with the settlement fields present and unexplained.

What zkEVM equivalence buys you

Linea is a zkEVM: it executes EVM bytecode and produces validity proofs that the execution was correct, verified on Ethereum.

The practical consequence is that nothing changes for developers. Solidity compiles the same, contracts deploy the same, tooling works unmodified, and an address on Linea looks exactly like an address on Ethereum. That equivalence is hard engineering and the visible result is that nothing is unusual.

It also means an explorer has little to invent. LineaScan can be Etherscan because Linea is Ethereum-equivalent at the execution level. The familiarity is the product.

The contrast with Starknet is instructive. Starknet chose Cairo, gaining efficiency and native account abstraction at the cost of an entirely separate toolchain. Linea chose compatibility. Neither is wrong; they are different bets about where the friction should sit.

Proof batches, and what settled actually means

This is the one genuinely Linea-specific thing on the site.

Your transaction is executed by Linea's sequencer and confirmed within seconds. It is then batched, a validity proof is generated for the batch, and that proof is verified on Ethereum. Only at that last step is the transaction settled in the strongest sense.

Proof generation is computationally expensive, so there is a real gap between confirmation and verification — minutes to hours depending on batch composition and network conditions.

The important difference from Base and Arbitrum is that there is no challenge window afterwards. Once the proof verifies, it is final. An optimistic rollup must wait days for a dispute period that a validity rollup does not have.

LineaScan shows the batch and its verification status. For a large transfer or a bridge withdrawal, that is the field that answers "is this actually done".

Rollup typeExamplesTime to L1 finalityWhy
OptimisticBase, ArbitrumDaysFraud-proof challenge window must elapse
Validity (zk)Linea, Starknet, ScrollMinutes to hoursProof generation and verification; no dispute period

The tooling, briefly

Contract verification, read and write tabs, proxy resolution, token transfer lists, the approval checker — all present, all behaving as on Etherscan. There is nothing to learn and nothing to warn you about.

The approval checker deserves the same recommendation it gets everywhere: check it periodically and revoke what you no longer use. Approvals are per-chain, so approvals granted on Ethereum do not appear here and vice versa. Each chain needs checking separately, which people consistently forget.

Fees on Linea are low, and became lower after EIP-4844 reduced the cost of posting data to Ethereum. The gas tracker exists and is rarely the deciding factor.

When to use something else

Blockscout covers Linea and is open source. On a chain with a short history, self-hosting is genuinely feasible, and if you want to verify rather than trust an index, that is the route.

3xpl is faster for a plain lookup and works without JavaScript.

And the Etherscan V2 API covers Linea on chain ID 59144, so if you already hold a key you have Linea access without any additional integration. That consolidation remains the strongest practical argument for the Etherscan family as a whole — one key, sixty chains, one shape.

What our reference tests showed

Our EVM reference set is the same on every chain: a plain transfer, an ERC-20 transfer, a verified contract read, a proxy contract, a failed transaction with a revert reason, and a token approval.

LineaScan handled all six exactly as Etherscan does, which is the expected and correct result for a zkEVM — the whole engineering point of EVM equivalence is that nothing behaves differently. The proxy resolved to its implementation without prompting. The revert reason appeared as a readable string rather than raw hex, which is not universal among EVM explorers and is the single field that saves the most time when debugging.

The approval checker found and listed a test approval correctly, and revoking from the interface worked.

What we then did was compare settlement reporting against an optimistic rollup. We submitted comparable transactions on Linea and on Base and watched both explorers. Linea reported its proof batch verified on Ethereum well inside the window during which the Base transaction was still merely confirmed by its sequencer, with days of challenge period ahead of it.

That comparison is worth doing yourself if you move significant value across rollups, because the marketing language is identical and the guarantees are not. Both explorers use the word "confirmed". Only one of them, at that moment, meant settled.

The gap in LineaScan is explanatory rather than factual. Every field we needed was present and correct. None of them was labelled in a way that would tell a newcomer which one mattered, which is why this review spends more time on the proof batch than on the tooling.

Who should use LineaScan

Anyone deploying or reading contracts on Linea. The tooling is the Etherscan set and the ecosystem expects verification to appear here, so it is the practical default whether or not you prefer it.

Anyone moving meaningful value off Linea. The proof batch status is the field that answers whether a transaction is settled on Ethereum, and no generic EVM explorer surfaces it.

Anyone already holding an Etherscan V2 key, because Linea comes free with it and needs no separate integration.

Not, we would suggest, anyone who wants an explorer they can verify. Blockscout covers Linea, is open source, and on a chain this young is genuinely practical to self-host. If the reason you are reading a review site is that you would rather not take an index on trust, that is the option to take.

If this is not the one

Linea is standard EVM territory, so most EVM explorers cover it. These are the ones with a reason to prefer them.

LineaScan: common questions

What is a zkEVM?

A rollup that executes EVM bytecode and produces cryptographic validity proofs of correct execution, verified on Ethereum. Solidity contracts and EVM tooling work unchanged.

How long until a Linea transaction is final on Ethereum?

Minutes to hours, depending on proof generation and batch composition. There is no challenge window afterwards — once the proof verifies, it is final, unlike optimistic rollups which wait days.

Does LineaScan need its own API key?

No. The Etherscan V2 key covers Linea with chainid=59144.

Are my Ethereum token approvals visible on Linea?

No. Approvals are per-chain. Check each chain separately — this is a common oversight.