Summary
Add transaction history for addresses. Currently we have balance + UTXOs via `scantxoutset`, but no tx history.
Challenge
Bitcoin Core doesn't index by address natively. Options:
- Electrs/Fulcrum integration — external indexer, most complete
- scanblocks RPC (Bitcoin Core 26+) — scan blocks for address matches, slow but no deps
- listtransactions — only for wallet addresses
Proposed approach
Start with option 2 (scanblocks) for a dependency-free version, with optional Electrs backend for power users.
Acceptance criteria
Summary
Add transaction history for addresses. Currently we have balance + UTXOs via `scantxoutset`, but no tx history.
Challenge
Bitcoin Core doesn't index by address natively. Options:
Proposed approach
Start with option 2 (scanblocks) for a dependency-free version, with optional Electrs backend for power users.
Acceptance criteria