Download INTcoin

Version ... — Released ...... downloads — ...... tests

Which do I need?

💻

Desktop Wallet

For everyday users. Download, install, and run — the wallet starts its own node automatically. No technical setup required.

Full Node + CLI

For server operators. Run intcoind as a service, manage via intcoin-cli. Includes the wallet tool, miner, and all command-line utilities.

🛠

Build from Source

For developers and auditors. Clone the repo, build everything yourself, review the code. Full instructions below.

💻 Desktop Wallet

The standalone wallet includes an embedded full node, Lightning Network, mining controls, and a graphical interface. Just download, install, and run — no server or terminal required.

💻

Windows

Windows 10/11 (64-bit)

Download Installer
🍏

macOS

Apple Silicon + Intel

Download DMG
🐧

Linux

AppImage — works on any distro

Download AppImage

First time? Download the Desktop Wallet above. It includes everything you need — a full node, wallet, Lightning Network, and mining controls all in one application. See the Wallet Guide to get started.

⚙ Full Node + CLI Tools

Command-line binaries for server deployments. Includes intcoind (node daemon), intcoin-cli (RPC client), intcoin-miner (standalone miner), and intcoin-wallet (offline wallet tool).

Platform Architecture Package Includes
Ubuntu 24.04 x86_64 .tar.gz intcoind, cli, miner, wallet Download
Debian 13 x86_64 .tar.gz intcoind, cli, miner, wallet Download
Fedora 43 x86_64 .tar.gz intcoind, cli, miner, wallet Download
Alpine Linux x86_64 (musl) .tar.gz intcoind, cli, miner, wallet Download
Arch Linux x86_64 .tar.gz intcoind, cli, miner, wallet Download
macOS ARM64 .tar.gz intcoind, cli, miner, wallet Download
Windows x86_64 .zip intcoind, cli, miner, wallet, qt Download
Linux (RISC-V) riscv64 .tar.gz intcoind, cli, miner Download

🛠 Build from Source

# Clone
git clone https://github.com/INT-devs/intcoin.git && cd intcoin

# Build dependencies
cd depends && make -j$(nproc) && cd ..

# Build everything (node + wallet + Qt GUI)
cmake -B build --toolchain depends/$(depends/config.guess)/toolchain.cmake
cmake --build build -j$(nproc)

# Run tests
./build/bin/test_intcoin

Full instructions: BUILDING.md — Requires CMake 3.30+, C++23 compiler, and Qt6 for the desktop wallet.

Project Status

...
Test Suites
...
CI Build
...
GitHub Stars
...
Open Issues

Verify Your Download

All release binaries include SHA-256 checksums in the GitHub release notes. Always verify before running:

# Linux / macOS
sha256sum INTcoin-*.tar.gz

# Windows (PowerShell)
Get-FileHash INTcoin-*.zip -Algorithm SHA256