You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
237 B
TypeScript
7 lines
237 B
TypeScript
5 years ago
|
export interface RecoveryPhraseUtil {
|
||
|
mn_encode(str: string, wordset_name: string): string;
|
||
|
mn_decode(str: string, wordset_name: string): string;
|
||
|
get_languages(): Array<string>;
|
||
|
pubkey_to_secret_words(pubKey?: string): string;
|
||
|
}
|