The reference implementation of the Glcoin Permanent Proof Network. Validate the chain, anchor your proofs, and participate in the network with full sovereignty.
Full node daemon, CLI client, and utilities. Includes glcoind and glcoin-cli.
Raspberry Pi 4/5 and other arm64 devices. Required for RaspiBlesk.
Installer and portable binary for Windows 10/11.
Build from source: download glcoin-0.2.7-src.tar.gz or browse the glcoin repository on Forgejo for full build instructions.
Download the binary package and extract it to a suitable directory.
wget https://glcoincore.org/dl/glcoin-0.2.7-linux-amd64.tar.gz
tar -xzf glcoin-0.2.7-linux-amd64.tar.gz
sudo cp glcoin-0.2.7/bin/* /usr/local/bin/
Create a minimal ~/.glcoin/glcoin.conf to set RPC credentials.
mkdir -p ~/.glcoin
cat > ~/.glcoin/glcoin.conf << EOF
rpcuser=glcoinrpc
rpcpassword=$(openssl rand -hex 32)
server=1
txindex=1
EOF
Launch glcoind and verify it's running.
glcoind -daemon
glcoin-cli getblockchaininfo
Hash any file and embed the proof on-chain with a single transaction.
# Hash a document
sha256sum document.pdf
# Anchor it on-chain (OP_RETURN data output, needs a funded wallet)
glcoin-cli -named send outputs="[{\"data\":\"$(sha256sum document.pdf | awk '{print $1}')\"}]"