nifty-wallet/app/scripts/keyrings/hd.js

112 lines
2.8 KiB
JavaScript
Raw Normal View History

2016-10-27 16:50:01 -07:00
const EventEmitter = require('events').EventEmitter
const hdkey = require('ethereumjs-wallet/hdkey')
const bip39 = require('bip39')
const ethUtil = require('ethereumjs-util')
// *Internal Deps
const sigUtil = require('../lib/sig-util')
// Options:
2016-10-27 17:23:26 -07:00
const hdPathString = `m/44'/60'/0'/0`
const type = 'HD Key Tree'
2016-10-27 17:23:26 -07:00
class HdKeyring extends EventEmitter {
2016-10-27 16:50:01 -07:00
/* PUBLIC METHODS */
2016-10-27 16:50:01 -07:00
2016-11-11 10:26:12 -08:00
constructor (opts = {}) {
2016-10-27 16:50:01 -07:00
super()
this.type = type
this.deserialize(opts)
}
serialize () {
return Promise.resolve({
mnemonic: this.mnemonic,
numberOfAccounts: this.wallets.length,
})
}
2016-11-11 10:26:12 -08:00
deserialize (opts = {}) {
this.opts = opts || {}
2016-10-27 16:50:01 -07:00
this.wallets = []
this.mnemonic = null
this.root = null
2016-12-19 16:29:44 -08:00
if (opts.mnemonic) {
this._initFromMnemonic(opts.mnemonic)
}
2016-12-19 16:29:44 -08:00
if (opts.numberOfAccounts) {
return this.addAccounts(opts.numberOfAccounts)
}
return Promise.resolve([])
2016-10-27 16:50:01 -07:00
}
addAccounts (numberOfAccounts = 1) {
2016-10-27 17:23:26 -07:00
if (!this.root) {
this._initFromMnemonic(bip39.generateMnemonic())
2016-10-27 17:23:26 -07:00
}
const oldLen = this.wallets.length
2016-10-27 16:50:01 -07:00
const newWallets = []
for (let i = oldLen; i < numberOfAccounts + oldLen; i++) {
2016-10-27 17:23:26 -07:00
const child = this.root.deriveChild(i)
const wallet = child.getWallet()
2016-10-27 16:50:01 -07:00
newWallets.push(wallet)
this.wallets.push(wallet)
}
const hexWallets = newWallets.map(w => w.getAddress().toString('hex'))
return Promise.resolve(hexWallets)
2016-10-27 16:50:01 -07:00
}
2016-11-11 10:26:12 -08:00
getAccounts () {
return Promise.resolve(this.wallets.map(w => w.getAddress().toString('hex')))
2016-10-27 16:50:01 -07:00
}
// tx is an instance of the ethereumjs-transaction class.
2016-11-11 10:26:12 -08:00
signTransaction (address, tx) {
const wallet = this._getWalletForAccount(address)
2016-10-27 16:50:01 -07:00
var privKey = wallet.getPrivateKey()
tx.sign(privKey)
return Promise.resolve(tx)
2016-10-27 16:50:01 -07:00
}
// For eth_sign, we need to sign transactions:
2016-11-11 10:26:12 -08:00
signMessage (withAccount, data) {
const wallet = this._getWalletForAccount(withAccount)
2016-10-27 16:50:01 -07:00
const message = ethUtil.removeHexPrefix(data)
var privKey = wallet.getPrivateKey()
var msgSig = ethUtil.ecsign(new Buffer(message, 'hex'), privKey)
var rawMsgSig = ethUtil.bufferToHex(sigUtil.concatSig(msgSig.v, msgSig.r, msgSig.s))
return Promise.resolve(rawMsgSig)
2016-10-27 16:50:01 -07:00
}
exportAccount (address) {
const wallet = this._getWalletForAccount(address)
return Promise.resolve(wallet.getPrivateKey().toString('hex'))
}
/* PRIVATE METHODS */
_initFromMnemonic (mnemonic) {
this.mnemonic = mnemonic
const seed = bip39.mnemonicToSeed(mnemonic)
this.hdWallet = hdkey.fromMasterSeed(seed)
this.root = this.hdWallet.derivePath(hdPathString)
}
_getWalletForAccount (account) {
2016-11-03 15:40:23 -07:00
return this.wallets.find((w) => {
const address = w.getAddress().toString('hex')
return ((address === account) || (sigUtil.normalize(address) === account))
2016-11-03 15:40:23 -07:00
})
2016-10-27 16:50:01 -07:00
}
2016-11-03 15:40:23 -07:00
}
HdKeyring.type = type
module.exports = HdKeyring