pull down to refresh

I run a Core Lightning node compiled with configure --disable-rust. I normally generate my

[BIP39 mnemonic seed][1]

needed to generate hsm_secret for my core lightning node with this code:

#!/usr/bin/env python3

from mnemonic import Mnemonic
mnemo = Mnemonic("english")
words = mnemo.generate(strength=256)
print(words)

Can a BIP39 seed be generated with

[one of Core Lightning's binaries][2]

?

[1]: https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki#Reference_Implementation

[2]: https://docs.corelightning.org/reference/lightning-hsmtool

Yes, you can.

reply

Here you have all types of wallets with their BIPs and derivation path https://walletsrecovery.org/

reply

I would like to know that. Thank you for asking

reply