{% extends "base_miner.html" %} {% block title %}{{ coin.display_name if coin else 'getcryptopool' }} — {{ coin._raw.algorithm if coin and coin._raw.algorithm else 'Scrypt' }} mining pool{% endblock %} {% set page = 'landing' %} {% block content %}
{% if coin %} {% set _lg = COIN_GLYPHS.get(coin.ticker, COIN_GLYPHS.get('GCC', '')) %}
{{ coin.ticker }}
{% endif %}

{{ coin.display_name if coin else 'getcryptopool' }} mining pool

{{ coin._raw.algorithm if coin and coin._raw.algorithm else 'Scrypt' }} proof-of-work. Point a miner at the pool, watch your shares, and {% if POOL_MODE == 'demo' %}receive test rewards to your wallet automatically.{% else %}get paid to your wallet automatically.{% endif %}

Create an account How to mine
{# Live pool stats — or a graceful error #} {% if live %}
Block height
{{ live.node_blocks if live.node_blocks is not none else '—' }}
network tip
Active workers
{{ live.connections if live.connections is not none else 0 }}
connected now
Pool hashrate
{{ (live.hashrate_hps or 0) | hashrate }}
last 60s
Difficulty
{{ '%.4g'|format(live.difficulty or 0) }}
network
{% else %}
Pool node unreachable, retrying
Live stats are momentarily unavailable. The pool keeps running — refresh in a few seconds.
{% endif %}
STEP 1
Create an account
Register with an email and a mining username — {% if POOL_MODE == 'demo' %}free, no KYC, for the testnet demonstration.{% else %}it takes a minute.{% endif %}
STEP 2
Point your miner here
Run a {{ coin._raw.algorithm if coin and coin._raw.algorithm else 'Scrypt' }}-compatible miner against the pool stratum endpoint using your mining username.
STEP 3
{% if POOL_MODE == 'demo' %}Receive test rewards{% else %}Get paid{% endif %}
Shares are recorded, blocks distributed by proportion of work, and {% if POOL_MODE == 'demo' %}test rewards{% else %}rewards{% endif %} sent to your wallet once you pass your payout threshold.
Connect a miner
Full guide →
{% set algo = coin._raw.algorithm if coin and coin._raw.algorithm else 'Scrypt' %} {% if 'RandomX' in algo or 'rx' in algo.lower() %}
xmrig -o {{ coin.stratum_url }}:{{ coin.stratum_port }} -u YOUR-ADDRESS -p x --algo rx/0
{% elif 'SHA-256' in algo or 'sha256' in algo.lower() %}
minerd -o {{ coin.stratum_url }}:{{ coin.stratum_port }} -u YOUR-USERNAME.rig-01 -p x --algo sha256d
{% else %}
minerd -o {{ coin.stratum_url }}:{{ coin.stratum_port }} -u YOUR-USERNAME.rig-01 -p x --algo scrypt
{% endif %}
{% endblock %}