📥 Download INTcoin

Quantum-Resistant Cryptocurrency Wallet & Node Software

Current Release: v1.1.0

Release Date: November 14, 2025

What's New:

View Release Notes

Choose Your Platform

🪟

Windows

Windows 10/11 (64-bit)

  • Qt GUI Wallet
  • Command Line Tools
  • CPU Miner
Download .exe
SHA256:
TBD_WINDOWS_CHECKSUM

Requirements:

  • 64-bit Windows 10 or later
  • 4 GB RAM minimum (8 GB recommended)
  • 50 GB free disk space
  • Internet connection
🍎

macOS

macOS 11+ (Intel & Apple Silicon)

  • Native Qt GUI Wallet
  • Command Line Tools
  • CPU Miner
  • Universal Binary
Download .dmg
SHA256:
TBD_MACOS_CHECKSUM

Requirements:

  • macOS 11 (Big Sur) or later
  • 4 GB RAM minimum (8 GB recommended)
  • 50 GB free disk space
  • Internet connection
🐧

Linux

Ubuntu, Debian, Fedora, Arch

  • Qt GUI Wallet
  • Command Line Tools
  • CPU Miner
  • AppImage & Tarball
AppImage Tarball
SHA256 (AppImage):
TBD_LINUX_APPIMAGE_CHECKSUM

SHA256 (Tarball):
TBD_LINUX_TARBALL_CHECKSUM

Requirements:

  • 64-bit Linux distribution
  • 4 GB RAM minimum (8 GB recommended)
  • 50 GB free disk space
  • glibc 2.31+ or musl libc
  • X11 or Wayland display server
😈

FreeBSD

FreeBSD 13.0+

  • Qt GUI Wallet
  • Command Line Tools
  • CPU Miner
Download
SHA256:
TBD_FREEBSD_CHECKSUM

Requirements:

  • FreeBSD 13.0 or later
  • 4 GB RAM minimum (8 GB recommended)
  • 50 GB free disk space
  • pkg package manager

Installation Guides

🪟 Windows Installation

  1. Download intcoin-1.1.0-win64.zip
  2. Extract the ZIP file to your desired location (e.g., C:\Program Files\INTcoin)
  3. Run intcoin-qt.exe to start the GUI wallet
  4. On first launch, choose a directory for the blockchain data
  5. Wait for the blockchain to sync (this may take several hours)

Note: Windows Defender may show a warning. Click "More info" → "Run anyway" as the software is not yet code-signed.

🍎 macOS Installation

  1. Download intcoin-1.1.0-osx.dmg
  2. Open the DMG file and drag INTcoin to Applications
  3. Right-click INTcoin and select "Open" (first launch only)
  4. Click "Open" in the security dialog
  5. Choose a directory for blockchain data and wait for sync

Apple Silicon Users: Universal binary includes native ARM64 support for optimal performance.

🐧 Linux Installation

Option 1: AppImage (Recommended)

# Download and make executable chmod +x intcoin-1.1.0-x86_64.AppImage # Run the wallet ./intcoin-1.1.0-x86_64.AppImage

Option 2: Build from Source

# Clone repository git clone https://gitlab.com/intcoin/crypto.git cd crypto # Install dependencies (Ubuntu/Debian) sudo apt-get update sudo apt-get install build-essential cmake libssl-dev \ qt6-base-dev qt6-tools-dev libboost-all-dev # Install liboqs (quantum-resistant crypto library) git clone https://github.com/open-quantum-safe/liboqs.git cd liboqs mkdir build && cd build cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. make -j$(nproc) sudo make install cd ../.. # Build INTcoin mkdir build && cd build cmake .. -DBUILD_QT_WALLET=ON -DENABLE_LIGHTNING=ON cmake --build . -j$(nproc) # Run the wallet ./src/qt/intcoin-qt

Option 3: Tarball

# Extract tarball tar -xzf intcoin-1.1.0-linux-x86_64.tar.gz cd intcoin-1.1.0 # Run the wallet ./bin/intcoin-qt # Or run the daemon ./bin/intcoind

😈 FreeBSD Installation

Option 1: Pre-built Binary

# Extract tarball tar -xzf intcoin-1.1.0-freebsd-amd64.tar.gz cd intcoin-1.1.0 # Run the wallet ./bin/intcoin-qt

Option 2: Build from Source

# Install dependencies sudo pkg install git cmake boost-all qt6 openssl # Install liboqs git clone https://github.com/open-quantum-safe/liboqs.git cd liboqs mkdir build && cd build cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. gmake -j$(sysctl -n hw.ncpu) sudo gmake install cd ../.. # Clone and build INTcoin git clone https://gitlab.com/intcoin/crypto.git cd crypto mkdir build && cd build cmake .. -DBUILD_QT_WALLET=ON -DENABLE_LIGHTNING=ON gmake -j$(sysctl -n hw.ncpu) # Run the wallet ./src/qt/intcoin-qt

Verify Your Download

Always verify the integrity of downloaded files before installation:

Windows/Linux/macOS

# Generate SHA256 checksum sha256sum intcoin-1.1.0-*.zip # Linux shasum -a 256 intcoin-1.1.0-*.dmg # macOS certutil -hashfile intcoin-1.1.0-*.zip SHA256 # Windows PowerShell # Compare with checksums above

Verify GPG Signature (Advanced)

# Import INTcoin signing key gpg --keyserver keys.openpgp.org --recv-keys INTCOIN_PGP_KEY_ID # Verify signature gpg --verify intcoin-1.1.0.asc intcoin-1.1.0-*.zip

Additional Downloads

📚 Source Code

Build from source or contribute to development

GitLab Repository Download Tarball

📖 Documentation

User guides, API docs, and technical specifications

Read Docs Whitepaper

⛏️ Mining Software

Standalone CPU miner for mining INT

Download Miner

Need Help?

If you encounter any issues during installation: