pull down to refresh

I run a Core Lightning node compiled with configure --disable-rust. I normally generate my BIP39 mnemonic seed 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?
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