Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * A Wordlist is a set of 2048 words used to encode private keys * (or other binary data) that is easier for humans to write down, * transcribe and dictate. * * The [[link-bip-39]] standard includes several checksum bits, * depending on the size of the mnemonic phrase. * * A mnemonic phrase may be 12, 15, 18, 21 or 24 words long. For * most purposes 12 word mnemonics should be used, as including * additional words increases the difficulty and potential for * mistakes and does not offer any effective improvement on security. * * There are a variety of [[link-bip39-wordlists]] for different * languages, but for maximal compatibility, the * [English Wordlist](LangEn) is recommended. * * @_section: api/wordlists:Wordlists [about-wordlists] */ export { Wordlist } from "./wordlist.js"; export { LangEn } from "./lang-en.js"; export { WordlistOwl } from "./wordlist-owl.js"; export { WordlistOwlA } from "./wordlist-owla.js"; export { wordlists } from "./wordlists.js"; |