index.js 1.8 KB

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