Download WarpCoin

One self-contained binary: run a full node, mine, manage multiple wallets, send WARP, and drive on-chain WarpVM contracts. No installer, no dependencies.

Latest release v1.1.0 · verify with the SHA-256 checksums.

Windows

macOS

Linux

Run it in seconds

The archive contains a single warpcoin executable (no installer). Unpack it, then create a wallet — a recovery phrase is shown once — and start a node.

Prefer the desktop GUI, or want to build from source? See the getting-started guide and the source on GitHub.

# macOS / Linux: unpack and run
tar xzf warpcoin-v1.1.0-*.tar.gz
cd warpcoin-v1.1.0-*

# create a wallet (writes down a recovery phrase)
./warpcoin wallet new --name primary

# run a node and mine to it
./warpcoin node --mine \
  --miner-address $(./warpcoin wallet address)

# Windows (PowerShell): expand the .zip, then
.\warpcoin.exe wallet new --name primary

Verify your download

Compare the SHA-256 of your file against the published checksum:

# macOS / Linux
shasum -a 256 warpcoin-v1.1.0-*.tar.gz

# Windows (PowerShell)
Get-FileHash .\warpcoin-v1.1.0-windows-amd64.zip -Algorithm SHA256

The full manifest is at /downloads/SHA256SUMS. macOS may require xattr -d com.apple.quarantine ./warpcoin for unsigned builds; Windows SmartScreen may prompt on first run.