Author

Topic: How to use a 24 words seed phrase in Electrum Android Version? (Read 163 times)

legendary
Activity: 2520
Merit: 4355
Farewell o_e_l_e_o
Another guide to be more cautious and use Electrum wallet more carefully to be safer.

The Idea is to use Electrum only for bitcoins and leave other coins on Trust Wallet
Use one wallet for Bitcoin storage and another wallet for altcoins is a good practice, but there is one point you missed here.

Trust wallet is not a good wallet to use, reason is Trust wallet is close source. You can try other altcoin wallets that are open source.
https://walletscrutiny.com/?platform=allPlatforms&page=0&query-string=Trust
legendary
Activity: 3234
Merit: 5637
Blackjack.fun-Free Raffle-Join&Win $50🎲
Thanks for your tips.
Finally, for bitocoins, I am using Electrum in a pendrive, containing my private keys (using a 24 words seed). On the smarphone I configured a watch only electrum just importing the master public key.
For few amount of altcoins I am continuing using Trust Wallet


Maybe I misunderstood, but seed words should always be offline - whether it's writing them down on paper, engraving them on a metal plate, or something similar. Any way of storing them where they can be exposed to online threats is not good.

As for a watch-only wallet, that's a good idea - because if you just want to have insight into your transactions and generate new addresses, you don't need anything more than that.

I think that Electrum, if used correctly, is comparable with an hw wallet, don't you think? I mean, a pen drive used only on non connected device, a watch only wallet on smartphone.
Thanks again


Electrum is open source and as such can be considered secure if used correctly. The safest way is to use it as a so-called cold wallet - which means you generated such a wallet on an offline device that has no communication with the internet - and on the other hand you have a watch-only wallet with which you can create a transaction, and then transfer it via a USB stick, QR code or SD card to an offline device where you have Electrum with which you can sign such a transaction, and then return it to the watch-only wallet and broadcast.

This procedure is described here in a very simple way -> https://electrum.readthedocs.io/en/latest/coldstorage.html
?
Activity: -
Merit: -
The Idea is to use Electrum only for bitcoins and leave other coins on Trust Wallet
Thanks for your reply


It makes sense - although if you are thinking of getting more serious with cryptocurrencies and investing larger amounts of money, I would recommend you to think about buying a hardware wallet. I will not give any recommendations because we have a board dedicated to this topic on the forum, so you can read a lot and decide if you need such a device and which would be the best for you.

Otherwise, crypto wallets on smartphones are not something that is recommended for long-term storage, but we use them mainly as hot wallets for storing smaller amounts.

Thanks for your tips.
Finally, for bitocoins, I am using Electrum in a pendrive, containing my private keys (using a 24 words seed). On the smarphone I configured a watch only electrum just importing the master public key.
For few amount of altcoins I am continuing using Trust Wallet

I think that Electrum, if used correctly, is comparable with an hw wallet, don't you think? I mean, a pen drive used only on non connected device, a watch only wallet on smartphone.

Thanks again
legendary
Activity: 3234
Merit: 5637
Blackjack.fun-Free Raffle-Join&Win $50🎲
The Idea is to use Electrum only for bitcoins and leave other coins on Trust Wallet
Thanks for your reply


It makes sense - although if you are thinking of getting more serious with cryptocurrencies and investing larger amounts of money, I would recommend you to think about buying a hardware wallet. I will not give any recommendations because we have a board dedicated to this topic on the forum, so you can read a lot and decide if you need such a device and which would be the best for you.

Otherwise, crypto wallets on smartphones are not something that is recommended for long-term storage, but we use them mainly as hot wallets for storing smaller amounts.
?
Activity: -
Merit: -
Thank you all guys. I will try soon  Smiley
I decided to use electrum instead of trust wallet

I would say it's a good choice - I haven't used Trust wallet much, but the thing is do you need a wallet just for Bitcoin or do you want a multicurrency wallet? One small note - if you generate a wallet (seed words) on a computer, and use the same seed to create the same wallet in the mobile version of Electrum, make sure that you are using the official version of Electrum and that you have a clean computer from viruses/malware.

What I want to warn you about is that you are exposed to a double risk if you generate a seed on one device and use it on another.

[GUIDE] How to Safely Download and Verify Electrum [Guide]

The Idea is to use Electrum only for bitcoins and leave other coins on Trust Wallet
Thanks for your reply
legendary
Activity: 3234
Merit: 5637
Blackjack.fun-Free Raffle-Join&Win $50🎲
Thank you all guys. I will try soon  Smiley
I decided to use electrum instead of trust wallet

