SW
← All projectsSparrow

Sparrow Wallet

Desktop Bitcoin wallet focused on security, privacy, multisignature, and hardware signers.

BitcoinHardware integrationSoftware walletsNormal
Repository coverage

410 commits in the local evidence base

Every captured commit receives deterministic security triage and a separate communication-quality score. Security candidates and broader second-pass signals receive full-patch Ollama analysis.

71security candidates271second-pass queue399AI analyses
88commits · 30 days
151commits · 60 days
249commits · 180 days
404commits · 365 days
Backfill bands
Aug 5 → Feb 6100 seen9 candidatesComplete
Feb 6 → Jun 6128 seen15 candidatesComplete
Jun 6 → Jul 67 seen1 candidatesComplete
Jul 6 → Aug 546 seen8 candidatesComplete
Commit communication

Does the history explain itself?

Message quality measures whether a commit identifies its scope, purpose, rationale, testing, and supporting references. It does not change the security-severity score.

48/100 average clarity
0Strong · 80–100
35Adequate · 60–79
324Thin · 40–59
51Opaque · 0–39
2security candidates with opaque commit messaging
Read the scoring rubric →
Developer activity

Who is changing the project?

Public Git author strings; identities are not independently verified.

DeveloperCommitsCandidatesAnalyzedHigh riskMessage avg.
Craig Raw39667385647
doblon8313048
nzb-tuxxx212060
Michele Balistreri212048
nroktib111050
Liz Lightning202045
PeterXMR101045
Ian McKenzie101050
ottosch101050
craigraw101060
Analysis record

Published AI watches

Last scanned 5 minutes ago

Informational 17 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

remove the surplus signatures progress bar segments a finalized multisig transaction discards

This commit fixes a UI display bug in Sparrow Wallet's signature progress bar. When a multi-signature Bitcoin transaction becomes finalized, extra signatures beyond the required threshold are discarded. Previously, the progress bar did not…

UI state desynchronization after multisig finalizationProgress bar segment count mismatch with actual signature setNo change to cryptographic or transaction validation code
40f77206by Craig Raw+9−12 files
No security note in commit
Informational 15 AI analysisMessage 38 · Opaque
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

bump to v2.5.6

This commit is a routine version bump from 2.5.5 to 2.5.6. It only changes version strings in four files (build configuration, documentation, macOS app metadata, and a Java source constant). There are no code logic changes, no bug fixes, a…

f7f36d00by Craig Raw+4−44 files
No security note in commit
Informational 17 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

use a framerate-capped interpolated timeline for the server toggle and wallet tab loading pulse animations, and stop any running server toggle pulse before starting a new one

This commit tweaks two visual animations in the Sparrow Wallet desktop app: the server connection toggle pulse and the wallet loading pulse. It caps how often the screen is redrawn during the pulse and makes sure any already-running pulse …

Resource-consumption / performance hardening: capped animation framerate reduces CPU/GPU load from continuous 60 Hz redraws.State-management hardening: stopping an existing pulse before starting a new one prevents accumulation of running Timelines.No direct security flaw is present in the diff; signals are defensive-hardening in nature.
4da29f4eby Craig Raw+7−132 files
No security note in commit
Low 45 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

cut pasted amounts to the unit precision in the send tab and send to many, and stop the csv import skipping fractional sats and exponent amounts

This commit fixes how Sparrow Wallet handles pasted or imported Bitcoin amounts. Previously, very small or oddly formatted amounts (like scientific notation '1e-8' or fractional satoshis) could be misread or silently skipped during CSV imp…

Amount parsing inconsistency between UI paste and CSV importSilent swallowing of NumberFormatException could skip payment rowsUse of Double.parseDouble for monetary amounts
9e999d3fby Craig Raw+39−362 files
No security note in commit
Informational 15 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

add a system theme option that follows the os light or dark setting, and make it the default for new installs

This commit adds a new 'System' theme option to the Sparrow Wallet desktop app that automatically follows the operating system's light or dark mode setting, and makes it the default for new installations. It also updates various UI compone…

a573f22aby Craig Raw+90−3215 files
No security note in commit
Low 36 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

