index.js 1.0 KB

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