@polkadot/wasm-crypto
Wrapper around crypto hashing functions
Usage
Install the package (also requires @polkadot/util
for TextEncoder
polyfills - not included here as a dependency to keep the tree lean)
yarn add @polkadot/wasm-crypto @polkadot/util
Use it -
const { u8aToHex } = require('@polkadot/util');
const { bio39Generate, bip39ToSeed, waitReady } = require('@polkadot/wasm-crypto');
async function main () {
await waitReady();
const phrase = bip39Generate();
const seed = bip39ToSeed(phrase, '');
console.log('phrase:', phrase);
console.log('seed:', u8aToHex(seed));
}