No results
2
Mining Guide
Claude edited this page 2026-04-03 13:12:22 +01:00
Mining Guide
Lethean uses ProgPoWZ for Proof of Work and supports Proof of Stake via the wallet.
ProgPoWZ Mining (GPU)
Connect a ProgPoWZ-compatible miner to the pool stratum:
stratum+tcp://YOUR_WALLET_ADDRESS@POOL_HOST:5555
Compatible Miners
| Miner | Platform | Command |
|---|---|---|
| progminer | AMD/NVIDIA | progminer -P stratum+tcp://WALLET@host:5555 |
| T-Rex | NVIDIA | t-rex -a progpowz -o stratum+tcp://host:5555 -u WALLET |
| TeamRedMiner | AMD | teamredminer -a progpow -o stratum+tcp://host:5555 -u WALLET |
Pool Endpoints
| Endpoint | Port | Protocol |
|---|---|---|
| Stratum | 5555 | TCP (unencrypted) |
| Stratum SSL | 7777 | TCP (TLS) |
| Pool API | 2117 | HTTP |
| Pool Web | 8888 | HTTP |
Pool Stats
curl -s http://localhost:2117/stats | python3 -m json.tool
Proof of Stake
The wallet automatically stakes when --do-pos-mining is enabled (default in Docker setup).
To check staking status:
curl -s http://localhost:46944/json_rpc \
-d '{"jsonrpc":"2.0","id":"0","method":"getbalance"}' \
-H 'Content-Type: application/json'
PoS requires an unlocked balance. Mined coins need 10 block confirmations before they can stake.
Getting a Wallet Address
curl -s http://localhost:46944/json_rpc \
-d '{"jsonrpc":"2.0","id":"0","method":"getaddress"}' \
-H 'Content-Type: application/json'
Block Reward
| Property | Value |
|---|---|
| Block reward | 1 LTHN |
| Block time | ~120 seconds |
| Blocks per day | ~720 |
| Algorithm | ProgPoWZ |
| Difficulty | Adaptive |
