UNPKG

pawtils

Version:

This repository contains several utils to work with the cryptocurrency [Paw](https://paw.digital/) inside the browser.

11 lines 439 B
/** * Converts the provided entropy into an equivalent mnemonic * @param entropy - The entropy to convert */ export declare function entropyToMnemonic(entropy: Uint8Array): Promise<string>; /** * Converts the provided mnemonic into it's equivalent entropy * @param mnemonic - The mnemonic to convert */ export declare function mnemonicToEntropy(mnemonic: string): Promise<Uint8Array>; //# sourceMappingURL=mnemonic.d.ts.map