2016-10-21 01:44:31 +02:00
|
|
|
const EventEmitter = require('events').EventEmitter
|
|
|
|
const Wallet = require('ethereumjs-wallet')
|
2016-10-21 04:01:04 +02:00
|
|
|
const ethUtil = require('ethereumjs-util')
|
2016-10-21 01:44:31 +02:00
|
|
|
const type = 'Simple Key Pair'
|
2016-10-21 20:10:36 +02:00
|
|
|
const sigUtil = require('../lib/sig-util')
|
2016-10-21 01:44:31 +02:00
|
|
|
|
2016-11-22 04:40:30 +01:00
|
|
|
class SimpleKeyring extends EventEmitter {
|
|
|
|
|
|
|
|
/* PUBLIC METHODS */
|
2016-10-21 01:44:31 +02:00
|
|
|
|
2016-11-11 19:26:12 +01:00
|
|
|
constructor (opts) {
|
2016-10-21 01:44:31 +02:00
|
|
|
super()
|
|
|
|
this.type = type
|
|
|
|
this.opts = opts || {}
|
2016-10-21 02:24:03 +02:00
|
|
|
this.wallets = []
|
2016-10-21 01:44:31 +02:00
|
|
|
}
|
|
|
|
|
2016-11-11 19:26:12 +01:00
|
|
|
serialize () {
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve(this.wallets.map(w => w.getPrivateKey().toString('hex')))
|
2016-10-21 02:24:03 +02:00
|
|
|
}
|
|
|
|
|
2017-01-02 22:55:43 +01:00
|
|
|
deserialize (privateKeys = []) {
|
2017-01-03 00:08:18 +01:00
|
|
|
this.wallets = privateKeys.map((privateKey) => {
|
|
|
|
const stripped = ethUtil.stripHexPrefix(privateKey)
|
|
|
|
const buffer = new Buffer(stripped, 'hex')
|
|
|
|
const wallet = Wallet.fromPrivateKey(buffer)
|
2016-10-21 02:24:03 +02:00
|
|
|
return wallet
|
|
|
|
})
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve()
|
2016-10-21 01:44:31 +02:00
|
|
|
}
|
|
|
|
|
2016-11-11 19:26:12 +01:00
|
|
|
addAccounts (n = 1) {
|
2016-10-21 01:44:31 +02:00
|
|
|
var newWallets = []
|
|
|
|
for (var i = 0; i < n; i++) {
|
|
|
|
newWallets.push(Wallet.generate())
|
|
|
|
}
|
2016-10-21 02:24:03 +02:00
|
|
|
this.wallets = this.wallets.concat(newWallets)
|
2016-11-23 08:16:36 +01:00
|
|
|
const hexWallets = newWallets.map(w => w.getAddress().toString('hex'))
|
|
|
|
return Promise.resolve(hexWallets)
|
2016-10-21 01:44:31 +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-21 01:44:31 +02:00
|
|
|
}
|
|
|
|
|
2016-10-21 04:01:04 +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-21 04:01:04 +02:00
|
|
|
var privKey = wallet.getPrivateKey()
|
|
|
|
tx.sign(privKey)
|
2016-11-23 08:16:36 +01:00
|
|
|
return Promise.resolve(tx)
|
2016-10-21 04:01:04 +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-21 04:01:04 +02:00
|
|
|
const message = ethUtil.removeHexPrefix(data)
|
|
|
|
var privKey = wallet.getPrivateKey()
|
|
|
|
var msgSig = ethUtil.ecsign(new Buffer(message, 'hex'), privKey)
|
2016-10-21 20:10:36 +02:00
|
|
|
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-21 04:01:04 +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 */
|
|
|
|
|
|
|
|
_getWalletForAccount (account) {
|
2016-10-21 04:01:04 +02:00
|
|
|
return this.wallets.find(w => w.getAddress().toString('hex') === account)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-11-22 04:40:30 +01:00
|
|
|
|
|
|
|
SimpleKeyring.type = type
|
|
|
|
module.exports = SimpleKeyring
|