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
- x64 (Intel/AMD)3.7 MB
sha256: a530a0c5a409e677eb423ab3… - ARM643.4 MB
sha256: 23ef7be44dd0e36b41d02c8d…
macOS
- Apple Silicon (M1+)3.5 MB
sha256: 241ecf8e3161b7117d9c6450… - Intel3.8 MB
sha256: b36c13bcb6496249b448045e…
Linux
- x64 (amd64)3.7 MB
sha256: 54bb8895a653595c95b7fa5c… - ARM643.4 MB
sha256: db6aba8e9699b4c18d0332a4…
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 primaryVerify 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 SHA256The 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.