{% extends "base_miner.html" %} {% block title %}How to mine — {{ coin.display_name if coin else 'getcryptopool' }}{% endblock %} {% set page = 'howto' %} {% block content %}

How to mine

Scrypt · Stratum v1
Pool endpoint
Username is <mining-username>.<worker> (from your account) — or a {{ coin.ticker }} address <{{ coin.hrp }}1…>.<worker> to mine anonymously. Password is ignored — use x.
CPU — cpuminer-opt
cpuminer -a scrypt -o stratum+tcp://{{ coin.stratum_host }}:{{ coin.stratum_port }} -u {% if current_user %}{{ current_user.mining_name }}{% else %}YOUR-USERNAME{% endif %}.cpu-01 -p x
GPU — example (sgminer / ccminer-family)
sgminer -k scrypt -o stratum+tcp://{{ coin.stratum_host }}:{{ coin.stratum_port }} -u {% if current_user %}{{ current_user.mining_name }}{% else %}YOUR-USERNAME{% endif %}.gpu-01 -p x
Get a {{ coin.ticker }} address

Download the wallet to generate a {{ coin.hrp }}1… address, then set it as your payout address in settings.

Download wallet
{% endblock %}