ethers.js/packages/wordlists/src.ts/index.ts
2019-05-14 18:25:46 -04:00

30 lines
786 B
TypeScript

"use strict";
// Wordlists
// See: https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md
import { Wordlist } from "./wordlist";
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 en: Wordlist = _en;
const es: Wordlist = _es;
const fr: Wordlist = _fr;
const it: Wordlist = _it;
const ja: Wordlist = _ja;
const ko: Wordlist = _ko;
const zh: Wordlist = _zh_cn;
const zh_cn: Wordlist = _zh_cn;
const zh_tw: Wordlist = _zh_tw;
export {
en, es, fr, it, ja, ko, zh, zh_cn, zh_tw
}