UNPKG

@plugnet/util-crypto

Version:
10 lines (9 loc) 428 B
import '../polyfill'; /** * @summary Create valid mnemonic strings, validate them using BIP39, and convert them to valid seeds */ export { default as mnemonicGenerate } from './generate'; export { default as mnemonicToEntropy } from './toEntropy'; export { default as mnemonicToMiniSecret } from './toMiniSecret'; export { default as mnemonicToSeed } from './toSeed'; export { default as mnemonicValidate } from './validate';