Mining Guide

CPU & GPU mining setup, pool configuration, and optimization

Mining Overview

Mining Algorithm

CPU Mining

Setup

./target/release/cpu-miner \
  --pool-url stratum+tcp://pool.silverbitcoin.org:3333 \
  --wallet-address slvr1... \
  --threads 4

Performance

GPU Mining

CUDA Setup (NVIDIA)

./target/release/gpu-miner \
  --pool-url stratum+tcp://pool.silverbitcoin.org:3333 \
  --wallet-address slvr1... \
  --device 0 \
  --backend cuda

OpenCL Setup (AMD/Intel)

./target/release/gpu-miner \
  --pool-url stratum+tcp://pool.silverbitcoin.org:3333 \
  --wallet-address slvr1... \
  --device 0 \
  --backend opencl

Metal Setup (macOS)

./target/release/gpu-miner \
  --pool-url stratum+tcp://pool.silverbitcoin.org:3333 \
  --wallet-address slvr1... \
  --device 0 \
  --backend metal

GPU Performance

Mining Pool Setup

Start Pool

./target/release/stratum_pool \
  --listen-addr 0.0.0.0:3333 \
  --node-rpc http://localhost:8332 \
  --min-difficulty 1000

Pool Configuration

# pool.conf
listen-addr=0.0.0.0:3333
node-rpc=http://localhost:8332
min-difficulty=1000
max-difficulty=1000000
share-difficulty=100
payout-interval=3600
payout-minimum=0.1

Reward Calculation

Block Reward Schedule

BlocksReward (SLVR)Duration
0 - 210,00050~2.5 years
210,000 - 420,00025~2.5 years
420,000 - 630,00012.5~2.5 years
630,000+6.25Ongoing

Optimization Tips

CPU Mining

GPU Mining

Troubleshooting

Low Hash Rate

Pool Connection Issues

Need help?

Getting StartedDiscord