# BTCQ Downloads This is the file-server view of the BTCQ download tree. The marketing- facing download page lives at ; this site is the raw artifact source it points at. ## Quick start (Fedora 43, x86_64) ```bash sudo curl -fsSLo /etc/yum.repos.d/btcq-fedora.repo \ https://downloads.btcq.io/repo/btcq-fedora.repo sudo rpm --import https://downloads.btcq.io/keys/btcq-release-signing.asc sudo dnf install electrum-btcq ``` ## Docker (any Linux x86_64) For users on distros that can't install our RPMs natively (Ubuntu LTS, Debian, Arch, Alpine, etc.), the same binaries are available as container images: ```bash docker pull downloads.btcq.io/btcqd:0.2.0-4 docker run -d --name btcqd \ -v btcq-data:/var/lib/btcq \ -p 18443:18443 -p 18444:18444 \ downloads.btcq.io/btcqd:0.2.0-4 ``` For a btcqd + btcq-electrs stack, see [`/docker/compose.yaml`](docker/compose.yaml). ## Layout - [`/repo/`](repo/) — Fedora 43 dnf repository (binary + sources) - [`/releases/`](releases/) — versioned per-package release dirs (AppImage, tarballs, RPMs) - [`/keys/`](keys/) — GPG public key for verification - [`VERIFY.md`](VERIFY.md) — how to verify what you download ## Architectures x86_64 only at this time. Other arches will get a 404 on dnf metadata fetch — this is intentional. Please use x86_64 hardware or build from source. ## Verifying See [VERIFY.md](VERIFY.md) for the full set of `gpg --verify` / `rpm -K` / `sha256sum -c` commands.