Post
Topic
Board Electrum
Merits 4 from 2 users
Re: btcrecover electrum change address
by
nc50lc
on 26/09/2024, 05:03:54 UTC
⭐ Merited by ABCbits (3) ,DireWolfM14 (1)
i tried m/1/0 but seems not working
What's your seed type?
standard (p2pkh), SegWit or other types?

For the first two:
  • Standard should have --bip32-path m/1

    Sample (standard seed, change address index 0):
    Code:
    $ py seedrecover.py --tokenlist 1test.txt --mnemonic-length 12 --language en --addrs 164ZevaKdd3SjasnyzyLXHoSBfRMoD1Zj5 --addr-limit 1 --bip32-path m/1 --dsw

    Starting seedrecover 1.9.0-CryptoGuide, btcrecover 1.9.0-Cryptoguide on Python 3.12.5 64-bit, 21-bit unicodes, 64-bit ints
    Using the 'en' wordlist.
    2024-09-26 12:36:45 : Phase 1/1: up to 12 mistakes, 12 of which can be an entirely different seed word.
    2024-09-26 12:36:45 : Using 12 worker threads
    2024-09-26 12:36:48 : ***MATCHING SEED FOUND***, Matched on Address at derivation path: m/1/0

  • SegWit should have --bip32-path "m/0'/1"

    Sample (SegWit seed, change address index 0):
    Code:
    $ py seedrecover.py --tokenlist 1test2.txt --mnemonic-length 12 --language en --addrs bc1qlv0u6zwm7n66e75flllnep23mf3stdzl3dvwxp --addr-limit 1 --bip32-path "m/0'/1" --dsw

    Starting seedrecover 1.9.0-CryptoGuide, btcrecover 1.9.0-Cryptoguide on Python 3.12.5 64-bit, 21-bit unicodes, 64-bit ints
    Using the 'en' wordlist.
    2024-09-26 12:43:21 : Phase 1/1: up to 12 mistakes, 12 of which can be an entirely different seed word.
    2024-09-26 12:43:22 : Using 12 worker threads
    2024-09-26 12:43:24 : ***MATCHING SEED FOUND***, Matched on Address at derivation path: m/0'/1/0

    For other seed types like MultiSig, it's basically the two types (since there's no reserved number for MultiSig ) but you need your public key instead of the MultiSig address, and the correct path.
    For "2fa", BTCRecover doesn't support it and will show false negative result despite having the correct pubkey.