refuse bitbox02 keystore import and discovery for legacy p2sh and p2pkh wallets it cannot sign for, and hide those script types from the device import menus

This commit tightens how Sparrow Wallet handles BitBox02 hardware wallets when working with older Bitcoin address formats (legacy P2PKH and P2SH). Previously, the app could let a user import or discover a wallet that the BitBox02 cannot ac…

Prevents user from configuring a signing device for wallet types the device cannot sign forCould avoid funds becoming unspendable or requiring complex recovery if a user unknowingly imported an unsupported legacy script typeReplaces hard-coded device-specific logic with a generic capability model, reducing future similar issues
de169b18by Craig Raw+23−73 files
No security note in commit
Low 37 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

reject unknown command line options and values given to flags with an error and exit code instead of starting on the default network, and accept the --option=value form

This commit tightens how Sparrow Wallet handles command-line arguments. Previously, typos or unexpected values could silently be ignored, causing the wallet to start on the default Bitcoin network instead of the one the user intended. Now,…

Command-line argument parsing now rejects unknown options instead of silently ignoring themBoolean flags now reject `--flag=value` forms that would otherwise silently pass the value through as a file/URI argumentProgram now exits with non-zero status on argument errors, reducing risk of unintended default-network startup
46197586by Craig Raw+26−12 files
No security note in commit
Low 37 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

ignore amount digits beyond the selected unit precision in the send tab amount and fee fields and the send to many grid, instead of truncating them in the payment

This commit fixes a UI bug in the Sparrow Bitcoin wallet where typing or pasting too many decimal digits into amount or fee fields could be silently truncated, potentially causing a user to send a different amount than they saw on screen. …

Precision-loss / truncation bug in financial input fieldsUser-facing amount/fee mismatch between displayed value and parsed valueInput validation now tied to unit-specific precision (satoshis indivisible)
6cde97adby Craig Raw+48−315 files
No security note in commit
Low 41 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

derive public keys from the seed when importing a sparrow wallet file

This commit changes how Sparrow Wallet restores its own wallet files. Previously, when importing a Sparrow wallet file, the public keys (used to find transactions and addresses) might not be correctly rebuilt from the seed phrase. The fix …

Correctness fix for key material restoration during wallet importAdds test coverage for encrypted and unencrypted seed-based wallet importAdds test coverage for watch-only wallet import
1fb4e8bbby Craig Raw+149−23 files
No security note in commit
Informational 21 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

add file import of the xpub descriptor jade writes to usb storage

This commit adds the ability to import a Bitcoin wallet's extended public key (xpub) into Sparrow Wallet from a file written by a Blockstream Jade hardware wallet via USB storage. Previously, Jade only supported QR-code import. The change …

New file import path parses external descriptor data and converts it to a keystoreScript type mismatch is explicitly rejected with an IllegalArgumentExceptionSilent payments policy (SINGLE_SP) is explicitly rejected
c4b53879by Craig Raw+74−44 files
No security note in commit
Low 34 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

include the non-witness utxo in psbts for krux keystores, and in the qr display when the psbt has more than one input

This commit changes how Sparrow Wallet builds QR codes for partially-signed Bitcoin transactions (PSBTs). For certain hardware wallets (Krux), it now includes extra data (the full previous transaction, called 'non-witness utxo') in the QR …

Hardware wallet signing correctness: missing non-witness UTXO data can cause some signers to reject or mis-handle multi-input segwit PSBTsQR payload size increase: larger QR codes may be harder to scan reliably, potentially affecting usabilitySubproject update (drongo) likely contains related serialization logic changes
0e2c402fby Craig Raw+4−32 files
No security note in commit
Low 35 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

clear a scanned wallet when a file, text payload or unrecognised qr is imported in the same pane

This commit fixes a UI state bug in Sparrow Wallet's import pane. Previously, when a user scanned or imported a wallet and then imported a non-wallet file, text payload, or unrecognized QR code in the same pane, the previously loaded walle…

Stale UI state could mislead users about which wallet is loadedCross-import state retention in single import paneUser interface consistency fix with security-relevant consequences
d7ded1e7by Craig Raw+4−21 file
No security note in commit
Low 35 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

lock the cormorant store against client connection reads and serve history as a copy, and close the client socket however its handler exits

