You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple, cross-platform wallet.dat scanner for Bitcoin-family wallets. It is intended for users to scan wallet files on thier own machine to gain basic information on the contents of the wallet, balance is displayed where possible. It tries pywallet for structured dumps when available, and safely falls back to read-only address discovery (Base58 + Bech32 + ETH 0x strings).
5
+
A simple, cross-platform wallet.dat scanner for Bitcoin-family wallets. It is intended for users to scan wallet files on their own machine to gain basic information on the contents of the wallet; balance is displayed where possible. It tries PyWallet for structured dumps when available, and safely falls back to read-only address discovery (Base58 + Bech32 + ETH 0x strings).
6
6
7
-
## features
7
+
## Features
8
8
- Scans folders recursively for `.dat` and skips duplicate backups by content hash
9
9
- PyWallet integration with JSON parsing and optional WSL fallback on Windows
10
10
- Read-only fallback detection for BTC, LTC, DOGE, PPC, GRC, and ETH
@@ -15,22 +15,24 @@ A simple, cross-platform wallet.dat scanner for Bitcoin-family wallets. It is in
15
15
- Bech32 support for BTC (`bc1…`) and LTC (`ltc1…`)
16
16
- CSV export including balance, dedup count, and first wallet path
- PyWallet by joric — Public Domain (includes portions under MIT and Apache-2 licenses). Repository: https://github.com/joric/pywallet. We vendor `pywallet/pywallet.py` and invoke it for structured wallet dumps when available. See headers in `pywallet/pywallet.py` for details.
174
+
175
+
## Third-Party Licenses
176
+
This project vendors PyWallet (Public Domain) which itself includes components under permissive licenses:
177
+
178
+
- BitcoinTools (wallet.dat handling) — MIT License — https://github.com/gavinandresen/bitcointools
179
+
- python-ecdsa (EC_KEY implementation) — MIT License — https://github.com/warner/python-ecdsa
0 commit comments