Files
Tarik Gul 65286fb3ec
Some checks failed
Lock Threads / lock (push) Has been cancelled
Set headers to 2026 (#609)
2026-03-13 01:32:10 +02:00
..
2026-03-13 01:32:10 +02:00
2026-03-13 01:32:10 +02:00
2025-11-10 18:31:44 +05:30
2025-11-10 18:31:44 +05:30
2025-12-09 15:27:27 +05:30
2022-06-23 11:31:01 +03:00
2023-05-18 08:22:56 +03:00
2025-11-10 18:31:44 +05:30

@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 -

import { u8aToHex } from '@polkadot/util';
import { bip39Generate, bip39ToSeed, waitReady } from '@polkadot/wasm-crypto';

// 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));