2.22.31 • Published 4 years ago

@chainx/wasm-crypto v2.22.31

Weekly downloads
13
License
-
Repository
-
Last release
4 years ago

@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('@chainx/util');
const { bio39Generate, bip39ToSeed, waitReady } = require('@chainx/wasm-crypto');

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

  // generate phrase
  const phrase = bip39Generate();

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

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

4 years ago

2.22.2

5 years ago

2.22.0

5 years ago

2.21.2

5 years ago

2.21.0

5 years ago

2.21.0-y.4

5 years ago

2.21.0-y.3

5 years ago

2.20.2

5 years ago

2.20.0

5 years ago

2.19.2

5 years ago

2.19.1

5 years ago

2.19.0

5 years ago