1 Home
Claude edited this page 2026-04-03 11:11:02 +01:00

Lethean Block Explorer

The Lethean Block Explorer is a web application for browsing the Lethean blockchain. It provides a real-time view of blocks, transactions, aliases, and network statistics.

Built as a Next.js application, the explorer connects to the Lethean daemon RPC interface and uses PostgreSQL for caching to deliver fast page loads and search results.

Features

  • Block List — Paginated view of all blocks with height, timestamp, hash, transaction count, and size. Click any block to see full details including miner reward and contained transactions.
  • Transaction Details — Detailed view of any transaction by hash, showing inputs, outputs, amounts, fees, payment ID, and confirmation status.
  • Alias Browser — Browse and search all registered on-chain aliases. View alias details including the associated address, comment, and registration block.
  • Charts — Network statistics over time: difficulty, hashrate, block size, transaction volume, and emission curve.
  • Search — Universal search by block height, transaction hash, or alias name.
  • Network Info — Dashboard showing current height, difficulty, hashrate, connected peers, and version.

Quick Start

docker run -d \
  --name explorer \
  -p 3335:3335 \
  -e API=http://daemon:36941 \
  -e FRONTEND_API=http://localhost:3335 \
  -e PGHOST=postgres \
  -e PGDATABASE=explorer \
  -e PGUSER=explorer \
  -e PGPASSWORD=secret \
  lthn/explorer:testnet

See Setup for full deployment instructions, Configuration for all environment variables, and API for the REST endpoints.