This commit fixes two reliability issues in Sparrow Wallet's built-in Electrum server (Cormorant). First, it makes sure the internal transaction store is locked while being read or updated, and returns a fresh copy of a wallet's history so…

Concurrency: shared mutable store accessed by client handler and polling threads now synchronizedData consistency: history returned as a defensive copy to avoid iterator seeing concurrent modificationsResource leak: client socket now closed in finally block regardless of exception path
6cc4d50aby Craig Raw+57−94 files
No security note in commit
Low 44 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

ensure cormorant responses and notifications are always serialized per client connection

This commit fixes a race condition in Sparrow Wallet's built-in Electrum server (Cormorant). Previously, a response to a wallet client and an asynchronous notification (like a new block or a balance update) could be written to the same net…

Race condition on shared socket output streamConcurrent writes from RPC response path and event-bus notification pathPotential interleaving/framing of JSON-RPC messages on same TCP connection
6d9d3014by Craig Raw+146−303 files
No security note in commit
Low 27 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

wake a silent payments history waiter when a failed widening restores a completed scan, rather than leaving it parked for the session

This commit fixes a bug in Sparrow Wallet's silent-payments scanning cache. If a background scan had already finished, then a later 'widening' request to extend the scan failed and rolled back, any history request that arrived during the f…

Concurrency / condition-variable waiter starvationSilent-payments history lookup hang / wallet UI unresponsivenessFailure-recovery path missing signal on rollback
7868a94dby Craig Raw+100−122 files
No security note in commit
Informational 18 AI analysisMessage 60 · Adequate
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

guard a short server.version response in the desktop and terminal connection tests

This commit fixes a minor crash bug in Sparrow Wallet's connection-test screens. Previously, if a Bitcoin Electrum server answered the version request with an unusually short response, the wallet would try to read list items that didn't ex…

Input validation hardening for external server responseIndexOutOfBoundsException prevented in UI feedback pathNo cryptographic, authentication, or transaction logic touched
66348fafby Craig Raw+4−42 files
No security note in commit
Low 37 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

omit a paynym contact whose payment code does not parse rather than keeping it with a null code or failing the whole paynym response

This commit fixes a bug in Sparrow Wallet's PayNym (BIP47 reusable payment code) contact handling. Previously, if a single contact in your PayNym following/followers list had a malformed payment code, the app either kept a broken contact w…

Null payment code previously stored in contact objectPotential NullPointerException or downstream dereference of null PaymentCode in contact lists/searchWhole PayNym response could fail on one malformed contact
94ebb849by Craig Raw+43−114 files
No security note in commit
Informational 19 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

skip the exchange currencies request in offline mode in the desktop and terminal general settings

This change stops Sparrow Wallet from trying to fetch live fiat-currency exchange rates when the user has explicitly chosen 'offline mode'. Instead of making a network request that is doomed to fail, it now reuses the currency already save…

Avoids unnecessary network egress in offline modeReduces error/warning noise for expected offline behavior
b91f7993by Craig Raw+15−12 files
No security note in commit
Low 37 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

skip addresses already given out under a label and widen the gap limit on an explicit advance in the terminal receive dialog

This commit fixes two related Bitcoin wallet behaviors in Sparrow. First, when you ask for a new receive address, the wallet now skips any address that already has a label, because a label means that address was already given to someone. P…

Address reuse prevention: labeled-but-empty addresses are now skipped consistently across desktop and terminal receive flowsGap-limit widening on explicit advance reduces risk of missing funds during wallet recovery/rescanLogic centralized in WalletForm to reduce UI-specific divergence
cae870ceby Craig Raw+85−164 files
No security note in commit
Low 44 AI analysisMessage 50 · Thin
SW SparrowSparrow Wallet BitcoinHardware integrationSoftware wallets

cap bbqr display and pdf encodings at the 1295 parts the header can number, using larger parts for data that needs more rather than emitting a sequence that cannot be reassembled

This commit fixes a bug in Sparrow Wallet's BBQ QR code format. Previously, if a large transaction or data blob needed more than 1,295 QR-code-sized pieces, the app would generate pieces with impossible sequence numbers that could not be r…

