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

https://github.com/itsnickbarry/seed-phrase-brute-force

Brute-force search for missing words from a BIP-39 seed phrase
https://github.com/itsnickbarry/seed-phrase-brute-force

bip-39 brute-force eth ether ethereum key mnemonic private-key search seed seed-phrase wow

Last synced: 4 months ago
JSON representation

Brute-force search for missing words from a BIP-39 seed phrase

Awesome Lists containing this project

README

          

# Seed Phrase Brute Force

Fill in missing seed phrase words via brute-force search.

## Usage

Store your seed phrase as an environment variable, with missing words represented as `"x"`:

```bash
# first word of seed phrase is missing
export SEED_PHRASE="x test test test test test test test test test test"
```

Store the address of the first account associated with the seed phrase as an environment variable:

```bash
export TARGET="0xf39Fd6e51aad88F6F4ce6aB88272"
```

Run the script with Node:
```bash
node index.js
```