🐧 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