Integer/sequence-number overflow-like limit violation in a data-encoding protocolPotential denial-of-service or data-integrity failure when exporting large transactions via QRRound-trip unit test added to prevent regression
4b5326d8by Craig Raw+27−12 files
No security note in commit
Repository ledger

Explore captured commits

Expand any commit for its author, full message, clarity score, changed files, triage signals, analysis, and source link.

AI review queuedreport bitcoin core rpc errors that carry no result instead of failing on a null responseby Craig Raw · b415e380 · Aug 28, 2026 · 1 fileMessage 50 · ThinLow 45Details
Commit message · Craig Raw

report bitcoin core rpc errors that carry no result instead of failing on a null response

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 45/100

This commit fixes how Sparrow Wallet handles error responses from Bitcoin Core's RPC interface. Previously, the app could silently return a null value or crash with a confusing NullPointerException instead of telling the user what actually went wrong. The change makes error messages clearer and adds handling for HTTP 403 'forbidden' responses and non-JSON replies, which can happen when a proxy or TLS issue sits between Sparrow and Bitcoin Core.

AI review queuedbump to v2.5.5by Craig Raw · 067b4d37 · Aug 27, 2026 · 4 filesMessage 38 · OpaqueInformational 15Details
Commit message · Craig Raw

bump to v2.5.5

38/100 · OpaqueMessage clarity
✓ Subject identifies a change✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: opaque commit messagesecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit is a routine version bump from 2.5.4 to 2.5.5. It only changes version strings in four files: the build script, macOS app metadata, in-app version constant, and documentation example. There are no code logic changes, no bug fixes, and no security-related content.

AI review queuedfix the windows test failures from crlf converted resources and a directory that cannot deny removalby Craig Raw · 8871f4f1 · Aug 27, 2026 · 3 filesMessage 60 · AdequateInformational 15Details
Commit message · Craig Raw

fix the windows test failures from crlf converted resources and a directory that cannot deny removal

60/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Mentions testing or verification! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit fixes automated test failures that only happen on Windows. It tells Git not to alter line endings in test resource files, updates a linked library (drongo), and skips one test on Windows because Windows cannot make a directory undeletable in the way the test expects. There is no user-facing security issue or vulnerability here.

AI review queuedname the conflicting keystore when an entered extended key is not uniqueby Craig Raw · ffc1221e · Aug 27, 2026 · 1 fileMessage 50 · ThinInformational 18Details
Commit message · Craig Raw

name the conflicting keystore when an entered extended key is not unique

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 18/100

This commit improves an error message in Sparrow Wallet. When a user enters an extended public key that is already used by another keystore in the same wallet, the app now names the conflicting keystore instead of giving a generic 'not unique' message. There is no security vulnerability here; it is a user-experience improvement.

AI review queueddisable payjoin on transactions with silent payment outputsby Craig Raw · bb60cf0a · Aug 27, 2026 · 6 filesMessage 50 · ThinModerate 59Details
Commit message · Craig Raw

disable payjoin on transactions with silent payment outputs

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Moderate 59/100

This commit disables the Payjoin privacy feature when a Bitcoin transaction includes 'silent payment' outputs. Silent payments let someone receive Bitcoin without publicly revealing their address. The change prevents a risky combination where a Payjoin receiver adds their own inputs to the transaction, which would silently break the math that lets the real recipient detect and claim the silent payment. In short, the wallet now refuses to mix these two features so users don't accidentally send money to an address the recipient can no longer find.

Lower-priorityupdate hummingbird to v1.7.5by Craig Raw · 624f999e · Aug 26, 2026 · 2 filesMessage 45 · ThinTriage 0Details
Commit message · Craig Raw

update hummingbird to v1.7.5

45/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
AI review queuedfall back to the next usable camera instead of failing the qr scan on one reporting no resolutionsby Craig Raw · 344700f0 · Aug 26, 2026 · 2 filesMessage 50 · ThinInformational 19Details
Commit message · Craig Raw

fall back to the next usable camera instead of failing the qr scan on one reporting no resolutions

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 19/100

This commit fixes a bug in Sparrow Wallet's QR code scanner. Previously, if one connected camera reported no supported video resolutions, the entire QR scan would fail. Now the app ignores such cameras and tries the next usable one instead. It also prevents a crash when the selected camera device becomes null. This is a robustness improvement, not a security vulnerability fix.

