Skip to content
Get started

LTC · UTXO model · since 2011

Litecoin blockchain explorers and the MWEB blind spot

Litecoin inherited the clearest fee interface in crypto for free, because it was open source. It also has a confidential extension block that no explorer can see into, by design.

Updated 17 September 2026 · 4 explorers compared · How we test
Try
Ticker
LTC
Launched
2011
Block time
about 2.5 minutes
State model
UTXO
Live lookup here
Yes

UTXO: Coins live as discrete unspent outputs; balances are calculated, not stored.

The best Litecoin explorers

Litecoin is structurally close to Bitcoin, so the good Bitcoin tooling that covers it tends to beat the Litecoin-specific alternatives.

  1. 1

    The mempool.space codebase pointed at Litecoin, including careful MWEB handling. Open source, self-hostable, keyless API, onion service.

    Free, no key Open source Tor Full review
  2. 2

    Query layer and keyless API, useful for filtering across many transactions or comparing against Bitcoin.

    Free, no key Tor No-JS Full review
  3. 3

    Webhooks and transaction construction on a consistent API shared with Bitcoin and Dogecoin.

    Free tier, key required No-JS Full review
  4. 4

    Broad multi-chain coverage, shallow depth. A cross-check rather than a primary tool.

    Free tier, key required Full review

What Litecoin inherited, and why it matters

mempool.space is open source, and litecoinspace.org is that codebase pointed at Litecoin. The projected-blocks view, the fee bands, the mempool visualisation, the transaction pages — all of it, working on a different chain.

This is open source doing the thing it is supposed to do. Litecoin's explorer landscape was previously thin, and rather than someone spending a year rebuilding a good fee interface, an existing one was adapted.

The practical benefit is that the skills transfer completely. If you can read mempool.space, you can read this — same layout, same terminology, same meaning for every field. Given how much of what makes an explorer useful is familiarity, that is worth more than any individual feature.

It also means the API is Esplora-compatible and keyless, so Bitcoin code works here with a base-URL change. For anyone supporting both chains that removes a real amount of work.

Litecoin fees are a different problem

Litecoin produces blocks roughly every two and a half minutes, four times faster than Bitcoin, and has far less transaction demand. The result is that fee pressure is minimal almost all of the time.

So the fee interface serves a different purpose here. On Bitcoin it is the tool you reach for when something is stuck. On Litecoin it mostly confirms that you are paying more than you need to — which is useful in a quieter way, since a wallet using a Bitcoin-derived default can easily overpay by a wide multiple on a chain with an empty mempool.

Blocks every two and a half minutes also changes confirmation advice. Six Litecoin confirmations is about fifteen minutes and represents considerably less accumulated work than six Bitcoin confirmations. Exchanges account for this by requiring more confirmations on Litecoin, and their threshold is the one that governs your deposit rather than any number an explorer displays.

Our guide on checking confirmations covers how to think about this across chains, because the same confirmation count means different things everywhere.

MWEB, and the limits of what any explorer can show

MimbleWimble Extension Blocks activated on Litecoin in 2022, adding an optional confidential transaction system. Move coins into MWEB and amounts and addresses become hidden; move them out and they become visible again.

This creates a genuine problem for an explorer. Once value enters the extension block there is nothing meaningful to display, because the cryptography is doing its job.

litecoinspace.org handles it the right way. It shows the peg-in, marks the MWEB portion as confidential, and shows the peg-out. It does not fabricate figures and it does not silently show zero, which would read as "nothing happened".

The practical consequence is worth planning around: you can prove a payment entered MWEB and you cannot prove where it went using a public explorer. If you need to demonstrate a payment to a counterparty, that matters — the same situation as Monero, where proving a payment requires a key rather than a link.

A recurring principle

An explorer showing a blank where you expected a number is usually correct. Confidential systems — MWEB, Monero’s ring signatures, Liquid’s confidential transactions — hide data cryptographically. An explorer presenting confident figures for hidden values is showing you an assumption.

Scrypt, merge mining and the Dogecoin relationship

