fromBip39Seed

Creates a Mnemonic instance from a BIP-39 seed as bytes.

BIP-39 seeds are always 512 bits (64 bytes) regardless of the original mnemonic length (12, 15, 18, 21, or 24 words).

Return

Mnemonic instance for key derivation

Parameters

seed

64-byte BIP-39 seed

Throws

if the seed is not exactly 64 bytes

Example:

val seed = MnemonicUtils.mnemonicToSeed(mnemonic, passphrase)
val mnemonic = Mnemonic.fromBip39Seed(seed)