Security candidategate the display address, sign message and keystore discovery panes on a fingerprint resolved after pin entryby Craig Raw · 5f7770b8 · Aug 26, 2026 · 2 filesMessage 50 · ThinModerate 59Details
Commit message · Craig Raw

gate the display address, sign message and keystore discovery panes on a fingerprint resolved after pin entry

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
access controlsigning or wallet path
AI analysis · Moderate 59/100

This commit changes how Sparrow Wallet checks that a connected hardware wallet is the correct one before letting the user display a receiving address, sign a message, or discover keystores. Previously, the app disabled the relevant buttons if the device's reported fingerprint did not match the wallet. The problem is that a PIN-protected device reports no fingerprint until after the PIN is entered, so the old check happened too early and could be bypassed. The new code waits until after PIN entry, re-enumerates the device to get its real fingerprint, and only then enables or disables the button. This prevents a user from accidentally using the wrong hardware wallet and, for example, displaying or signing with keys that do not belong to their wallet.

Security candidatereport an oversized download manifest instead of verifying the signature aloneby Craig Raw · 0e8d8192 · Aug 26, 2026 · 2 filesMessage 55 · ThinLow 46Details
Commit message · Craig Raw

report an oversized download manifest instead of verifying the signature alone

55/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Names security-relevant behavior explicitly! No meaningful explanatory body
Why it was queued
signing boundarysigning or wallet path
AI analysis · Low 46/100

This commit changes how Sparrow Wallet's download verifier handles large manifest files. Previously, if a downloaded manifest exceeded 100 KB, the software would reject it outright and stop verification. Now, if the oversized file does not look like a manifest (no PGP signed-message header and no typical hash lines), it is treated as a release file that the signature signs directly. The change also adds a more descriptive error message. The commit title frames this as reporting an oversized manifest rather than only verifying the signature, suggesting a fix for a verification-logic edge case.

AI review queuedscope payjoin endpoints to the payment tab and transaction instead of the destination addressby Craig Raw · 7da2ebc7 · Aug 26, 2026 · 7 filesMessage 50 · ThinLow 44Details
Commit message · Craig Raw

scope payjoin endpoints to the payment tab and transaction instead of the destination address

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 44/100

This commit changes how Sparrow Wallet remembers Payjoin payment instructions. Previously, the app stored Payjoin details keyed only by the destination Bitcoin address. That meant if you later made an unrelated payment to the same address, the app might still treat it as a Payjoin and contact the original Payjoin server. Now, Payjoin details are tied to the specific transaction (using its ID) and the payment tab, so they don't leak across separate payments to the same address. The included tests explicitly check that a later payment to the same address no longer retrieves the old Payjoin URI.

Security candidateconfirm the passphrase in the wallet-level and terminal seed importsby Craig Raw · d8ea4264 · Aug 26, 2026 · 3 filesMessage 50 · ThinLow 34Details
Commit message · Craig Raw

confirm the passphrase in the wallet-level and terminal seed imports

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
access controlcryptography-sensitive pathsigning or wallet pathauthentication path
AI analysis · Low 34/100

This commit adds a 'confirm your passphrase' step when importing a Bitcoin wallet seed in two places: the desktop wallet import screen and the terminal/command-line wallet creation. Previously, if a user typed a BIP39 passphrase (the extra password that unlocks a hidden wallet) with a typo, Sparrow would silently create a different wallet. The user might then send funds to addresses they do not actually control or cannot later reproduce. The fix forces the user to type the passphrase twice so typos are caught immediately.

AI review queuedverify inclusion proofs for newly confirmed transactions, leaving them unconfirmed where they cannot be provedby Craig Raw · 12d45a8c · Aug 26, 2026 · 16 filesMessage 60 · AdequateModerate 68Details
Commit message · Craig Raw

verify inclusion proofs for newly confirmed transactions, leaving them unconfirmed where they cannot be proved

60/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Mentions testing or verification! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Moderate 68/100

