p²
A public mining pool for the Pearl PoUW network.
Status
loading…
Connect a miner
Any Stratum-Pearl client works. The simplest is the official
reference client at
pearl-pool/client/python/p2_miner.py.
1. Install
pip install blake3 numpy
curl -O https://<pool-domain>/p2_miner.py
2. Run
python p2_miner.py \
--pool <pool-domain>:3334 \
--address prl1<your-payout-address> \
--worker rig-01
Or with Docker
docker run -d --name p2-miner \
-e POOL_HOST=<pool-domain> \
-e POOL_PORT=3334 \
-e PAYOUT_ADDRESS=prl1<your-payout-address> \
-e WORKER_NAME=rig-01 \
ghcr.io/example/p2-miner:latest
For existing Pearl pods
If you already run brute_force_miner.py against
a local pearl-gateway Unix socket, swap the
launcher for p2_miner.py with the same
--address. No code changes to your kernel
needed; the pool talks Stratum-Pearl, the protocol is
documented at
PROTOCOL.md.
Documents
- /pool/info — machine-readable pool params
- /stats — live pool stats
- /workers — top workers
- /payout/preview — PPLNS preview for the next block
- Whitepaper
- Stratum-Pearl protocol
- Miner onboarding