2019-05-15 01:25:46 +03:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
// Wordlists
|
|
|
|
// See: https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md
|
|
|
|
|
2020-11-15 01:42:36 +03:00
|
|
|
// Browser; only include English by default
|
2019-05-15 01:25:46 +03:00
|
|
|
|
|
|
|
import { Wordlist } from "./wordlist";
|
|
|
|
|
2019-06-12 16:35:44 +03:00
|
|
|
import { langEn as en } from "./lang-en";
|
2019-05-15 01:25:46 +03:00
|
|
|
|
2020-11-15 01:42:36 +03:00
|
|
|
export const wordlists: { [ locale: string ]: Wordlist } = {
|
|
|
|
en: en
|
2019-05-15 01:25:46 +03:00
|
|
|
}
|