tech1k/litecoinexplorer.org — explained in plain English
Analysis updated 2026-05-18
Run a private blockchain explorer for Litecoin without depending on a third-party website.
Serve Esplora or mempool.space-compatible API responses for a wallet or tool that expects that format.
Track MWEB peg-in, peg-out, and supply activity on Litecoin's privacy layer.
| tech1k/litecoinexplorer.org | agentpietrucha/ks_affiliation | akarshsatija/php-whois | |
|---|---|---|---|
| Stars | 1 | 1 | 1 |
| Language | PHP | PHP | PHP |
| Last pushed | — | — | 2014-02-06 |
| Maintenance | — | — | Dormant |
| Setup difficulty | hard | moderate | easy |
| Complexity | 4/5 | 3/5 | 2/5 |
| Audience | developer | developer | pm founder |
Figures from each repo's GitHub metadata at analysis time.
Requires running your own Litecoin full node with txindex enabled plus a separate ElectrumX-compatible address indexer.
Litecoin Explorer is a website you can run yourself that lets people look up blocks, transactions, addresses, and mempool activity on the Litecoin cryptocurrency network, similar to a search engine for a blockchain. It is built specifically to support MWEB, a privacy feature of Litecoin that lets coins move between a public ledger and a more private one, showing details like peg-ins and peg-outs and total supply, with an optional add-on service called MWEBscan that adds deeper analysis such as tracking how coins move and estimating how private a transaction really was. The explorer also speaks the same programming interface used by two well-known blockchain explorer projects, Esplora and mempool.space, which means any wallet or tool already built to work with those can point at this explorer instead without changes. It is written in plain PHP with a SQLite database for caching, with no external frameworks or build tools required, so you can drop the files into a web server folder and it works. Running it yourself means also running your own Litecoin full node, plus a separate address-indexing service since a plain node cannot answer questions like what transactions belong to a specific address. The explorer combines results from both of these behind the scenes to construct its responses. There is an optional local database you can seed and keep updated for a fuller history of MWEB peg activity and a supply chart, though the explorer works using live data alone if you skip that step. All amounts in the API are returned as whole satoshis, the smallest unit of the coin, rather than decimal amounts. The project includes a status page for checking whether your node and indexer connections are healthy. It is released under the AGPL license, which requires that anyone running a modified public version also make their source code available.
A self-hosted website for browsing Litecoin blocks, transactions, and addresses, with built-in support for Litecoin's private MWEB feature.
Mainly PHP. The stack also includes PHP, SQLite, ElectrumX.
You may use and modify this freely, but if you run a modified version as a public network service, you must also share your source code under the same license.
Setup difficulty is rated hard, with roughly 1h+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.