Post
Topic
Board Electrum
Re: 12 word vs 24 word seed
by
Yamane_Keto
on 02/06/2023, 15:45:06 UTC
How to generate a 24 words seed with a passphrase ? I just tested to select "add words" and put a password when I import a seed but it's impossible to click on next.
According to this https://github.com/spesmilo/electrum/blob/master/electrum/commands.py
we have

Code:
@command('')
    async def create(self, passphrase=None, password=None, encrypt_file=True, seed_type=None, wallet_path=None):
        """Create a new wallet.
        If you want to be prompted for an argument, type '?' or ':' (concealed)
        """

so cammand is

Code:
create(passphrase=YOUR_PASSPHARE_HERE,seed_type=None)