Pool Mining
Pool mining distributes rewards across multiple miners based on their contributions.
Available Strategies
| Strategy | Status | Description |
|---|---|---|
| Solo | Active | 100% of reward to the proof submitter |
| Proportional | Planned | Rewards split by share of total proofs in a window |
| PPLNS | Planned | Pay Per Last N Shares -- rewards based on recent contributions |
Current: Solo Mode
All miners operate independently. Each valid proof earns the full reward for its submitter. No stake is required.
bash
curl https://pot.rpc.gateway.tribewarez.com/pool
# {"pool_type": "solo", "total_miners": 0, "total_stake": 0, "minimum_stake": 0}Future: Pool Mode
Pool strategies are implemented via the PoolStrategy trait. When activated, miners join a pool, stake tokens, and receive proportional rewards.
Extension Point
Pool strategies are swappable via the POOL_STRATEGY environment variable. See Extension Points.