JavaScript implementation of Bitcoin BIP39: Mnemonic code for generating deterministic keys
Go to file
Wei Lu caa9922dc8 add English wordlist and constructor 2014-03-11 12:38:26 +08:00
test add English wordlist and constructor 2014-03-11 12:38:26 +08:00
wordlists add English wordlist and constructor 2014-03-11 12:38:26 +08:00
.gitignore implement mnemonicToSeed 2014-03-10 10:49:53 +08:00
README.md Add example usage 2014-03-10 11:13:29 +08:00
index.js add English wordlist and constructor 2014-03-11 12:38:26 +08:00
package.json bump version 2014-03-10 11:14:52 +08:00

README.md

bip39

JavaScript implementation of Bitcoin BIP39: Mnemonic code for generating deterministic keys

Usage

npm install bip39

bip39 = require('bip39')
bip39.mnemonicToSeed('crazy horse battery staple')
// wait for it...
// 'd6b0f05e5e039b4b4adb72e84f3d5df121cc2dba8b236a1b3a5a8d487b9641096717364fc96e24ddbc648e0e6badbff72332e7d44dc2a42796c2d7e58ee632de'

TODO

  • seedToMnemonic
  • generateMnemonic