Author

Topic: Generating a 24 word seed with electrum (Read 134 times)

legendary
Activity: 2380
Merit: 5213
April 19, 2023, 03:14:14 AM
#10
In electrum we have 10 changed address while in blue wallet only have 1 changed address. So, why is different? I used the same electrum seed, and didn't change a single letter or word seed. And, how can add the change address on blue wallet?.
That's how bluewallet works. Whether you generate a wallet with bluewallet itself or you import an electrum's seed phrase, it displays only one change address. Once you use that change address, it will display the second one.
legendary
Activity: 1484
Merit: 1024
#SWGT CERTIK Audited
April 19, 2023, 01:33:41 AM
#9
@OP electrum seeds are not bip39 and can't be restored in most other wallets. Blue wallet is an exception to this. However it is best if you use the same software you originally did to generate the seed that is electrum itself.
I just know that after tried import the Electrum seed to Blue Wallet, that show detail on my phone: HD Electrum (BIP 32 P2WPKH), and, the difference between both wallets is, In electrum we have 10 changed address while in blue wallet only have 1 changed address. So, why is different? I used the same electrum seed, and didn't change a single letter or word seed. And, how can add the change address on blue wallet?.
legendary
Activity: 1008
Merit: 3001
April 18, 2023, 06:55:47 PM
#8
    @OP electrum seeds are not bip39 and can't be restored in most other wallets. Blue wallet is an exception to this. However it is best if you use the same software you originally did to generate the seed that is electrum itself.
    Just to complement Abdussamad reply: While Electrum isn't able to generate BIP39 version, it is able to import it. To do that you just need to click on "Options" and check "BIP39 seed" after entering your seed phrases and you'll be able to import your wallet into Electrum.

    If you're interested in knowing which wallets support generating BIP39 version you've got a few to choose from:
    • Hardware wallets:
      • All of Ledger devices generate seed phrases using BIP39[1]
      • All of Trezor devices generate seed phrases using BIP39[2]
      • Foundation devices[3]
    • Software wallets:
      • BlueWallet[4]
      • Bither[5]

    [1]https://www.ledger.com/academy/bip-39-the-low-key-guardian-of-your-crypto-freedom
    [2]https://trezor.io/learn/a/what-are-bips-slips
    [3]https://docs.foundationdevices.com/en/passport/setup
    [4]https://bluewallet.io/features/
    [5]https://bither.net/
    copper member
    Activity: 2170
    Merit: 4238
    Join the world-leading crypto sportsbook NOW!
    April 18, 2023, 10:34:37 AM
    #7
    @OP electrum seeds are not bip39 and can't be restored in most other wallets.

    For this reason alone I prefer to not use Electrum seeds for cold storage.  A Bip-39 seed for cold storage is more practical, in my opinion, since it gives you more options to restore the wallet in case of an emergency or lack of access to computers or the Electrum software.  All you would need is a hardware wallet or a wide variety of wallet software clients to restore a Bip-39 seed.

    Electrum seeds are great if you plan to use it as a hot wallet.  They are designed with an additional checksum to inform the client whether the seed is intended for a segwit wallet or a legacy wallet, helping the user when restoring the wallet from seed.

    I've used the Ian Coleman tool to generate 24-word seeds, but I agree with others who've raised concerns about Java and browser-based entropy generators, they don't instill much confidence.  The Ian Coleman tool does allow one to enter their own entropy, so I use /dev/urandom to generate 256-bit entropy that I then enter into the Ian Coleman tool.

    This command will generate a 256-bit HEX string that can be used for entropy:

    Code:
    cat /dev/urandom | tr -dc 'A-F0-9'  | fold -w 256 | head -n 1
    legendary
    Activity: 3584
    Merit: 1560
    April 18, 2023, 09:39:50 AM
    #6
    On Electrum console, type this:

    Code:
    make_seed(256,"","standard")


    This will create a legacy wallet seed. Not recommended. To create a segwit seed use this command:

    Code:
    make_seed(nbits=256)

    @OP electrum seeds are not bip39 and can't be restored in most other wallets. Blue wallet is an exception to this. However it is best if you use the same software you originally did to generate the seed that is electrum itself.
    legendary
    Activity: 1512
    Merit: 4795
    April 18, 2023, 04:20:19 AM
    #5
    make_seed(256)
    Segwit. For bitcoin addresses that start from bc1. Recommended. For low fee.

    make_seed(256,"","standard")
    Legacy. For bitcoin addresses that start from 1
    jr. member
    Activity: 48
    Merit: 27
    April 18, 2023, 04:10:58 AM
    #4
    Thanks a lot.
    What would be the difference between:

    Code:
    make_seed(256)

    and

    Code:
    make_seed(256,"","standard")

    Segwit ? BIP39 ?
    legendary
    Activity: 2380
    Merit: 5213
    April 18, 2023, 03:46:34 AM
    #3
    With using the command mentioned above by Charles-Tim, you create a 24 word legacy seed phrase. If you want to have a 24 word segwit seeed phrase, use the following command.

    Code:
    make_seed(256)


    What will be the difference between option 1 and 2 ?
    With iancoleman, you generate a BIP39 seed phrase while electrum uses its own algorithm.
    As iancoleman uses JavaScript for generating the entropy, using electrum for generating your seed phrase is a much better option.
    legendary
    Activity: 1512
    Merit: 4795
    April 18, 2023, 03:33:40 AM
    #2
    On Electrum console, type this:

    Code:
    make_seed(256,"","standard")

    You can import your Electrum wallet seed phrase or BIP39 seed phrase on Bluewallet.

    If you want to use iancoleman, use it offline on airgapped device: https://github.com/iancoleman/bip39/releases/latest/
    jr. member
    Activity: 48
    Merit: 27
    April 18, 2023, 03:26:02 AM
    #1
    Hello,

    For personal reason I want to create a 24 word seed through electrum (instead of a typical 12 word), this will be done on cold storage through an air gapped computer.

    Should I use:

    1) Electrum console to do this ? If so do you know how to ?

    2) Can I use this website ? https://iancoleman.io/bip39/#english

    What will be the difference between option 1 and 2 ?
    Would I be able to retrieve my wallet also with Blue Wallet (for example) for option 1 and option 2 ?

    Jump to: