ethers.js/packages/wordlists/src.ts/browser-wordlists.ts

15 lines
312 B
TypeScript
Raw Permalink Normal View History

2019-05-14 18:25:46 -04:00
"use strict";
// Wordlists
// See: https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md
2020-11-14 17:42:36 -05:00
// Browser; only include English by default
2019-05-14 18:25:46 -04:00
import { Wordlist } from "./wordlist";
import { langEn as en } from "./lang-en";
2019-05-14 18:25:46 -04:00
2020-11-14 17:42:36 -05:00
export const wordlists: { [ locale: string ]: Wordlist } = {
en: en
2019-05-14 18:25:46 -04:00
}