This commit adds a security feature to Sparrow Wallet that verifies Bitcoin transaction inclusion proofs supplied by Electrum servers. Before this change, the wallet trusted the server when it reported a transaction as 'confirmed' in a particular block. Now, for newly confirmed transactions, the wallet asks the server for a cryptographic Merkle proof and checks it against a verified block header. If the proof is missing, wrong, or for a different block, the transaction is demoted to 'unconfirmed' and the user is warned that the server may be faulty or dishonest. The change protects users against a malicious or compromised server falsely claiming a transaction was confirmed.

AI review queuedmaintain a verified block header store anchored at the pinned checkpoints, refreshing affected wallets on a reorgby Craig Raw · 74060d14 · Aug 25, 2026 · 10 filesMessage 50 · ThinModerate 61Details
Commit message · Craig Raw

maintain a verified block header store anchored at the pinned checkpoints, refreshing affected wallets on a reorg

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Moderate 61/100

This commit adds a verified block-header store to the Sparrow Bitcoin wallet. It keeps a local copy of block headers above the built-in checkpoints, checks that each new header really links to the previous one, and automatically rewinds and refreshes wallet history if the Bitcoin chain reorganizes (a 'reorg'). The goal is to stop a malicious or buggy Electrum server from fooling the wallet with fake transaction confirmations.

AI review queueddocument the electrum server rpc method contractsby Craig Raw · 70f9c844 · Aug 24, 2026 · 1 fileMessage 45 · ThinInformational 15Details
Commit message · Craig Raw

document the electrum server rpc method contracts

45/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit only adds plain-English documentation comments (Javadoc) above each method in an interface that describes how a Sparrow Wallet component talks to Electrum servers. No code behavior was changed, no bugs were fixed, and no security-sensitive logic was introduced.

AI review queuedsupport additional electrum server rpc methods and configurable batch pagingby Craig Raw · ccfb9fdb · Aug 24, 2026 · 15 filesMessage 50 · ThinLow 34Details
Commit message · Craig Raw

support additional electrum server rpc methods and configurable batch paging

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 34/100

This commit adds stronger verification when Sparrow Wallet talks to public Electrum servers on mainnet. It fetches and checks Merkle proofs for transactions and block headers from the server, and refuses to continue if the server cannot provide that proof. It also adds a new test task that checks built-in header checkpoints against live public servers. The change is defensive: it reduces the chance a malicious or buggy server can lie about transaction confirmations or chain history, but it is not a fix for a known active attack.

Security candidateclarify that the slip39 import passphrase applies to all shares and not individual onesby Craig Raw · 0a484201 · Aug 23, 2026 · 2 filesMessage 50 · ThinInformational 15Details
Commit message · Craig Raw

clarify that the slip39 import passphrase applies to all shares and not individual ones

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
access controlsigning or wallet path
AI analysis · Informational 15/100

This commit only changes on-screen text labels and help messages in the wallet import flow. It clarifies that when using SLIP39 'shamir secret sharing' recovery, any passphrase applies to the whole reconstructed wallet secret, not to each individual recovery share. There is no code behavior change, no bug fix, and no security vulnerability being patched.

AI review queuedserialise usb device access so the periodic enumeration cannot interrupt an operation in progressby Craig Raw · 87c78be3 · Aug 23, 2026 · 3 filesMessage 50 · ThinLow 42Details
Commit message · Craig Raw

serialise usb device access so the periodic enumeration cannot interrupt an operation in progress

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 42/100

This commit fixes a race condition in how Sparrow Wallet talks to USB hardware wallets. Previously, a background check for connected devices could run at the same time as a user action such as entering a PIN, signing a transaction, or displaying an address. That overlap could interrupt the device mid-operation, clear the PIN screen, or return confusing results. The change wraps all USB device operations with a single lock so they cannot overlap, and the periodic background check now skips its run if any device operation is already in progress.

AI review queueddisable transaction version and locktime editing once signedby Craig Raw · 5cdb3e04 · Aug 23, 2026 · 2 filesMessage 50 · ThinLow 44Details
Commit message · Craig Raw

disable transaction version and locktime editing once signed

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 44/100

