Mavryk_client_base.Bip39val pp : Stdlib.Format.formatter -> t -> unitval show : t -> stringfind_index word is Some i where is is the index of word in the BIP39 word list, or None if no such word is in the list.
val of_indices : int list -> t optionof_indices idxs is Some mnemonic if indices are all in range 0-2047 or None otherwise.
val to_indices : t -> int listto_indices t is the list of indices corresponding to t.
val of_words : string list -> t optionof_words words is Some mnemonic if words is a list containing a valids number of valid english words.
val to_words : t -> string listto_words mnemonic is the list of words corresponding to mnemonic.
val of_entropy : Mavryk_base.TzPervasives.Bytes.t -> tof_entropy bytes is the mnemonic derived from bytes.
val to_seed :
?passphrase:Mavryk_base.TzPervasives.Bytes.t ->
t ->
Mavryk_base.TzPervasives.Bytes.tto_seed ?passphrase mnemonic is 64 bytes derived from a BIP39 mnemonic mnemonic, using the optional passphrase passphrase if provided.