1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 02:58:09 +01:00
metamask-extension/app/scripts/keyrings/hd.js

109 lines
2.7 KiB
JavaScript
Raw Normal View History

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')
// *Internal Deps
const sigUtil = require('../lib/sig-util')
// Options:
2016-10-28 02:23:26 +02:00
const hdPathString = `m/44'/60'/0'/0`
const type = 'HD Key Tree'
2016-10-28 02:23:26 +02:00
class HdKeyring extends EventEmitter {
2016-10-28 01:50:01 +02: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
this.deserialize(opts)
}
serialize () {
return {
mnemonic: this.mnemonic,
numberOfAccounts: this.wallets.length,
}
}
2016-11-11 19:26:12 +01:00
deserialize (opts = {}) {
this.opts = opts || {}
2016-10-28 01:50:01 +02:00
this.wallets = []
this.mnemonic = null
this.root = null
if ('mnemonic' in opts) {
this._initFromMnemonic(opts.mnemonic)
}
if ('numberOfAccounts' in opts) {
this.addAccounts(opts.numberOfAccounts)
}
2016-10-28 01:50:01 +02:00
}
addAccounts (numberOfAccounts = 1) {
2016-10-28 02:23:26 +02:00
if (!this.root) {
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 = []
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)
}
return newWallets.map(w => w.getAddress().toString('hex'))
}
2016-11-11 19:26:12 +01:00
getAccounts () {
2016-10-28 01:50:01 +02:00
return this.wallets.map(w => w.getAddress().toString('hex'))
}
// tx is an instance of the ethereumjs-transaction class.
2016-11-11 19:26:12 +01:00
signTransaction (address, tx) {
const wallet = this._getWalletForAccount(address)
2016-10-28 01:50:01 +02:00
var privKey = wallet.getPrivateKey()
tx.sign(privKey)
return tx
}
// For eth_sign, we need to sign transactions:
2016-11-11 19:26:12 +01:00
signMessage (withAccount, data) {
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))
return rawMsgSig
}
exportAccount (address) {
const wallet = this._getWalletForAccount(address)
return 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 23:40:23 +01:00
return this.wallets.find((w) => {
const address = w.getAddress().toString('hex')
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
}
HdKeyring.type = type
module.exports = HdKeyring