← Back to Documentation

Seed Phrase File

Mode 7: Test a list of complete seed phrases from a file against the target address

📋 Overview

Mode 7 reads a file containing complete, ready-to-test seed phrases — one per line — and tests each against the target address. It does not generate or brute-force any combinations; it simply iterates through the list.

This mode is useful when you have a list of potential seed phrases generated externally, or when you want to test a set of complete phrases exported from another tool.

⚠️ CPU only — no GPU support

This mode runs on CPU only (both Free and Pro versions). If -gpu is passed, wrecover falls back to CPU and logs an info message.

📄 Seed File Format

Plain text file, one complete seed phrase per line. The file must have a .txt extension for a new search. wrecover converts it to a .bin binary index at first run. On resume (-wi), supply the .bin file.

# seeds.txt
abandon ability able about above absent absorb abstract absurd accuse accident account
zoo zone zebra young yellow wire wisdom wire wide weird weekend weasel
word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12
💡 BIP39 validation

Each phrase is validated against BIP39 checksum before address testing. Invalid phrases are skipped automatically. If you also have a passphrase, supply it with -pp.

🚀 Commands

New search

wrecover -m 7 -sf seeds.txt -addr "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" -wlang en -ws -wf recovery.wrec -wp "this workfile password"

With a known passphrase

wrecover -m 7 -sf seeds.txt -addr "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" -wlang en -pp "MyPassphrase" -ws -wf recovery.wrec -wp "this workfile password"

Resume (provide .bin seed file)

wrecover -wi -wf recovery.wrec -wp "this workfile password" -sf seeds.bin

📖 Parameter Reference

OptionDescriptionRequired
-m 7Select Mode 7Yes
-sf <file.txt|.bin>Seed phrase file (.txt new search, .bin resume)Yes
-addr <address>Target blockchain addressYes
-wlang <code>BIP39 wordlist languageYes
-wsNew searchYes*
-wiResume from work fileYes*
-wf <file.wrec>Work file pathYes
-pp <passphrase>Known BIP39 passphrase, if usedNo
-dpath <path>Override derivation pathNo
-t <N>CPU threads (Free: max 10; Pro: unlimited)No
-wp <password>Encrypt work fileNo
-save-onlyCreate work file onlyNo

* Use either -ws (new search) or -wi (resume) — not both.

⚠️ No GPU, no range control

-gpu, -startp, and -endp are not supported in Mode 7. If -gpu is passed, the software logs an informational message and continues on CPU.

🌎 Languages & Address Types

Languages (-wlang)

CodeLanguage
enEnglish
esSpanish
frFrench
itItalian

Address types (auto-detected)

Address formatTypeDefault derivation path
Starts with 1Bitcoin Legacy (P2PKH)m/44'/0'/0'/0
Starts with 3Bitcoin SegWit P2SHm/49'/0'/0'/0
Starts with bc1qBitcoin Native SegWitm/84'/0'/0'/0
Starts with 0xEthereumm/44'/60'/0'/0

⚡ Performance

Each entry is validated as a BIP39 phrase, then the address derivation is computed. Speed depends on phrase validity rate and CPU count.

HardwareThroughput
CPU — per thread (Free & Pro)700–1,200 phrases/sec
GPUNot supported in this mode
← Back to Documentation