Download PCoin

One command per platform. Every installer checks the download against a published SHA-256 before it runs, and refuses rather than half-installing. PCoin mines on ordinary CPUs — there is no GPU or ASIC to buy.

Network mainnet P2P 9444 RPC 9443 Addresses pc1… Disk under 1 GB
Needs Windows 10 or 11, 64-bitRAM ~512 MB per mining threadDownload 8 MB
1

Run one line in PowerShell

Press Win, type PowerShell, open it, and paste this. It downloads the archive, verifies the checksum, installs the node and miner, and puts a shortcut on your desktop.

# -Threads is how many CPU cores mine. Use 0 to install without mining.
& ([scriptblock]::Create((irm https://pc.am/dl/install.ps1))) -Threads 4

Leave a core or two free if you want the machine to stay responsive. You can change this later from the tray icon.

2

If Windows shows a blue warning

It will say “Windows protected your PC”. Click More info, then Run anyway.

That is SmartScreen, not a virus warning. It appears because the binaries are not signed with a paid code-signing certificate, and SmartScreen warns about anything it has not seen downloaded widely — the content is irrelevant to it. Windows Defender, the antivirus, does not flag PCoin: each release is checked on a real machine with real-time protection on, current signatures, and a forced scan of the extracted files. A code-signing certificate is on the roadmap; until then this warning is the honest cost of shipping unsigned software.
3

Watch it sync, then mine

A PCoin icon appears in the system tray, near the clock. Click it for hashrate, block height and the address your rewards go to. The chain is small — syncing takes minutes.

Mining before the node has synced is wasted work. The installer knows this and waits. If you installed with -Threads 0, start mining from the tray once your height matches the explorer.

Prefer to do it by hand?

The archive is a plain zip — no installer, nothing written to the registry. Unzip it anywhere and run PCoinTray.exe.

FileWhat it contains
pcoin-win64-miner.zipNode, CLI and the tray miner
# check it before you run it
Get-FileHash .\pcoin-win64-miner.zip -Algorithm SHA256

Compare that against pc.am/dl/SHA256SUMS.txt. Inside are bitcoind.exe, bitcoin-cli.exe and PCoinTray.exe. The tray app is the only one you need to launch.

Already running Bitcoin Core on this machine? PCoin keeps the upstream binary names, so always pass an explicit datadir (-datadir=C:\PCoin\data) to keep the two apart. The installer does this for you.

Verifying what you downloaded

Checksums are published in two places that would have to be compromised together to fool you: pc.am/dl/SHA256SUMS.txt and the GitHub release each file came from — the list names the release beside every entry, because the wallet and the miner ship separately and no longer come from one release. The two must agree.

What a checksum proves, and what it does not. It proves your copy is the file that was published — it catches a corrupted download, a truncated transfer, or a proxy that altered the bytes. It is not a signature: anyone able to replace an archive could in principle replace the list too. That is why comparing the two sources is worth the extra minute, and why building from source is the stronger answer.

Common questions

Windows says the file is dangerous. Is it a virus?

No, and two different Windows features get confused here. SmartScreen warns about any executable it has not seen widely downloaded, regardless of what is inside it — that is the blue “Windows protected your PC” box, and a paid code-signing certificate is what removes it. Defender is the antivirus, and it does not flag PCoin: every release is checked on a real machine with real-time protection on, current signatures, and a forced scan of the extracted binaries. If your antivirus does quarantine something, please tell us — a mining program is a common false-positive shape and we would rather chase it down than have you guess.

How much can I earn?

Each block pays 50 PCN and arrives roughly every ten minutes, shared among everyone mining. Your share is your hashrate over the network’s. The calculator on the front page does the arithmetic with live numbers. PCN is not traded on any exchange, so there is no market price — treat this as a young project, not an income.

Do I need to forward a port?

No. The node makes outbound connections and finds peers by itself. Forwarding port 9444 lets others connect to you and helps the network, but nothing about mining requires it.

Can I mine with a GPU or an ASIC?

No, and that is the point. PCoin uses RandomX, which runs well on ordinary CPUs and badly on specialised hardware, so a laptop is a legitimate participant. xmrig and every SHA-256 miner are useless against this chain.

Where do my coins actually go?

To an address you control. On Windows and Android the app holds a wallet and can forward to any address you set. On Linux the miner pays a bare address you supply, so the machine holds no key at all — which is what you want on a rented server.

I run a shop or a service. Can I accept PCN?

Yes — the integration guide is at docs.pc.am. It covers deposit addresses, confirmations, reorg handling and custody, with the mistakes that have already cost this project money written down so nobody repeats them.