Mine PCoin here, get paid every block

Solo mining is a lottery — a whole 50 PCN block or nothing, and a small CPU can wait days. This pool pays you for the work you actually did, out of the coinbase of every block it finds.

Pool hashrate
loading…
Miners
connected now
Network
 
Blocks found
by this pool

Live from /api/pools, the same endpoint mining directories read. Nothing on this page is typed in by hand.

Connect

You do not need separate mining software — it is built into the PCoin node. You do need v1.3.0 or newer, and both the node and bitcoin-cli must be that version: an older CLI sends the thread count as text and the call fails with a type error even against a new node. Downloads.

Windows (PowerShell)

$P = if (Test-Path C:\PCoin\bitcoin-cli.exe) { 'C:\PCoin' } else { "$env:LOCALAPPDATA\PCoin" }
& "$P\bitcoin-cli.exe" -datadir="$P\data" `
  startpoolmining "pool.pc.am:3333" "<your pc1q… address>" 4

Linux

sudo systemctl stop pcoin-miner        # or it will pull you back to solo
sudo -u pcoin pcoin-cli -datadir=/var/lib/pcoin \
  startpoolmining "pool.pc.am:3333" "<your pc1q… address>" 4

The last number is threads; 0 means every core. stopmining stops it.

Already have a mining rig? Use SRBMiner-Multi.

SRBMiner-Multi mines PCN natively from version 3.5.6 (17 August 2026) with the randompcn algorithm — Windows, Linux and HiveOS custom miner, no PCoin node, no sync and no wallet on the machine. Verified against this pool on 2 September 2026: connects, receives work, shares accepted.

SRBMiner-MULTI --disable-gpu --algorithm randompcn --pool pool.pc.am:3333 --wallet <your pc1q… address> --cpu-threads 4

CPU only. SRBMiner charges its own 0.85% developer fee on this algorithm, which goes to its author and not to us, on top of this pool's 2%. It is third-party software: take it only from its GitHub releases page and check the published checksum.

Already running xmrig?

An rx/pcoin algorithm is an open pull request to xmrigCC, not reviewed or merged yet. If you would rather stay on xmrig than switch to SRBMiner, there is an unofficial Linux build with checksums: rx-pcoin-v1.

./xmrigMiner -o pool.pc.am:3333 -u <your pc1q… address> -a rx/pcoin -t 4

No Windows xmrig build from us: cross-compiling needs a UCRT mingw toolchain that Ubuntu does not ship. On Windows use SRBMiner above, the node's miner, or build the branch with MSVC.

If you tried xmrig here before 16 Aug and got nothing, that was our bug.

This pool rejected every share from a standard xmrig with "share above target", while the miner hashed perfectly. It rebuilt the submitted header with the nonce bytes in the opposite order to the xmrig convention, so it was hashing a header nobody had mined. Our node's miner and this pool were written from the same wrong assumption, so they agreed with each other and nothing looked broken until a third-party miner existed. Both byte orders are accepted now — worth retrying.

It returns before it has connected.

The command answers immediately with a status of starting, which is not yet success. Run getcpuminerinfo a few seconds later and check the pool status field — a refused address or an unreachable pool is reported there, and nowhere else.

Use a pc1q… address.

Taproot pc1p… addresses pass the node's own check and are then refused by the pool. The address is simply where you are credited — no wallet is opened and no private key is involved on that machine. Your node also does not need to be synced first, because the pool supplies the block.

How it pays

SchemePPLNS — a block pays the most recent window of work, weighted by how hard each share was
PayoutDirect from each block's coinbase. No pool wallet, no private key on the server, no withdrawal to request, and no balance an operator could walk away with
Fee2% — taken off the block reward before anything is split
Minimum0.00000294 PCN, the network dust limit. Below it you are skipped for that block, your shares stay in the window, and the amount goes to the other miners rather than the pool
Stratumpool.pc.am:3333 — plain TCP. There is no TLS port yet
LoginYour payout address. No registration, no worker names, no account

Things worth knowing before you start