weilu / mnemonic

Implementation of https://raw.github.com/spesmilo/electrum/master/lib/mnemonic.py in JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mnemonic

Implementation of Electrum's mnemonic in JavaScript

Usage

npm install mnemonic

var mnemonic = require('mnemonic')
var wlist = [
  "spiral", "squeeze", "strain", "sunset", "suspend", "sympathy",
  "thigh", "throne", "total", "unseen", "weapon", "weary"
]
mnemonic.decode(wlist) // => '0028644c0028644f0028645200286455'
mnemonic.encode('0028644c0028644f0028645200286455') // => wlist

Credits

  • Wordlist and implementation are ported from Electrum
  • Some of the test cases are stolen from mnemonic.js

About

Implementation of https://raw.github.com/spesmilo/electrum/master/lib/mnemonic.py in JavaScript


Languages

Language:JavaScript 100.0%