nifty-wallet/app/scripts/controllers/transactions.js

286 lines
10 KiB
JavaScript
Raw Normal View History

2016-12-14 12:55:41 -08:00
const EventEmitter = require('events')
const ObservableStore = require('obs-store')
2016-12-16 10:33:36 -08:00
const ethUtil = require('ethereumjs-util')
2017-09-05 21:50:36 -07:00
const Transaction = require('ethereumjs-tx')
2017-08-02 08:47:13 -07:00
const EthQuery = require('ethjs-query')
2017-08-11 14:19:35 -07:00
const TransactionStateManger = require('../lib/tx-state-manager')
2017-09-05 21:50:36 -07:00
const TxGasUtil = require('../lib/tx-gas-utils')
2017-08-08 15:30:49 -07:00
const PendingTransactionTracker = require('../lib/pending-tx-tracker')
2017-05-16 11:39:00 -07:00
const createId = require('../lib/random-id')
const NonceTracker = require('../lib/nonce-tracker')
2016-12-14 12:55:41 -08:00
2017-09-05 21:50:36 -07:00
/*
Transaction Controller is an aggregate of sub-controllers and trackers
composing them in a way to be exposed to the metamask controller
- txStateManager
responsible for the state of a transaction and
storing the transaction
- pendingTxTracker
watching blocks for transactions to be include
and emitting confirmed events
- txGasUtil
gas calculations and safety buffering
- nonceTracker
calculating nonces
*/
2016-12-14 12:55:41 -08:00
2017-05-23 14:49:10 -07:00
module.exports = class TransactionController extends EventEmitter {
2016-12-14 12:55:41 -08:00
constructor (opts) {
super()
2017-02-02 20:59:47 -08:00
this.networkStore = opts.networkStore || new ObservableStore({})
2017-02-02 21:09:17 -08:00
this.preferencesStore = opts.preferencesStore || new ObservableStore({})
2017-05-22 22:56:10 -07:00
this.provider = opts.provider
this.blockTracker = opts.blockTracker
2017-08-04 11:41:35 -07:00
this.signEthTx = opts.signTransaction
this.getGasPrice = opts.getGasPrice
2017-08-04 11:41:35 -07:00
2017-08-11 14:19:35 -07:00
this.memStore = new ObservableStore({})
this.query = new EthQuery(this.provider)
2017-09-05 21:50:36 -07:00
this.txGasUtil = new TxGasUtil(this.provider)
2017-08-11 14:19:35 -07:00
2017-08-18 12:23:35 -07:00
this.txStateManager = new TransactionStateManger({
2017-09-12 09:59:59 -07:00
initState: opts.initState,
2017-08-11 14:19:35 -07:00
txHistoryLimit: opts.txHistoryLimit,
getNetwork: this.getNetwork.bind(this),
2017-08-18 12:23:35 -07:00
})
this.store = this.txStateManager.store
this.txStateManager.on('tx:status-update', this.emit.bind(this, 'tx:status-update'))
this.nonceTracker = new NonceTracker({
provider: this.provider,
getPendingTransactions: this.txStateManager.getPendingTransactions.bind(this.txStateManager),
getConfirmedTransactions: (address) => {
return this.txStateManager.getFilteredTxList({
from: address,
status: 'confirmed',
err: undefined,
})
},
})
2017-08-04 11:41:35 -07:00
2017-08-08 15:30:49 -07:00
this.pendingTxTracker = new PendingTransactionTracker({
2017-08-04 11:41:35 -07:00
provider: this.provider,
nonceTracker: this.nonceTracker,
2017-09-12 12:19:26 -07:00
publishTransaction: (rawTx) => this.query.sendRawTransaction(rawTx),
getPendingTransactions: this.txStateManager.getPendingTransactions.bind(this.txStateManager),
getCompletedTransactions: this.txStateManager.getConfirmedTransactions.bind(this.txStateManager),
2017-08-04 11:41:35 -07:00
})
this.txStateManager.store.subscribe(() => this.emit('update:badge'))
2017-09-05 21:50:36 -07:00
this.pendingTxTracker.on('tx:warning', (txMeta) => {
this.txStateManager.updateTx(txMeta, 'transactions/pending-tx-tracker#event: tx:warning')
})
this.pendingTxTracker.on('tx:failed', this.txStateManager.setTxStatusFailed.bind(this.txStateManager))
this.pendingTxTracker.on('tx:confirmed', this.txStateManager.setTxStatusConfirmed.bind(this.txStateManager))
this.pendingTxTracker.on('tx:block-update', (txMeta, latestBlockNumber) => {
if (!txMeta.firstRetryBlockNumber) {
txMeta.firstRetryBlockNumber = latestBlockNumber
this.txStateManager.updateTx(txMeta, 'transactions/pending-tx-tracker#event: tx:block-update')
}
})
this.pendingTxTracker.on('tx:retry', (txMeta) => {
if (!('retryCount' in txMeta)) txMeta.retryCount = 0
txMeta.retryCount++
this.txStateManager.updateTx(txMeta, 'transactions/pending-tx-tracker#event: tx:retry')
})
2017-08-04 11:41:35 -07:00
this.blockTracker.on('block', this.pendingTxTracker.checkForTxInBlock.bind(this.pendingTxTracker))
// this is a little messy but until ethstore has been either
// removed or redone this is to guard against the race condition
this.blockTracker.on('latest', this.pendingTxTracker.resubmitPendingTxs.bind(this.pendingTxTracker))
2017-08-08 15:30:49 -07:00
this.blockTracker.on('sync', this.pendingTxTracker.queryPendingTxs.bind(this.pendingTxTracker))
2017-02-02 21:09:17 -08:00
// memstore is computed from a few different stores
this._updateMemstore()
2017-09-12 09:59:59 -07:00
this.txStateManager.store.subscribe(() => this._updateMemstore())
2017-04-26 21:05:45 -07:00
this.networkStore.subscribe(() => this._updateMemstore())
this.preferencesStore.subscribe(() => this._updateMemstore())
2016-12-16 10:33:36 -08:00
}
getState () {
return this.memStore.getState()
2016-12-14 12:55:41 -08:00
}
2017-02-02 20:59:47 -08:00
getNetwork () {
2017-05-22 23:12:28 -07:00
return this.networkStore.getState()
2017-02-02 20:59:47 -08:00
}
2017-02-02 21:09:17 -08:00
getSelectedAddress () {
return this.preferencesStore.getState().selectedAddress
}
getUnapprovedTxCount () {
2017-08-18 12:23:35 -07:00
return Object.keys(this.txStateManager.getUnapprovedTxList()).length
}
getPendingTxCount (account) {
return this.txStateManager.getPendingTransactions(account).length
}
getFilteredTxList (opts) {
return this.txStateManager.getFilteredTxList(opts)
}
2017-09-05 21:50:36 -07:00
getChainId () {
const networkState = this.networkStore.getState()
const getChainId = parseInt(networkState)
if (Number.isNaN(getChainId)) {
return 0
} else {
return getChainId
}
}
2016-12-14 12:55:41 -08:00
// Adds a tx to the txlist
addTx (txMeta) {
2017-08-11 14:19:35 -07:00
this.txStateManager.addTx(txMeta)
2016-12-16 10:33:36 -08:00
this.emit(`${txMeta.id}:unapproved`, txMeta)
2016-12-14 12:55:41 -08:00
}
async newUnapprovedTransaction (txParams) {
log.debug(`MetaMaskController newUnapprovedTransaction ${JSON.stringify(txParams)}`)
const initialTxMeta = await this.addUnapprovedTransaction(txParams)
this.emit('newUnapprovedTx', initialTxMeta)
// listen for tx completion (success, fail)
return new Promise((resolve, reject) => {
this.txStateManager.once(`${initialTxMeta.id}:finished`, (finishedTxMeta) => {
switch (finishedTxMeta.status) {
case 'submitted':
return resolve(finishedTxMeta.hash)
case 'rejected':
return reject(new Error('MetaMask Tx Signature: User denied transaction signature.'))
case 'failed':
return reject(new Error(finishedTxMeta.err.message))
default:
return reject(new Error(`MetaMask Tx Signature: Unknown problem: ${JSON.stringify(finishedTxMeta.txParams)}`))
}
})
})
}
async addUnapprovedTransaction (txParams) {
// validate
2017-09-05 21:50:36 -07:00
await this.txGasUtil.validateTxParams(txParams)
// construct txMeta
const txMeta = {
id: createId(),
time: (new Date()).getTime(),
status: 'unapproved',
metamaskNetworkId: this.getNetwork(),
txParams: txParams,
}
// add default tx params
2017-08-02 08:47:13 -07:00
await this.addTxDefaults(txMeta)
// save txMeta
this.addTx(txMeta)
return txMeta
2016-12-16 10:33:36 -08:00
}
async addTxDefaults (txMeta) {
const txParams = txMeta.txParams
// ensure value
2017-10-05 09:58:04 -07:00
txMeta.gasPriceSpecified = Boolean(txParams.gasPrice)
txMeta.nonceSpecified = Boolean(txParams.nonce)
let gasPrice = txParams.gasPrice
if (!gasPrice) {
gasPrice = this.getGasPrice ? this.getGasPrice() : await this.query.gasPrice()
}
2017-09-05 21:50:36 -07:00
txParams.gasPrice = ethUtil.addHexPrefix(gasPrice.toString(16))
txParams.value = txParams.value || '0x0'
2017-06-19 17:50:06 -07:00
// set gasLimit
2017-09-05 21:50:36 -07:00
return await this.txGasUtil.analyzeGasUsage(txMeta)
}
2017-12-06 19:20:11 -08:00
async retryTransaction (txId) {
this.txStateManager.setTxStatusUnapproved(txId)
const txMeta = this.txStateManager.getTx(txId)
txMeta.lastGasPrice = txMeta.txParams.gasPrice
this.txStateManager.updateTx(txMeta, 'retryTransaction: manual retry')
2017-12-06 19:20:11 -08:00
}
async updateAndApproveTransaction (txMeta) {
this.txStateManager.updateTx(txMeta, 'confTx: user approved transaction')
await this.approveTransaction(txMeta.id)
2016-12-14 12:55:41 -08:00
}
2017-07-12 15:07:56 -07:00
async approveTransaction (txId) {
let nonceLock
try {
// approve
2017-08-18 12:23:35 -07:00
this.txStateManager.setTxStatusApproved(txId)
// get next nonce
2017-08-18 12:23:35 -07:00
const txMeta = this.txStateManager.getTx(txId)
const fromAddress = txMeta.txParams.from
// wait for a nonce
nonceLock = await this.nonceTracker.getNonceLock(fromAddress)
// add nonce to txParams
const nonce = txMeta.nonceSpecified ? txMeta.txParams.nonce : nonceLock.nextNonce
if (nonce > nonceLock.nextNonce) {
const message = `Specified nonce may not be larger than account's next valid nonce.`
throw new Error(message)
}
txMeta.txParams.nonce = ethUtil.addHexPrefix(nonce.toString(16))
// add nonce debugging information to txMeta
txMeta.nonceDetails = nonceLock.nonceDetails
this.txStateManager.updateTx(txMeta, 'transactions#approveTransaction')
// sign transaction
const rawTx = await this.signTransaction(txId)
2017-06-21 19:51:00 -07:00
await this.publishTransaction(txId, rawTx)
// must set transaction to submitted/failed before releasing lock
nonceLock.releaseLock()
} catch (err) {
2017-08-18 12:23:35 -07:00
this.txStateManager.setTxStatusFailed(txId, err)
// must set transaction to submitted/failed before releasing lock
if (nonceLock) nonceLock.releaseLock()
// continue with error chain
2017-07-12 15:07:56 -07:00
throw err
}
2016-12-16 10:33:36 -08:00
}
async signTransaction (txId) {
2017-08-18 12:23:35 -07:00
const txMeta = this.txStateManager.getTx(txId)
2017-03-30 14:23:23 -07:00
const txParams = txMeta.txParams
const fromAddress = txParams.from
// add network/chain id
txParams.chainId = ethUtil.addHexPrefix(this.getChainId().toString(16))
2017-09-05 21:50:36 -07:00
const ethTx = new Transaction(txParams)
await this.signEthTx(ethTx, fromAddress)
2017-08-18 12:23:35 -07:00
this.txStateManager.setTxStatusSigned(txMeta.id)
const rawTx = ethUtil.bufferToHex(ethTx.serialize())
return rawTx
}
async publishTransaction (txId, rawTx) {
2017-08-18 12:23:35 -07:00
const txMeta = this.txStateManager.getTx(txId)
2017-05-23 11:49:25 -07:00
txMeta.rawTx = rawTx
this.txStateManager.updateTx(txMeta, 'transactions#publishTransaction')
2017-09-05 21:50:36 -07:00
const txHash = await this.query.sendRawTransaction(rawTx)
this.setTxHash(txId, txHash)
2017-08-18 12:23:35 -07:00
this.txStateManager.setTxStatusSubmitted(txId)
}
async cancelTransaction (txId) {
2017-08-18 12:23:35 -07:00
this.txStateManager.setTxStatusRejected(txId)
}
2017-01-18 11:33:37 -08:00
// receives a txHash records the tx as signed
setTxHash (txId, txHash) {
// Add the tx hash to the persisted meta-tx object
2017-08-18 12:23:35 -07:00
const txMeta = this.txStateManager.getTx(txId)
txMeta.hash = txHash
this.txStateManager.updateTx(txMeta, 'transactions#setTxHash')
2016-12-14 12:55:41 -08:00
}
2017-09-12 09:59:59 -07:00
//
// PRIVATE METHODS
//
_updateMemstore () {
2017-08-18 12:23:35 -07:00
const unapprovedTxs = this.txStateManager.getUnapprovedTxList()
const selectedAddressTxList = this.txStateManager.getFilteredTxList({
from: this.getSelectedAddress(),
metamaskNetworkId: this.getNetwork(),
})
this.memStore.updateState({ unapprovedTxs, selectedAddressTxList })
}
}