2016-10-28 01:50:01 +02:00
|
|
|
const EventEmitter = require('events').EventEmitter
|
|
|
|
const hdkey = require('ethereumjs-wallet/hdkey')
|
|
|
|
const bip39 = require('bip39')
|
|
|
|
const ethUtil = require('ethereumjs-util')
|
|
|
|
|
2016-11-22 04:40:30 +01:00
|
|
|
// *Internal Deps
|
|
|
|
const sigUtil = require('../lib/sig-util')
|
2016-11-12 00:40:12 +01:00
|
|
|
|
2016-11-22 04:40:30 +01:00
|
|
|
// Options:
|
2016-10-28 02:23:26 +02:00
|
|
|
const hdPathString = `m/44'/60'/0'/0`
|
2016-11-22 04:40:30 +01:00
|
|
|
const type = 'HD Key Tree'
|
2016-10-28 02:23:26 +02:00
|
|
|
|
2016-11-22 04:40:30 +01:00
|
|
|
class HdKeyring extends EventEmitter {
|
2016-10-28 01:50:01 +02:00
|
|
|
|
2016-11-22 04:40:30 +01:00
|
|
|
/* PUBLIC METHODS */
|
2016-10-28 01:50:01 +02:00
|
|
|
|
2016-11-11 19:26:12 +01:00
|
|
|
constructor (opts = {}) {
|
2016-10-28 01:50:01 +02:00
|
|
|
super()
|
|
|
|
this.type = type
|
2016-11-01 19:25:38 +01:00
|
|
|
this.deserialize(opts)
|
|
|
|
}
|
|
|
|
|
2016-11-22 04:40:30 +01:00
|
|
|
serialize () {
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve({
|
2016-11-22 04:40:30 +01:00
|
|
|
mnemonic: this.mnemonic,
|
|
|
|
numberOfAccounts: this.wallets.length,
|
2016-11-23 08:16:36 +01:00
|
|
|
})
|
2016-11-22 04:40:30 +01:00
|
|
|
}
|
|
|
|
|
2016-11-11 19:26:12 +01:00
|
|
|
deserialize (opts = {}) {
|
2016-11-02 23:04:50 +01:00
|
|
|
this.opts = opts || {}
|
2016-10-28 01:50:01 +02:00
|
|
|
this.wallets = []
|
|
|
|
this.mnemonic = null
|
2016-11-01 19:25:38 +01:00
|
|
|
this.root = null
|
|
|
|
|
|
|
|
if ('mnemonic' in opts) {
|
2016-11-22 04:40:30 +01:00
|
|
|
this._initFromMnemonic(opts.mnemonic)
|
2016-11-01 19:25:38 +01:00
|
|
|
}
|
|
|
|
|
2016-11-12 00:40:12 +01:00
|
|
|
if ('numberOfAccounts' in opts) {
|
|
|
|
this.addAccounts(opts.numberOfAccounts)
|
2016-11-01 19:25:38 +01:00
|
|
|
}
|
2016-11-23 08:16:36 +01:00
|
|
|
|
|
|
|
return Promise.resolve()
|
2016-10-28 01:50:01 +02:00
|
|
|
}
|
|
|
|
|
2016-11-12 00:40:12 +01:00
|
|
|
addAccounts (numberOfAccounts = 1) {
|
2016-10-28 02:23:26 +02:00
|
|
|
if (!this.root) {
|
2016-11-22 04:40:30 +01:00
|
|
|
this._initFromMnemonic(bip39.generateMnemonic())
|
2016-10-28 02:23:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const oldLen = this.wallets.length
|
2016-10-28 01:50:01 +02:00
|
|
|
const newWallets = []
|
2016-11-12 00:40:12 +01:00
|
|
|
for (let i = oldLen; i < numberOfAccounts + oldLen; i++) {
|
2016-10-28 02:23:26 +02:00
|
|
|
const child = this.root.deriveChild(i)
|
|
|
|
const wallet = child.getWallet()
|
2016-10-28 01:50:01 +02:00
|
|
|
newWallets.push(wallet)
|
|
|
|
this.wallets.push(wallet)
|
|
|
|
}
|
2016-11-23 08:16:36 +01:00
|
|
|
const hexWallets = newWallets.map(w => w.getAddress().toString('hex'))
|
|
|
|
return Promise.resolve(hexWallets)
|
2016-10-28 01:50:01 +02:00
|
|
|
}
|
|
|
|
|
2016-11-11 19:26:12 +01:00
|
|
|
getAccounts () {
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve(this.wallets.map(w => w.getAddress().toString('hex')))
|
2016-10-28 01:50:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// tx is an instance of the ethereumjs-transaction class.
|
2016-11-11 19:26:12 +01:00
|
|
|
signTransaction (address, tx) {
|
2016-11-22 04:40:30 +01:00
|
|
|
const wallet = this._getWalletForAccount(address)
|
2016-10-28 01:50:01 +02:00
|
|
|
var privKey = wallet.getPrivateKey()
|
|
|
|
tx.sign(privKey)
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve(tx)
|
2016-10-28 01:50:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// For eth_sign, we need to sign transactions:
|
2016-11-11 19:26:12 +01:00
|
|
|
signMessage (withAccount, data) {
|
2016-11-22 04:40:30 +01:00
|
|
|
const wallet = this._getWalletForAccount(withAccount)
|
2016-10-28 01:50:01 +02: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))
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve(rawMsgSig)
|
2016-10-28 01:50:01 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 04:40:30 +01:00
|
|
|
exportAccount (address) {
|
|
|
|
const wallet = this._getWalletForAccount(address)
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve(wallet.getPrivateKey().toString('hex'))
|
2016-11-22 04:40:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 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 23:40:23 +01:00
|
|
|
return this.wallets.find((w) => {
|
|
|
|
const address = w.getAddress().toString('hex')
|
2016-11-12 00:40:12 +01:00
|
|
|
return ((address === account) || (sigUtil.normalize(address) === account))
|
2016-11-03 23:40:23 +01:00
|
|
|
})
|
2016-10-28 01:50:01 +02:00
|
|
|
}
|
2016-11-03 23:40:23 +01:00
|
|
|
}
|
2016-11-22 04:40:30 +01:00
|
|
|
|
|
|
|
HdKeyring.type = type
|
|
|
|
module.exports = HdKeyring
|