Litecoin uses Scrypt rather than Bitcoin's SHA-256, a choice originally intended to resist specialised mining hardware. That did not last — Scrypt ASICs exist — but the algorithmic separation had a lasting consequence: it created a distinct mining ecosystem.

Since 2014, Dogecoin has been merge mined with Litecoin. Both use Scrypt, and miners submit the same work to both chains simultaneously, earning on both for one unit of effort.

The relationship runs one way in terms of security: Dogecoin inherits protection from Litecoin's larger mining ecosystem. It runs both ways economically, since merge-mining revenue from Dogecoin contributes to the profitability of Scrypt mining generally.

For anyone reading hash rate or difficulty figures on an explorer, that is the context that makes them meaningful. BitInfoCharts is the easiest place to see the two chains side by side over time.

Using Litecoin explorers well

Litecoin is one of the easier chains to read, which makes the few places it differs from Bitcoin worth knowing precisely.

Addresses. Litecoin has used several address formats over the years — legacy addresses starting with L, script addresses that once started with 3 and now start with M, and bech32 addresses starting with ltc1. The 3-prefix overlap with Bitcoin caused real losses, because a Litecoin address in the old format is indistinguishable from a Bitcoin one at a glance. Sending Litecoin to a Bitcoin address in that format, or the reverse, generally means the funds are unrecoverable.

Units. Amounts are in litoshis, the Litecoin equivalent of satoshis, with the same eight decimal places. Code written for Bitcoin generally works unchanged, which is convenient and occasionally lets a unit error pass unnoticed.

Confirmation thresholds. Faster blocks mean exchanges require more confirmations. Check the specific service rather than assuming a number, and remember that their threshold is the only one that governs when you are credited.

The habit worth building is the one we recommend everywhere: keep a second explorer available. Blockchair indexes Litecoin with a keyless API and a query layer, and running the same lookup through an independently maintained index resolves an apparent problem more often than not. Disagreement between two indexes is almost always an indexing artefact rather than a chain event, and knowing which is which saves a lot of unnecessary alarm.

Litecoin explorers: common questions

Why can I not see my MWEB transaction details?

Because MWEB hides amounts and addresses cryptographically. An explorer shows the peg-in and peg-out and marks the confidential portion as hidden. That is correct behaviour, not a fault.

How many confirmations does Litecoin need?

It depends on your counterparty. Exchanges publish their own thresholds and typically require more than for Bitcoin, since Litecoin blocks are faster and each represents less accumulated work.

Does the litecoinspace API need a key?

No. It is Esplora-compatible and keyless, so code written against Bitcoin generally works with a base-URL change.

Is Litecoin merge mined with Dogecoin?

Yes, since 2014. Both use Scrypt, and miners submit the same work to both chains. It means Dogecoin inherits security from Litecoin’s larger mining ecosystem.

Can I prove an MWEB payment to someone?

Not with a public explorer link. Confidential systems require a key or proof shared privately, the same situation as Monero. Plan for that before using MWEB for a payment someone needs to verify.

Can I send Litecoin to a Bitcoin address by mistake?

Historically yes, because Litecoin script addresses once shared Bitcoin’s 3 prefix. They now use M, which reduces the risk. Funds sent across chains this way are generally unrecoverable, so paste rather than retype and check the first character.

Is the Litecoin API the same as Bitcoin’s?

litecoinspace.org is Esplora-compatible, so most Bitcoin code works with a base-URL change. Amounts are in litoshis with the same eight decimal places.

Which Litecoin explorer should I use day to day?

litecoinspace.org for anything involving fees, the mempool or MWEB, because it inherits the clearest fee interface available. Blockchair as a second opinion and for anything that needs filtering across many transactions at once.

Live network data

Read from public nodes right now

BTC block height

0000000

Next-block fee

0000000

Mempool backlog

0000000

ETH block height

0000000

Next difficulty

0000000

Solana slot

0000000

Live from public node APIs · updates on load ·
Any percentage shown is Bitcoin's next mining difficulty retarget, a protocol parameter. It is not an asset price or a measure of investment performance.