fromBip39HexSeed

suspend fun fromBip39HexSeed(hexSeed: String): Mnemonic

Creates a Mnemonic instance from a BIP-39 seed in hexadecimal format.

This is useful when you have a pre-computed BIP-39 seed from another source. BIP-39 seeds are always 512 bits (64 bytes) regardless of mnemonic length.

Return

Mnemonic instance for key derivation

Parameters

hexSeed

128-character hex string representing a 64-byte seed

Throws

if the seed is not exactly 64 bytes

Example:

val seedHex = "e4a5a632e70943ae7f07659df1332160..."  // 128 hex characters
val mnemonic = Mnemonic.fromBip39HexSeed(seedHex)