https://github.com/serapath/bip39wordlist
bip39 wordlists https://www.npmjs.com/package/bip39wordlist
https://github.com/serapath/bip39wordlist
bip39 mnemonic wordlist wordlists
Last synced: 6 months ago
JSON representation
bip39 wordlists https://www.npmjs.com/package/bip39wordlist
- Host: GitHub
- URL: https://github.com/serapath/bip39wordlist
- Owner: serapath
- License: mit
- Created: 2020-06-22T15:23:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-22T23:04:57.000Z (over 5 years ago)
- Last Synced: 2025-03-17T09:44:53.406Z (7 months ago)
- Topics: bip39, mnemonic, wordlist, wordlists
- Language: JavaScript
- Homepage: https://serapath.github.io/bip39wordlist/
- Size: 274 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bip39wordlist
bip39 wordlistshttps://www.npmjs.com/package/bip39wordlist
https://serapath.github.io/bip39wordlist/
# use
`npm install bip39wordlist`
```js
const all = require('bip39wordlist')const chinese_simplified = require('bip39wordlist/chinese_simplified.json')
const chinese_traditional = require('bip39wordlist/chinese_traditional.json')
const english = require('bip39wordlist/english.json')
const french = require('bip39wordlist/french.json')
const italian = require('bip39wordlist/italian.json')
const japanese = require('bip39wordlist/japanese.json')
const korean = require('bip39wordlist/korean.json')
const spanish = require('bip39wordlist/spanish.json')
// const german = require('bip39wordlist/german.json') // @TODO: add 2048 words long german wordlist// const wordlist = chinese_simplified
// const wordlist = chinese_traditional
// const wordlist = english
// const wordlist = french
// const wordlist = italian
// const wordlist = japanese
// const wordlist = korean
const wordlist = spanishconst { list, seperator } = wordlist
console.log(list.length) // 2048
console.log(list[5]) // "abono"
console.log(seperator) // " "
```