I would say it's a good choice - I haven't used Trust wallet much, but the thing is do you need a wallet just for Bitcoin or do you want a multicurrency wallet? One small note - if you generate a wallet (seed words) on a computer, and use the same seed to create the same wallet in the mobile version of Electrum, make sure that you are using the official version of Electrum and that you have a clean computer from viruses/malware.

What I want to warn you about is that you are exposed to a double risk if you generate a seed on one device and use it on another.

[GUIDE] How to Safely Download and Verify Electrum [Guide]
hero member
Activity: 1120
Merit: 540
Duelbits - Play for Free | Win for Real

whats the difference between make_seed(nbits=256) and make_seed(256)

should we do seed = make_seed(nbits=128, language='english', type='segwit')

to avoid any errors or security issues?
If you want to specify the seed type, you should use: seed_type="seed_type"

Although it isn't very useful, since the command already generates segwit type seeds by default, but if for some reason you want to generate electrum legacy seeds, use:

Code:
make_seed(128, seed_type="standard")

Language need not apply.
legendary
Activity: 2380
Merit: 5213
This is just optional if you are looking for alternative you can also generate 24 seed phrase using ianColeman tool but for safety you need to run iancoleman tool offline on separate device.
It's good to use iancoleman (offline on an airgapped  device) if you want to derive your keys from your seed phrase, but since it generates the seed phrase through javaScript I would never recommend using iancoleman for generating a seed phrase.

For more information on why it's not a good idea to use JavaScript for generating a wallet, click here and read gmaxwell's explanation.
legendary
Activity: 3500
Merit: 3249
Happy New year 🤗
Thank you all guys. I will try soon  Smiley
I decided to use electrum instead of trust wallet
This is just optional if you are looking for alternative you can also generate 24 seed phrase using ianColeman tool but for safety you need to run iancoleman tool offline on separate device.

Another option is to use a hardware wallet such as trezor, which has options for generating 12, 18, or 24 seed phrases.
Using hardware wallet you can connect it to Electrum as watch-only wallet.
legendary
Activity: 2380
Merit: 5213
whats the difference between make_seed(nbits=256) and make_seed(256)
There is no difference.
In make_seed(nbits=x), you specify the number of bits using a keyword argumant and in make_seed(x), you specify the number of bits using a positional argument.


should we do seed = make_seed(nbits=128, language='english', type='segwit')
nbits, language and type are all optional arguments and you don't have to pass them to the make_seed function.
legendary
Activity: 2674
Merit: 1029
You will need to use electrum on a pc or mac in order to generate a 24 word seed. Then you can restore from seed in android. So download electrum from electrum.org on a PC or mac and then go to view menu > check console. Switch to console tab and click on the warning to make it go away. Then paste in the following command there:

Code:
make_seed(nbits=256)

Press enter and it should spit out a 24 word seed.

whats the difference between make_seed(nbits=256) and make_seed(256)

should we do seed = make_seed(nbits=128, language='english', type='segwit')

to avoid any errors or security issues?
?
Activity: -
Merit: -
Thank you all guys. I will try soon  Smiley
I decided to use electrum instead of trust wallet
legendary
Activity: 3724
Merit: 1586
You will need to use electrum on a pc or mac in order to generate a 24 word seed. Then you can restore from seed in android. So download electrum from electrum.org on a PC or mac and then go to view menu > check console. Switch to console tab and click on the warning to make it go away. Then paste in the following command there:

Code:
make_seed(nbits=256)

Press enter and it should spit out a 24 word seed.
legendary
Activity: 1512
Merit: 4795
Leading Crypto Sports Betting & Casino Platform
It is possible on desktop Electrum using a command but not possible on Android Electrum. Just as Frankolala posted already, 12 words seed phrase is secure.
hero member
Activity: 952
Merit: 617
Leading Crypto Sports Betting & Casino Platform
I tried to install the android version and during the setup it only allow to create a seed phrase with 12 words. Is it possible to use a 24 words seed phrase insteed?
Electrum wallet is 12 word seed phrase by default and you are not the one to create your seed phrase but electrum does that for you. Since you said it's Andriod version, it means that you should just copy your 12 seed phrase and back it up because it's very safe since itvhas 132bit entropy which is secured enough as 256 bits of bitcoin private keys.
?
Activity: -
Merit: -
I tried to install the android version and during the setup it only allow to create a seed phrase with 12 words. Is it possible to use a 24 words seed phrase insteed?
Jump to: