https://github.com/asone/hdifinder
A CLI tool to check if a Bitcoin address belongs to HD Wallet from a mnemonic phrase
https://github.com/asone/hdifinder
bitcoin bitcoin-wallet hdwallet
Last synced: 2 months ago
JSON representation
A CLI tool to check if a Bitcoin address belongs to HD Wallet from a mnemonic phrase
- Host: GitHub
- URL: https://github.com/asone/hdifinder
- Owner: Asone
- Created: 2021-09-25T13:47:14.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-28T06:05:26.000Z (almost 5 years ago)
- Last Synced: 2025-01-07T09:46:58.404Z (over 1 year ago)
- Topics: bitcoin, bitcoin-wallet, hdwallet
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hierarchical Deterministic index finder
This CLI utility provides a simple way to check if a provided address belongs to a Bitcoin HD Wallet.
It takes a mnemonic passphrase which will be used to find a match with the provided address.
Addresses supported formats are for now : p2pkh, p2wpkh & p2shwpkh.
As this tool uses parallel thread to maximize processing time, you can provide custom parameters for the parallel execution.
````
USAGE:
hdifinder [OPTIONS] [ARGS]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-c, --chunksize The chuncksize for index search threads
-e, --end The end index for key index search
-p, --passphrase The mnemonic passphrase
-s, --start The start index for key index search
ARGS:
A 24 words seed (without passphrase)
The address to be found
````