Get started

Download the wallet.

The Qt wallet generates native quantum-resistant P2QR addresses by default. CLI binaries are available for node operators and infrastructure.

Qt wallet

Full graphical wallet.

Send, receive, and manage VOID with a desktop GUI. Quantum-resistant addresses are the default option in the Receive tab.

WINDOWS · x86_64

VoidCoin-Qt

Windows installer with the full Qt wallet interface.

Download for Windows ↗
LINUX · x86_64

VoidCoin-Qt

Native Linux build of the same Qt wallet.

Download for Linux ↗
Command line

Run a node.

voidcoind and voidcoin-cli for running a full node, validating the chain yourself, or building infrastructure on top of the network.

WINDOWS

voidcoind + voidcoin-cli

Windows binaries for running a node headlessly.

Download ↗
LINUX

voidcoind + voidcoin-cli

Linux binaries for running a node headlessly.

Download ↗

Running a node manually

Add the network seed to your config to connect on first launch.

addnode=46.7.7.113:7777
Source on GitHub ↗
Verify

Build it yourself.

VoidCoin Core is open source. Build from source if you'd rather not trust a binary release.

# on Linux
git clone https://github.com/VoidHash-Crypto/VoidCoin-Core.git
cd VoidCoin-Core
cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_GUI=ON
cmake --build build -j$(nproc)