Viewing File: /home/ubuntu/todaykat-frontend-base/node_modules/@ethersproject/wordlists/src.ts/wordlists.ts

import { Wordlist } from "./wordlist";

import { langCz as cz } from "./lang-cz";
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";

export const wordlists: { [ locale: string ]: Wordlist } = {
    cz: cz,
    en: en,
    es: es,
    fr: fr,
    it: it,
    ja: ja,
    ko: ko,
    zh: zh_cn,
    zh_cn: zh_cn,
    zh_tw: zh_tw
};


Back to Directory File Manager