@chainx-v2/wasm-crypto

Wrapper around crypto hashing functions

Usage no npm install needed!

<script type="module">
  import chainxV2WasmCrypto from 'https://cdn.skypack.dev/@chainx-v2/wasm-crypto';
</script>

README

@chainx-v2/wasm-crypto

Wrapper around crypto hashing functions

Usage

Install the package (also requires @chainx-v2/util for TextEncoder polyfills - not included here as a dependency to keep the tree lean)

yarn add @chainx-v2/wasm-crypto @chainx-v2/util

Use it -

const { u8aToHex } = require('@chainx-v2/util');
const { bio39Generate, bip39ToSeed, waitReady } = require('@chainx-v2/wasm-crypto');

async function main () {
  // first wait until the WASM has been loaded (async init)
  await waitReady();

  // generate phrase
  const phrase = bip39Generate(12);

  // get ed25519 seed from phrase
  const seed = bip39ToSeed(phrase, '');

  // display
  console.log('phrase:', phrase);
  console.log('seed:', u8aToHex(seed));
}