nifty-wallet/app/scripts/transaction-manager.js

289 lines
8.5 KiB
JavaScript
Raw Normal View History

2016-12-14 12:55:41 -08:00
const EventEmitter = require('events')
const extend = require('xtend')
2016-12-16 10:33:36 -08:00
const ethUtil = require('ethereumjs-util')
const Transaction = require('ethereumjs-tx')
const BN = ethUtil.BN
2016-12-16 10:33:36 -08:00
const TxProviderUtil = require('./lib/tx-utils')
const createId = require('./lib/random-id')
const normalize = require('./lib/sig-util').normalize
2016-12-14 12:55:41 -08:00
module.exports = class TransactionManager extends EventEmitter {
constructor (opts) {
super()
2016-12-16 10:33:36 -08:00
this.txList = opts.txList || []
this._setTxList = opts.setTxList
this.txHistoryLimit = opts.txHistoryLimit
this.getSelectedAccount = opts.getSelectedAccount
2016-12-14 12:55:41 -08:00
this.provider = opts.provider
2016-12-16 10:33:36 -08:00
this.blockTracker = opts.blockTracker
this.txProviderUtils = new TxProviderUtil(this.provider)
2017-01-04 13:13:34 -08:00
this.blockTracker.on('block', this.checkForTxInBlock.bind(this))
2016-12-16 10:33:36 -08:00
this.getGasMultiplier = opts.getGasMultiplier
this.getNetwork = opts.getNetwork
}
getState () {
var selectedAccount = this.getSelectedAccount()
2016-12-16 10:33:36 -08:00
return {
transactions: this.getTxList(),
unconfTxs: this.getUnapprovedTxList(),
selectedAccountTxList: this.getFilteredTxList({metamaskNetworkId: this.getNetwork(), from: selectedAccount}),
2016-12-16 10:33:36 -08:00
}
2016-12-14 12:55:41 -08:00
}
// Returns the tx list
getTxList () {
return this.txList
}
// Adds a tx to the txlist
addTx (txMeta, onTxDoneCb = warn) {
2016-12-14 12:55:41 -08:00
var txList = this.getTxList()
2016-12-16 10:33:36 -08:00
var txHistoryLimit = this.txHistoryLimit
// checks if the length of th tx history is
// longer then desired persistence limit
// and then if it is removes only confirmed
// or rejected tx's.
// not tx's that are pending or unapproved
2016-12-16 10:33:36 -08:00
if (txList.length > txHistoryLimit - 1) {
var index = txList.findIndex((metaTx) => metaTx.status === 'confirmed' || metaTx.status === 'rejected')
txList.splice(index, 1)
2016-12-14 12:55:41 -08:00
}
2016-12-16 10:33:36 -08:00
txList.push(txMeta)
2016-12-14 12:55:41 -08:00
this._saveTxList(txList)
2016-12-16 10:33:36 -08:00
// keep the onTxDoneCb around in a listener
// for after approval/denial (requires user interaction)
// This onTxDoneCb fires completion to the Dapp's write operation.
this.once(`${txMeta.id}:signed`, function (txId) {
this.removeAllListeners(`${txMeta.id}:rejected`)
onTxDoneCb(null, true)
})
this.once(`${txMeta.id}:rejected`, function (txId) {
this.removeAllListeners(`${txMeta.id}:signed`)
onTxDoneCb(null, false)
})
this.emit('updateBadge')
2016-12-16 10:33:36 -08:00
this.emit(`${txMeta.id}:unapproved`, txMeta)
2016-12-14 12:55:41 -08:00
}
2016-12-14 15:04:33 -08:00
// gets tx by Id and returns it
2016-12-14 12:55:41 -08:00
getTx (txId, cb) {
var txList = this.getTxList()
var txMeta = txList.find(txData => txData.id === txId)
2016-12-16 10:33:36 -08:00
return cb ? cb(txMeta) : txMeta
2016-12-14 12:55:41 -08:00
}
2016-12-14 15:04:33 -08:00
//
2016-12-16 10:33:36 -08:00
updateTx (txMeta) {
var txId = txMeta.id
2016-12-14 12:55:41 -08:00
var txList = this.getTxList()
var index = txList.findIndex(txData => txData.id === txId)
2016-12-16 10:33:36 -08:00
txList[index] = txMeta
this._saveTxList(txList)
2016-12-14 12:55:41 -08:00
}
get unapprovedTxCount () {
2016-12-14 12:55:41 -08:00
return Object.keys(this.getUnapprovedTxList()).length
}
get pendingTxCount () {
return this.getTxsByMetaData('status', 'signed').length
}
2016-12-16 10:33:36 -08:00
addUnapprovedTransaction (txParams, onTxDoneCb, cb) {
// create txData obj with parameters and meta data
var time = (new Date()).getTime()
var txId = createId()
txParams.metamaskId = txId
txParams.metamaskNetworkId = this.getNetwork()
var txData = {
id: txId,
txParams: txParams,
time: time,
status: 'unapproved',
gasMultiplier: this.getGasMultiplier() || 1,
metamaskNetworkId: this.getNetwork(),
}
this.txProviderUtils.analyzeGasUsage(txData, this.txDidComplete.bind(this, txData, onTxDoneCb, cb))
// calculate metadata for tx
}
txDidComplete (txMeta, onTxDoneCb, cb, err) {
if (err) return cb(err)
this.addTx(txMeta, onTxDoneCb)
cb(null, txMeta)
}
2016-12-14 12:55:41 -08:00
getUnapprovedTxList () {
var txList = this.getTxList()
2016-12-16 10:33:36 -08:00
return txList.filter((txMeta) => txMeta.status === 'unapproved')
.reduce((result, tx) => {
2016-12-14 12:55:41 -08:00
result[tx.id] = tx
return result
}, {})
}
approveTransaction (txId, cb = warn) {
2016-12-16 10:33:36 -08:00
this.setTxStatusSigned(txId)
2017-01-04 13:04:33 -08:00
this.once(`${txId}:signingComplete`, cb)
2016-12-16 10:33:36 -08:00
}
cancelTransaction (txId, cb = warn) {
2016-12-16 10:33:36 -08:00
this.setTxStatusRejected(txId)
cb()
2016-12-16 10:33:36 -08:00
}
// formats txParams so the keyringController can sign it
2017-01-04 13:04:33 -08:00
formatTxForSigining (txParams) {
2017-01-04 15:03:45 -08:00
var address = txParams.from
var metaTx = this.getTx(txParams.metamaskId)
var gasMultiplier = metaTx.gasMultiplier
var gasPrice = new BN(ethUtil.stripHexPrefix(txParams.gasPrice), 16)
gasPrice = gasPrice.mul(new BN(gasMultiplier * 100, 10)).div(new BN(100, 10))
txParams.gasPrice = ethUtil.intToHex(gasPrice.toNumber())
// normalize values
txParams.to = normalize(txParams.to)
txParams.from = normalize(txParams.from)
txParams.value = normalize(txParams.value)
txParams.data = normalize(txParams.data)
txParams.gasLimit = normalize(txParams.gasLimit || txParams.gas)
txParams.nonce = normalize(txParams.nonce)
const ethTx = new Transaction(txParams)
var txId = txParams.metamaskId
return Promise.resolve({ethTx, address, txId})
}
2016-12-16 10:33:36 -08:00
// receives a signed tx object and updates the tx hash
// and pass it to the cb to be sent off
resolveSignedTransaction ({tx, txId, cb = warn}) {
// Add the tx hash to the persisted meta-tx object
var txHash = ethUtil.bufferToHex(tx.hash())
var metaTx = this.getTx(txId)
metaTx.hash = txHash
this.updateTx(metaTx)
var rawTx = ethUtil.bufferToHex(tx.serialize())
2017-01-04 13:04:33 -08:00
return Promise.resolve(rawTx)
2016-12-16 10:33:36 -08:00
}
2016-12-14 15:04:33 -08:00
/*
Takes an object of fields to search for eg:
var thingsToLookFor = {
to: '0x0..',
from: '0x0..',
status: 'signed',
}
and returns a list of tx with all
options matching
this is for things like filtering a the tx list
for only tx's from 1 account
or for filltering for all txs from one account
and that have been 'confirmed'
*/
2016-12-16 10:33:36 -08:00
getFilteredTxList (opts) {
2016-12-14 12:55:41 -08:00
var filteredTxList
Object.keys(opts).forEach((key) => {
filteredTxList = this.getTxsByMetaData(key, opts[key], filteredTxList)
})
return filteredTxList
}
getTxsByMetaData (key, value, txList = this.getTxList()) {
2016-12-16 10:33:36 -08:00
return txList.filter((txMeta) => {
if (key in txMeta.txParams) {
return txMeta.txParams[key] === value
2016-12-14 12:55:41 -08:00
} else {
2016-12-16 10:33:36 -08:00
return txMeta[key] === value
2016-12-14 12:55:41 -08:00
}
})
}
// STATUS METHODS
// get::set status
// should return the status of the tx.
getTxStatus (txId) {
2016-12-16 10:33:36 -08:00
const txMeta = this.getTx(txId)
return txMeta.status
2016-12-14 12:55:41 -08:00
}
// should update the status of the tx to 'signed'.
2016-12-14 12:55:41 -08:00
setTxStatusSigned (txId) {
2016-12-16 10:33:36 -08:00
this._setTxStatus(txId, 'signed')
this.emit('updateBadge')
2016-12-14 12:55:41 -08:00
}
// should update the status of the tx to 'rejected'.
2016-12-14 12:55:41 -08:00
setTxStatusRejected (txId) {
2016-12-16 10:33:36 -08:00
this._setTxStatus(txId, 'rejected')
this.emit('updateBadge')
2016-12-14 12:55:41 -08:00
}
setTxStatusConfirmed (txId) {
2016-12-16 10:33:36 -08:00
this._setTxStatus(txId, 'confirmed')
2016-12-14 12:55:41 -08:00
}
// merges txParams obj onto txData.txParams
// use extend to ensure that all fields are filled
updateTxParams (txId, txParams) {
2016-12-16 10:33:36 -08:00
var txMeta = this.getTx(txId)
txMeta.txParams = extend(txMeta.txParams, txParams)
2016-12-16 10:33:36 -08:00
this.updateTx(txMeta)
2016-12-14 12:55:41 -08:00
}
2016-12-14 15:04:33 -08:00
// checks if a signed tx is in a block and
// if included sets the tx status as 'confirmed'
2016-12-14 12:55:41 -08:00
checkForTxInBlock () {
2016-12-16 10:33:36 -08:00
var signedTxList = this.getFilteredTxList({status: 'signed', err: undefined})
2016-12-14 12:55:41 -08:00
if (!signedTxList.length) return
signedTxList.forEach((tx) => {
var txHash = tx.hash
var txId = tx.id
if (!txHash) return
2016-12-16 10:33:36 -08:00
this.txProviderUtils.query.getTransactionByHash(txHash, (err, txMeta) => {
if (err || !txMeta) {
tx.err = err || 'Tx could possibly have not been submitted'
2016-12-16 10:33:36 -08:00
this.updateTx(tx)
return txMeta ? console.error(err) : console.debug(`txMeta is ${txMeta} for:`, tx)
2016-12-14 12:55:41 -08:00
}
2016-12-16 10:33:36 -08:00
if (txMeta.blockNumber) {
this.setTxStatusConfirmed(txId)
2016-12-14 12:55:41 -08:00
}
})
})
}
2016-12-16 10:33:36 -08:00
// PRIVATE METHODS
2016-12-16 10:33:36 -08:00
// Should find the tx in the tx list and
// update it.
// should set the status in txData
// - `'unapproved'` the user has not responded
// - `'rejected'` the user has responded no!
// - `'signed'` the tx is signed
// - `'submitted'` the tx is sent to a server
// - `'confirmed'` the tx has been included in a block.
_setTxStatus (txId, status) {
var txMeta = this.getTx(txId)
txMeta.status = status
this.emit(`${txMeta.id}:${status}`, txId)
this.updateTx(txMeta)
}
// Saves the new/updated txList.
// Function is intended only for internal use
_saveTxList (txList) {
this.txList = txList
this._setTxList(txList)
}
2016-12-14 12:55:41 -08:00
}
2016-12-16 10:33:36 -08:00
const warn = () => console.warn('warn was used no cb provided')