UNPKG

485 BJavaScriptView Raw
1// Copyright 2017-2023 @polkadot/util-crypto authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3
4/**
5 * @summary Create valid mnemonic strings, validate them using BIP39, and convert them to valid seeds
6 */
7export { mnemonicGenerate } from "./generate.js";
8export { mnemonicToEntropy } from "./toEntropy.js";
9export { mnemonicToLegacySeed } from "./toLegacySeed.js";
10export { mnemonicToMiniSecret } from "./toMiniSecret.js";
11export { mnemonicValidate } from "./validate.js";
\No newline at end of file