1 Ecosystem
Claude edited this page 2026-04-03 11:24:57 +01:00

Lethean Ecosystem

The Lethean ecosystem consists of multiple services, each with its own repository and documentation.

Repositories

Repository Wiki Description
lthn/blockchain Wiki C++ chain daemon, wallet, Docker deployment
lthn/explorer Wiki Block explorer (Next.js)
lthn/trade-backend Wiki DEX trade API (Node.js)
lthn/trade-frontend Wiki DEX web interface (Next.js)
lthn/mining-pool-alt Wiki ProgPoWZ mining pool
lthn/lns Wiki Lethean Name Service (Go)

Docker Images

All services are available as Docker images:

Image Size Description
lthn/chain:testnet 1.15 GB Chain daemon + wallet CLI
lthn/explorer:testnet 2.8 GB Block explorer
lthn/trade-api:testnet 584 MB Trade DEX API
lthn/trade-frontend:testnet 1.6 GB Trade DEX frontend
lthn/pool:testnet ~800 MB Mining pool
lthn/lns:testnet 32 MB Name service
lthn/docs:testnet 157 MB Documentation site

Quick Start

See Docker Deployment for the full guide.

cp .env.example .env
docker compose -f docker-compose.pull.yml up -d
bash health.sh

Architecture

                    ┌─────────────────┐
                    │   Chain Daemon   │
                    │  (C++ / RPC)    │
                    └────────┬────────┘
                             │
          ┌──────────┬───────┼───────┬──────────┐
          │          │       │       │          │
     ┌────┴───┐ ┌───┴───┐ ┌─┴──┐ ┌──┴──┐ ┌───┴───┐
     │Explorer│ │ Trade │ │Pool│ │ LNS │ │Wallet │
     │  Web   │ │  DEX  │ │    │ │ DNS │ │  RPC  │
     └────────┘ └───────┘ └────┘ └─────┘ └───────┘

Ports Reference

Port Service Protocol
46941 Daemon RPC JSON-RPC
46942 Daemon P2P TCP
46944 Wallet RPC JSON-RPC
3335 Explorer HTTP
3336 Trade API HTTP
3338 Trade Frontend HTTP
5555 Pool Stratum TCP
7777 Pool Stratum SSL TCP
2117 Pool API HTTP
8888 Pool Web HTTP
5553 LNS HTTP HTTP
5354 LNS DNS UDP/TCP
Project Description
core/go-blockchain Go blockchain tooling (CLI, TUI, P2P)
core/go-lns Go LNS library (CoreGO native)
lthn/node-util Native ProgPoWZ hashing (C++ node addon)