How to GPG-verify a Sparrow Wallet build
Sparrow ships signed release assets. Hash first with the sparrow_windows preset, then gpg --verify using the key Sparrow publishes — not a Discord key.
Security Guides · 7 min · Updated Aug 2026 · Expert
To GPG-verify a Sparrow build, take Sparrow-2.1.3.exe (or .dmg/.tar.gz) plus the signature files from sparrowwallet.com or the official GitHub release, SHA-256 the binary here, then gpg --verify with the fingerprint Sparrow prints on that download page.
Our catalog lists 0xCEF5A1E4A7BF0F52. That is a convenience snapshot — Sparrow’s site is the authority if the two ever disagree.
Do this now
- Download asset + signature from Sparrow. Use sparrowwallet.com/download or github.com/sparrowwallet/sparrow/releases/tag/2.1.3. Get the installer and the .asc/.sig Sparrow placed beside it.
- Hash the installer on this page. Preset
sparrow_windows(or mac/linux). A failed compare means you do not run GPG on a bad file. - gpg --verify on the host. Import the key only after the fingerprint matches sparrowwallet.com. Then verify the detached signature against the installer you just hashed.
Sparrow GPG sequence
| File | Role | If missing |
|---|---|---|
| Sparrow-2.1.3.exe | Payload | You cannot verify air |
| .asc / .sig | Detached signature | Do not invent one; re-download from Sparrow |
| Catalog SHA-256 | Integrity shortcut | Paste Sparrow’s published digest if versions moved |
gpg --fingerprint CEF5A1E4A7BF0F52
# confirm this matches sparrowwallet.com/download
gpg --verify Sparrow-2.1.3.exe.asc Sparrow-2.1.3.exe
What Sparrow GPG cannot do
It cannot prove your Bitcoin node is yours. It cannot prove a PSBT you later load is the transaction you think. It proves this Sparrow binary was signed by the key you checked.
This website does not import keys into your keyring.
Frequently asked questions
How do I GPG-verify Sparrow Wallet?
Hash Sparrow-2.1.3.exe on this page, import the key whose fingerprint matches sparrowwallet.com, then gpg --verify on the detached signature Sparrow published next to the installer.
Where is Sparrow’s official signing key documented?
On sparrowwallet.com/download. Use that fingerprint even if a catalog or a tweet shows a short id.
Does WalletGuard run GPG?
No. We SHA-256 in the browser. GPG stays on your OS.