An open API service indexing awesome lists of open source software.

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

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
````