2019-08-25 09:39:20 +03:00
|
|
|
"use strict";
|
|
|
|
// Wordlists
|
|
|
|
// See: https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md
|
2019-11-23 15:38:13 +03:00
|
|
|
import { logger, Wordlist } from "./wordlist";
|
2020-01-07 03:00:55 +03:00
|
|
|
import { langCz as cz } from "./lang-cz";
|
2019-08-25 09:39:20 +03:00
|
|
|
import { langEn as en } from "./lang-en";
|
|
|
|
import { langEs as es } from "./lang-es";
|
|
|
|
import { langFr as fr } from "./lang-fr";
|
|
|
|
import { langJa as ja } from "./lang-ja";
|
|
|
|
import { langKo as ko } from "./lang-ko";
|
|
|
|
import { langIt as it } from "./lang-it";
|
|
|
|
import { langZhCn as zh_cn, langZhTw as zh_tw } from "./lang-zh";
|
|
|
|
const wordlists = {
|
2020-01-07 03:00:55 +03:00
|
|
|
cz: cz,
|
2019-08-25 09:39:20 +03:00
|
|
|
en: en,
|
|
|
|
es: es,
|
|
|
|
fr: fr,
|
|
|
|
it: it,
|
|
|
|
ja: ja,
|
|
|
|
ko: ko,
|
|
|
|
zh: zh_cn,
|
|
|
|
zh_cn: zh_cn,
|
|
|
|
zh_tw: zh_tw
|
|
|
|
};
|
2019-11-23 15:38:13 +03:00
|
|
|
export { logger, Wordlist, wordlists };
|