Skip to content

Mining Pools ​

Mining pools allow miners to combine their hash power for more consistent rewards. This guide covers available Cloud Service mining pools and how to connect.

Available Pools ​

Official Pools ​

PoolURLFeeMin PayoutFeatures
Cloud Service Official Poolcs.miningtothelastblock.top1%1 CSOfficial, reliable

Community Pools ​

PoolURLFeeMin PayoutWebsite
MineCSCstratum.minecsc.com1.5%0.25 CSminecsc.com
HashPoolcsc.hashpool.org2.5%2 CShashpool.org

Pool Connection Details ​

Stratum Configuration ​

Protocol: stratum+tcp
Algorithm: ZelHash
Port (GPU): 3333
Port (Nicehash): 3334
Port (SSL): 3335

Connection Examples ​

GMiner ​

bash
./miner --algo zelhash \
    --server cs.miningtothelastblock.top \
    --port 3333 \
    --user YOUR_WALLET_ADDRESS \
    --pass x \
    --worker WORKER_NAME

T-Rex Miner ​

bash
./t-rex -a zelhash \
    -o stratum+tcp://cs.miningtothelastblock.top:3332 \
    -u YOUR_WALLET_ADDRESS \
    -p x \
    -w WORKER_NAME

TeamRedMiner ​

bash
./teamredminer -a zelhash \
    -o stratum+tcp://cs.miningtothelastblock.top:3332 \
    -u YOUR_WALLET_ADDRESS \
    -p x \
    --worker=WORKER_NAME

Payout Methods ​

PPLNS (Pay Per Last N Shares) ​

  • Most common method
  • Rewards based on shares submitted
  • Loyalty rewarded — longer mining = more rewards
  • No round-based boundaries

PROP (Proportional) ​

  • Rewards split proportionally per round
  • Simple and transparent
  • No loyalty bonus

SOLO (Solo Mining via Pool) ​

  • Full block reward if you find a block
  • Higher variance
  • Pool takes small fee

Setting Up Your Pool Account ​

Registration ​

  1. Visit the pool website
  2. Create an account with your email
  3. Set up two-factor authentication (recommended)
  4. Add your Cloud Service wallet address

Worker Configuration ​

Worker Name Format: wallet_address.worker_name
Example: csc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh.rig01

Dashboard Features ​

  • Real-time hash rate monitoring
  • Share acceptance rate
  • Earnings history
  • Payout history
  • Worker management
  • Email notifications

Pool Comparison ​

Factors to Consider ​

FactorImportanceNotes
FeeHighLower is better, but consider reliability
Min PayoutMediumLower means faster access to earnings
UptimeHighLook for 99.9%+ uptime
Payout MethodMediumPPLNS preferred for consistent miners
SupportLowResponsive support is helpful

Multi-Pool Mining ​

Failover Configuration ​

Create pools.json for automatic failover:

json
{
    "pools": [
        {
            "name": "Primary Pool",
            "url": "stratum+tcp://cs.miningtothelastblock.top:3332",
            "user": "YOUR_WALLET_ADDRESS",
            "pass": "x",
            "priority": 0
        },
        {
            "name": "Backup Pool",
            "url": "stratum+tcp://eu-cs.miningtothelastblock.top:3332",
            "user": "YOUR_WALLET_ADDRESS",
            "pass": "x",
            "priority": 1
        }
    ]
}

Pool Statistics ​

Understanding Pool Metrics ​

MetricDescriptionGood Value
Pool Hash RateTotal pool mining powerHigher = more competitive
Miners OnlineActive minersIndicates pool health
Blocks FoundTotal blocks discoveredShows pool activity
Share RateShares submitted per minuteHigher = more consistent
LuckActual vs expected blocks100% = average

Calculating Expected Earnings ​

Daily CS = (Your Hash Rate / Pool Hash Rate) × Pool Blocks per Day × Block Reward

Example:
- Your Hash Rate: 100 Sol/s
- Pool Hash Rate: 10,000 Sol/s
- Blocks per Day: 720
- Block Reward: 150 CS (Era 1)

Daily CS = (100 / 10,000) × 720 × 150 = 1,080 CS

Troubleshooting Pool Issues ​

Common Problems ​

IssueSolution
Worker not showingCheck wallet address, wait 5-10 minutes
Rejected sharesVerify algorithm, check stratum URL
Low hash rateUpdate miner, check GPU temps
No payoutsVerify wallet address, check minimum payout
Connection refusedCheck firewall, verify pool status

Pool API ​

Most pools provide REST APIs for monitoring:

bash
# Get pool stats
curl https://cs.miningtothelastblock.top/api/pool/stats

# Get user stats
curl https://cs.miningtothelastblock.top/api/user/YOUR_WALLET_ADDRESS

# Get worker stats
curl https://cs.miningtothelastblock.top/api/user/YOUR_WALLET_ADDRESS/workers

Next Steps ​

Released under the MIT License.