Skip to main content
Download

Built for everything you run.

◆ pre-release

The public key and binary builds haven't been published yet — the project is pre-launch. The signature verification instructions below are accurate and will work once /pubkey.minisign contains a real key. Current project status — see /canary.

Every build is signed with a single release key via minisign. Public key — on clearnet (fallback) and on the Tor mirror; SHA-256 + signature are next to the binary. Reproducible builds — anyone can build the client from open sources and compare the hash.

Windows 10/11
x86_64 · ARM64
soon
macOS 12+
Intel · Apple Silicon
soon
Linux
.deb · .rpm · AppImage
soon
iOS 16+
TestFlight
planned
Android 10+
APK · F-Droid
soon
Router
OpenWRT package
planned

1. Fetch the public key

One-time — save locally. Verify the fingerprint against this page and against the Tor mirror; if they match, the key is authentic.

# clearnet
curl -O https://chimera.tw/pubkey.minisign

# Tor mirror (recommended)
torsocks curl -O http://<onion-from-/canary>/pubkey.minisign
Fingerprint: published on the day of the first release (see the pre-release banner above)

2. Verify the binary

# SHA-256 — compare against the value published next to the binary
sha256sum chimera-desktop-linux-x86_64.AppImage

# minisign signature
minisign -V \
  -p pubkey.minisign \
  -m chimera-desktop-linux-x86_64.AppImage \
  -x chimera-desktop-linux-x86_64.AppImage.minisig
# -> "Signature and comment signature verified" = OK

3. Install minisign

# macOS
brew install minisign

# Debian/Ubuntu
sudo apt install minisign

# Windows — download from jedisct1.github.io/minisign
# or: scoop install minisign