Post
Topic
Board Electrum
Re: How to use a 24 words seed phrase in Electrum Android Version?
by
Forsyth Jones
on 05/01/2025, 03:34:07 UTC

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.