This commit tightens Sparrow Wallet's user interface so that once a Bitcoin transaction has been signed, the user can no longer edit its version number or locktime fields. Before the change, the form relied on a simpler 'isEditable' check that could leave these fields enabled after signatures were added. Editing those fields after signing would change the transaction's hash (TXID), making the existing signatures invalid and potentially confusing the user into broadcasting a transaction that wallets or the network will reject. The fix centralizes the disable logic and makes editability explicitly depend on whether the transaction already contains script signatures or witness data.

Lower-priorityfix skipInstallers property being ignored and document its useby Craig Raw · 8a191563 · Aug 23, 2026 · 2 filesMessage 50 · ThinTriage 0Details
Commit message · Craig Raw

fix skipInstallers property being ignored and document its use

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
AI review queuedclose storage opened when testing rejected wallet schemasby Craig Raw · 5b87f351 · Aug 23, 2026 · 1 fileMessage 60 · AdequateInformational 15Details
Commit message · Craig Raw

close storage opened when testing rejected wallet schemas

60/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Mentions testing or verification! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit fixes a minor cleanup issue in a single test file. When running a test that checks whether invalid wallet files are rejected, the test now properly closes a temporary storage object afterward. It does not change any production code or fix a security vulnerability in the wallet itself.

AI review queuedimmediately close storage opened by persistence testingby nzb-tuxxx · bbfca5fd · Aug 23, 2026 · 1 fileMessage 60 · AdequateInformational 15Details
Commit message · nzb-tuxxx

immediately close storage opened by persistence testing

60/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Mentions testing or verification! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This is a small test-only cleanup. It adds a helper method that closes a temporary storage object after checking whether a wallet file is valid, and replaces four inline storage openings in tests with calls to that helper. There is no change to production code or user-facing behavior.

Security candidateupdate drongo and lark to require anti-klepto on bitbox02 and fix taproot signing issueby Craig Raw · e7ae9cca · Aug 21, 2026 · 2 filesMessage 50 · ThinModerate 55Details
Commit message · Craig Raw

update drongo and lark to require anti-klepto on bitbox02 and fix taproot signing issue

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing boundarysecure hardware boundary
AI analysis · Moderate 55/100

This commit updates two internal library submodules (drongo and lark) used by the Sparrow Wallet. The stated purpose is to require an anti-klepto protection feature for BitBox02 hardware wallets and to fix a Taproot signing issue. The actual code changes are not visible in this commit—only the submodule pointers were moved to new commits—so we cannot directly inspect what was fixed. Anti-klepto protections reduce the risk of a compromised hardware wallet leaking private key material through biased signatures. A Taproot signing issue could, in principle, affect the ability to spend or the validity of signatures, but the diff gives no details.

Lower-priorityupdate lark to fix ledger registration issueby Craig Raw · cdcdcfc3 · Aug 21, 2026 · 1 fileMessage 45 · ThinTriage 0Details
Commit message · Craig Raw

update lark to fix ledger registration issue

45/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
AI review queuedisolate a malformed card response to the card that caused itby Craig Raw · 4989a881 · Aug 21, 2026 · 2 filesMessage 50 · ThinLow 35Details
Commit message · Craig Raw

isolate a malformed card response to the card that caused it

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 35/100

This commit adds broader error handling when reading hardware cards during wallet import. Previously, an unexpected or malformed response from a card could throw an unhandled exception and potentially crash or disrupt the import process for other cards. The change catches any runtime exception, logs it, and limits the failure to the specific card that caused it. It is a defensive hardening fix rather than a clear-cut vulnerability patch.

AI review queuedfail rather than loop indefinitely on an unsuccessful card wait or repeated secure channel resetsby Craig Raw · 3e53f193 · Aug 21, 2026 · 3 filesMessage 50 · ThinLow 48Details
Commit message · Craig Raw

fail rather than loop indefinitely on an unsuccessful card wait or repeated secure channel resets

50/100 · ThinMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Low 48/100

This commit fixes two situations where Sparrow Wallet could get stuck in an endless loop while talking to a hardware card (Coldcard/Satochip). Previously, if the card refused a 'wait' request or repeatedly rejected the secure channel setup, the software would retry forever. Now it throws an error or stops after three retries. This is a reliability/DoS fix rather than a direct theft-of-funds bug, but an attacker who can make the card misbehave could freeze the wallet interface.