Commit graph

15 commits

Author SHA1 Message Date
Claude
c6def43d69
feat: key bridge prototype — derive sidechain + document keys from Lethean spend key
Some checks failed
Build & Release / Linux x86_64 (push) Has been cancelled
Build & Release / macOS ARM64 (push) Has been cancelled
Build & Release / Create Release (push) Has been cancelled
One Lethean seed phrase derives keys for:
- Main chain (ed25519, native)
- HNS sidechain (secp256k1, derived via HKDF)
- Document signing (ed25519, for hash timestamping)
- Audit trail (ed25519, for revision verification)

Domain-separated HKDF ensures keys can't be reversed or collide.
Foundation for Web3 identity bridge and corporate document control.

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 15:03:07 +01:00
Claude
56d7607754
feat: mainnet name registration plan and batch tooling
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
90,041 names from HNS reserved list need pre-registering to prevent
squatting. Strategy: genesis seeds namereg wallets, staking funds the
rest, parallel wallets batch-register into multi-sig.

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 14:46:52 +01:00
Claude
a6773abaca
fix(pos): add --rpc-ignore-offline to all daemon configs
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
PoS mining requires this flag when the daemon has no peers. Without it,
the daemon's get_pos_mining_details RPC returns DISCONNECTED status and
the wallet refuses to mint.

First PoS blocks minted on testnet at height 12,382.

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 13:53:07 +01:00
Claude
1e565495bb
fix(docker): set empty ASSETS_WHITELIST_URL to prevent explorer crash on DNS failure
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 13:31:19 +01:00
Claude
3fd1af9824
feat(docker): single-container staking node for GUI integration
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Dockerfile.staking-node — runs daemon + wallet with PoS staking in one
container using supervisord. No docker-compose needed.

For the CoreGUI desktop app to run on Windows/Mac/Linux:
  docker run -d -p 46941:36941 -p 46942:36942 -p 46944:36944 \
    -v lthn-chain:/data -v lthn-wallet:/wallet \
    -e WALLET_PASSWORD=pass \
    lthn/staking-node

Built-in helpers:
  docker exec <name> /status.sh         — chain + wallet status
  docker exec <name> /wallet-address.sh — get wallet address

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 13:20:40 +01:00
Claude
e1292a6445
feat(demos): expanded VHS demo library with live data
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
5 numbered demos using helper scripts against the live system:
01-install     — zero to running node in 30 seconds
02-chain-status — chain info, latest block, on-chain aliases
03-ecosystem-tour — full tour of all 8 services (teaser material)
04-mining      — pool stats, miner connection examples
05-exit-node   — VPN exit node setup and earning

New helpers: last-block.sh, pool-stats.sh, lns-status.sh, explorer-stats.sh
Removed old unnumbered demos.

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 13:11:47 +01:00
Claude
9e3c6c2223
fix(deploy): auto-generate JWT secret, include node/exit composes and helpers
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 12:37:57 +01:00
Claude
2ff53183c3
docs: add deployment options table and helper scripts to README
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 12:35:28 +01:00
Claude
96e79beef4
feat(demos): add ecosystem startup, wallet ops, LNS, and helper scripts
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
6 VHS terminal demos with reusable helper scripts:
- ecosystem-startup: full stack coming online
- wallet-basics: address, balance, chain info, aliases
- lns-dns: HTTP API and DNS resolution
- exit-node: VPN exit setup
- node-quickstart: 3-step home node
- health-check: all services green

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 12:34:00 +01:00
Claude
eebfb3f1f1
feat(demos): add VHS terminal demo GIFs for node, exit node, and health check
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Rendered with charmbracelet/vhs. Tape scripts included for re-rendering.

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 12:25:51 +01:00
Claude
7af620e7f6
feat(docker): add home node and exit node compose files
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
docker-compose.node.yml — minimal chain node + wallet with PoS staking.
Home users run this to support the network and earn staking rewards.

docker-compose.exit.yml — full VPN exit node with WireGuard.
Home users run this to provide bandwidth via the Lethean dVPN and earn
LTHN. Includes chain node, wallet, WireGuard server, and a controller
that manages gateway peering and status reporting.

.env.example updated with exit node settings (public IP, name, max peers).

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 12:14:05 +01:00
Claude
1261d0d94e
fix(docker): correct LNS env vars in ecosystem compose (DAEMON_URL not DAEMON_RPC)
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 12:05:48 +01:00
Claude
87fbdbb08d
fix(docker): correct LNS env vars (DAEMON_URL not DAEMON_RPC), add HSD host access, fix trade-frontend API_URL for SSR
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 11:56:34 +01:00
Claude
21ebfa1d17
fix(docker): point pool explorer URLs to local Docker explorer
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 11:15:06 +01:00
Claude
91efcd41d0
feat(docker): full ecosystem Docker deployment
Some checks are pending
Build & Release / Linux x86_64 (push) Waiting to run
Build & Release / macOS ARM64 (push) Waiting to run
Build & Release / Create Release (push) Blocked by required conditions
- docker-compose.pull.yml: production compose with pre-built images,
  health checks, env var config, service dependencies
- docker-compose.local.yml: override for mounting existing chain data
- docker-compose.ecosystem.yml: build-from-source compose with pool,
  LNS, Redis added
- Chain Dockerfile: add curl for health checks, swagger API resources
- Pool Dockerfile: Ubuntu 24.04, Boost 1.83, native ProgPoWZ compilation
- .env.example: configurable passwords, ports, hostname
- pool-config.json: Docker-networked pool config
- health.sh: one-command stack health check
- deploy.sh: remote server deployment script
- lethean-testnet.service: systemd auto-start unit
- README.md: quickstart, mining guide, backup, troubleshooting

All 8 services tested and running in Docker:
daemon, wallet, explorer, trade-api, trade-frontend, pool, LNS, docs

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 11:14:30 +01:00