1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/app/scripts/controllers/transactions.js

460 lines
14 KiB
JavaScript
Raw Normal View History

2016-12-14 21:55:41 +01:00
const EventEmitter = require('events')
const extend = require('xtend')
const ObservableStore = require('obs-store')
2016-12-16 19:33:36 +01:00
const ethUtil = require('ethereumjs-util')
2017-08-02 17:47:13 +02:00
const EthQuery = require('ethjs-query')
2017-08-09 00:30:49 +02:00
const TxProviderUtil = require('../lib/tx-utils')
const PendingTransactionTracker = require('../lib/pending-tx-tracker')
2017-05-16 20:39:00 +02:00
const createId = require('../lib/random-id')
const NonceTracker = require('../lib/nonce-tracker')
const txStateHistoryHelper = require('../lib/tx-state-history-helper')
2016-12-14 21:55:41 +01:00
2017-05-23 23:49:10 +02:00
module.exports = class TransactionController extends EventEmitter {
2016-12-14 21:55:41 +01:00
constructor (opts) {
super()
this.store = new ObservableStore(extend({
2017-02-03 05:59:47 +01:00
transactions: [],
}, opts.initState))
this.memStore = new ObservableStore({})
2017-02-03 05:59:47 +01:00
this.networkStore = opts.networkStore || new ObservableStore({})
2017-02-03 06:09:17 +01:00
this.preferencesStore = opts.preferencesStore || new ObservableStore({})
2016-12-16 19:33:36 +01:00
this.txHistoryLimit = opts.txHistoryLimit
2017-05-23 07:56:10 +02:00
this.provider = opts.provider
this.blockTracker = opts.blockTracker
2017-08-04 20:41:35 +02:00
this.signEthTx = opts.signTransaction
this.ethStore = opts.ethStore
this.nonceTracker = new NonceTracker({
provider: this.provider,
getPendingTransactions: (address) => {
return this.getFilteredTxList({
from: address,
status: 'submitted',
err: undefined,
})
},
getConfirmedTransactions: (address) => {
return this.getFilteredTxList({
from: address,
status: 'confirmed',
err: undefined,
})
},
giveUpOnTransaction: (txId) => {
const msg = `Gave up submitting after 3500 blocks un-mined.`
this.setTxStatusFailed(txId, msg)
},
})
this.query = new EthQuery(this.provider)
2017-08-09 00:30:49 +02:00
this.txProviderUtil = new TxProviderUtil(this.provider)
2017-08-04 20:41:35 +02:00
2017-08-09 00:30:49 +02:00
this.pendingTxTracker = new PendingTransactionTracker({
2017-08-04 20:41:35 +02:00
provider: this.provider,
nonceTracker: this.nonceTracker,
2017-08-09 06:08:30 +02:00
getBalance: (address) => {
2017-08-09 00:30:49 +02:00
const account = this.ethStore.getState().accounts[address]
if (!account) return
return account.balance
},
publishTransaction: this.txProviderUtil.publishTransaction.bind(this.txProviderUtil),
getPendingTransactions: () => {
2017-08-09 03:54:26 +02:00
const network = this.getNetwork()
2017-08-04 20:41:35 +02:00
return this.getFilteredTxList({
status: 'submitted',
2017-08-09 03:54:26 +02:00
metamaskNetworkId: network,
2017-08-04 20:41:35 +02:00
})
},
})
2017-08-09 00:30:49 +02:00
this.pendingTxTracker.on('txWarning', this.updateTx.bind(this))
this.pendingTxTracker.on('txFailed', this.setTxStatusFailed.bind(this))
this.pendingTxTracker.on('txConfirmed', this.setTxStatusConfirmed.bind(this))
2017-08-04 20:41:35 +02:00
2017-08-09 00:30:49 +02:00
this.blockTracker.on('rawBlock', 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
// where ethStore hasent been populated by the results yet
2017-08-09 00:30:49 +02:00
this.blockTracker.once('latest', () => {
this.blockTracker.on('latest', this.pendingTxTracker.resubmitPendingTxs.bind(this.pendingTxTracker))
})
this.blockTracker.on('sync', this.pendingTxTracker.queryPendingTxs.bind(this.pendingTxTracker))
2017-02-03 06:09:17 +01:00
// memstore is computed from a few different stores
this._updateMemstore()
2017-04-27 06:05:45 +02:00
this.store.subscribe(() => this._updateMemstore())
this.networkStore.subscribe(() => this._updateMemstore())
this.preferencesStore.subscribe(() => this._updateMemstore())
2016-12-16 19:33:36 +01:00
}
getState () {
return this.memStore.getState()
2016-12-14 21:55:41 +01:00
}
2017-02-03 05:59:47 +01:00
getNetwork () {
2017-05-23 08:12:28 +02:00
return this.networkStore.getState()
2017-02-03 05:59:47 +01:00
}
2017-02-03 06:09:17 +01:00
getSelectedAddress () {
return this.preferencesStore.getState().selectedAddress
}
// Returns the number of txs for the current network.
getTxCount () {
return this.getTxList().length
}
// Returns the full tx list across all networks
getFullTxList () {
return this.store.getState().transactions
}
getUnapprovedTxCount () {
return Object.keys(this.getUnapprovedTxList()).length
}
getPendingTxCount () {
return this.getTxsByMetaData('status', 'signed').length
}
// Returns the tx list
getTxList () {
const network = this.getNetwork()
const fullTxList = this.getFullTxList()
return this.getTxsByMetaData('metamaskNetworkId', network, fullTxList)
}
// gets tx by Id and returns it
getTx (txId) {
const txList = this.getTxList()
const txMeta = txList.find(txData => txData.id === txId)
return txMeta
}
getUnapprovedTxList () {
const txList = this.getTxList()
return txList.filter((txMeta) => txMeta.status === 'unapproved')
.reduce((result, tx) => {
result[tx.id] = tx
return result
}, {})
}
updateTx (txMeta) {
// create txMeta snapshot for history
const currentState = txStateHistoryHelper.snapshotFromTxMeta(txMeta)
// recover previous tx state obj
const previousState = txStateHistoryHelper.replayHistory(txMeta.history)
// generate history entry and add to history
const entry = txStateHistoryHelper.generateHistoryEntry(previousState, currentState)
txMeta.history.push(entry)
// commit txMeta to state
const txId = txMeta.id
const txList = this.getFullTxList()
const index = txList.findIndex(txData => txData.id === txId)
txList[index] = txMeta
this._saveTxList(txList)
this.emit('update')
}
2016-12-14 21:55:41 +01:00
// Adds a tx to the txlist
addTx (txMeta) {
// initialize history
txMeta.history = []
// capture initial snapshot of txMeta for history
const snapshot = txStateHistoryHelper.snapshotFromTxMeta(txMeta)
txMeta.history.push(snapshot)
// checks if the length of the 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
const txCount = this.getTxCount()
const network = this.getNetwork()
const fullTxList = this.getFullTxList()
const txHistoryLimit = this.txHistoryLimit
if (txCount > txHistoryLimit - 1) {
const index = fullTxList.findIndex((metaTx) => ((metaTx.status === 'confirmed' || metaTx.status === 'rejected') && network === txMeta.metamaskNetworkId))
fullTxList.splice(index, 1)
2016-12-14 21:55:41 +01:00
}
fullTxList.push(txMeta)
this._saveTxList(fullTxList)
this.emit('update')
2016-12-16 19:33:36 +01:00
this.once(`${txMeta.id}:signed`, function (txId) {
this.removeAllListeners(`${txMeta.id}:rejected`)
})
this.once(`${txMeta.id}:rejected`, function (txId) {
this.removeAllListeners(`${txMeta.id}:signed`)
})
this.emit('updateBadge')
2016-12-16 19:33:36 +01:00
this.emit(`${txMeta.id}:unapproved`, txMeta)
2016-12-14 21:55:41 +01:00
}
async newUnapprovedTransaction (txParams) {
log.debug(`MetaMaskController newUnapprovedTransaction ${JSON.stringify(txParams)}`)
const txMeta = await this.addUnapprovedTransaction(txParams)
this.emit('newUnaprovedTx', txMeta)
// listen for tx completion (success, fail)
return new Promise((resolve, reject) => {
this.once(`${txMeta.id}:finished`, (completedTx) => {
switch (completedTx.status) {
case 'submitted':
return resolve(completedTx.hash)
case 'rejected':
return reject(new Error('MetaMask Tx Signature: User denied transaction signature.'))
default:
return reject(new Error(`MetaMask Tx Signature: Unknown problem: ${JSON.stringify(completedTx.txParams)}`))
}
})
})
}
async addUnapprovedTransaction (txParams) {
// validate
2017-08-09 00:30:49 +02:00
await this.txProviderUtil.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 17:47:13 +02:00
await this.addTxDefaults(txMeta)
// save txMeta
this.addTx(txMeta)
return txMeta
2016-12-16 19:33:36 +01:00
}
async addTxDefaults (txMeta) {
const txParams = txMeta.txParams
// ensure value
txParams.value = txParams.value || '0x0'
2017-06-20 02:50:06 +02:00
if (!txParams.gasPrice) {
2017-08-02 17:35:35 +02:00
const gasPrice = await this.query.gasPrice()
txParams.gasPrice = gasPrice
2017-06-20 02:50:06 +02:00
}
// set gasLimit
2017-08-09 00:30:49 +02:00
return await this.txProviderUtil.analyzeGasUsage(txMeta)
}
async updateAndApproveTransaction (txMeta) {
this.updateTx(txMeta)
await this.approveTransaction(txMeta.id)
2016-12-14 21:55:41 +01:00
}
2017-07-13 00:07:56 +02:00
async approveTransaction (txId) {
let nonceLock
try {
// approve
this.setTxStatusApproved(txId)
// get next nonce
const txMeta = this.getTx(txId)
const fromAddress = txMeta.txParams.from
// wait for a nonce
nonceLock = await this.nonceTracker.getNonceLock(fromAddress)
// add nonce to txParams
txMeta.txParams.nonce = nonceLock.nextNonce
// add nonce debugging information to txMeta
txMeta.nonceDetails = nonceLock.nonceDetails
this.updateTx(txMeta)
// sign transaction
const rawTx = await this.signTransaction(txId)
2017-06-22 04:51:00 +02:00
await this.publishTransaction(txId, rawTx)
// must set transaction to submitted/failed before releasing lock
nonceLock.releaseLock()
} catch (err) {
this.setTxStatusFailed(txId, err)
// must set transaction to submitted/failed before releasing lock
if (nonceLock) nonceLock.releaseLock()
// continue with error chain
2017-07-13 00:07:56 +02:00
throw err
}
2016-12-16 19:33:36 +01:00
}
async signTransaction (txId) {
2017-03-30 23:23:23 +02:00
const txMeta = this.getTx(txId)
const txParams = txMeta.txParams
const fromAddress = txParams.from
// add network/chain id
txParams.chainId = this.getChainId()
2017-08-09 00:30:49 +02:00
const ethTx = this.txProviderUtil.buildEthTxFromParams(txParams)
await this.signEthTx(ethTx, fromAddress)
this.setTxStatusSigned(txMeta.id)
const rawTx = ethUtil.bufferToHex(ethTx.serialize())
return rawTx
}
async publishTransaction (txId, rawTx) {
2017-05-23 20:49:25 +02:00
const txMeta = this.getTx(txId)
txMeta.rawTx = rawTx
this.updateTx(txMeta)
2017-08-09 00:30:49 +02:00
const txHash = await this.txProviderUtil.publishTransaction(rawTx)
this.setTxHash(txId, txHash)
this.setTxStatusSubmitted(txId)
}
async cancelTransaction (txId) {
this.setTxStatusRejected(txId)
}
getChainId () {
const networkState = this.networkStore.getState()
const getChainId = parseInt(networkState)
if (Number.isNaN(getChainId)) {
return 0
} else {
return getChainId
}
}
2017-01-18 20:33:37 +01:00
// receives a txHash records the tx as signed
setTxHash (txId, txHash) {
// Add the tx hash to the persisted meta-tx object
2017-04-27 06:05:45 +02:00
const txMeta = this.getTx(txId)
txMeta.hash = txHash
this.updateTx(txMeta)
2016-12-16 19:33:36 +01:00
}
2016-12-15 00:04:33 +01:00
/*
Takes an object of fields to search for eg:
let thingsToLookFor = {
2016-12-15 00:04:33 +01:00
to: '0x0..',
from: '0x0..',
status: 'signed',
err: undefined,
2016-12-15 00:04:33 +01:00
}
and returns a list of tx with all
options matching
****************HINT****************
| `err: undefined` is like looking |
| for a tx with no err |
| so you can also search txs that |
| dont have something as well by |
| setting the value as undefined |
************************************
2016-12-15 00:04:33 +01:00
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 19:33:36 +01:00
getFilteredTxList (opts) {
let filteredTxList
2016-12-14 21:55:41 +01:00
Object.keys(opts).forEach((key) => {
filteredTxList = this.getTxsByMetaData(key, opts[key], filteredTxList)
})
return filteredTxList
}
getTxsByMetaData (key, value, txList = this.getTxList()) {
2016-12-16 19:33:36 +01:00
return txList.filter((txMeta) => {
if (txMeta.txParams[key]) {
2016-12-16 19:33:36 +01:00
return txMeta.txParams[key] === value
2016-12-14 21:55:41 +01:00
} else {
2016-12-16 19:33:36 +01:00
return txMeta[key] === value
2016-12-14 21:55:41 +01:00
}
})
}
// STATUS METHODS
// get::set status
// should return the status of the tx.
getTxStatus (txId) {
2016-12-16 19:33:36 +01:00
const txMeta = this.getTx(txId)
return txMeta.status
2016-12-14 21:55:41 +01:00
}
// should update the status of the tx to 'rejected'.
setTxStatusRejected (txId) {
this._setTxStatus(txId, 'rejected')
}
// should update the status of the tx to 'approved'.
setTxStatusApproved (txId) {
this._setTxStatus(txId, 'approved')
}
2016-12-14 21:55:41 +01:00
// should update the status of the tx to 'signed'.
2016-12-14 21:55:41 +01:00
setTxStatusSigned (txId) {
2016-12-16 19:33:36 +01:00
this._setTxStatus(txId, 'signed')
2016-12-14 21:55:41 +01:00
}
// should update the status of the tx to 'submitted'.
setTxStatusSubmitted (txId) {
this._setTxStatus(txId, 'submitted')
2016-12-14 21:55:41 +01:00
}
// should update the status of the tx to 'confirmed'.
2016-12-14 21:55:41 +01:00
setTxStatusConfirmed (txId) {
2016-12-16 19:33:36 +01:00
this._setTxStatus(txId, 'confirmed')
2016-12-14 21:55:41 +01:00
}
setTxStatusFailed (txId, err) {
2017-04-27 06:05:45 +02:00
const txMeta = this.getTx(txId)
txMeta.err = {
message: err.toString(),
stack: err.stack,
}
2017-03-22 17:48:41 +01:00
this.updateTx(txMeta)
this._setTxStatus(txId, 'failed')
}
2016-12-14 21:55:41 +01:00
// merges txParams obj onto txData.txParams
// use extend to ensure that all fields are filled
updateTxParams (txId, txParams) {
const txMeta = this.getTx(txId)
txMeta.txParams = extend(txMeta.txParams, txParams)
2016-12-16 19:33:36 +01:00
this.updateTx(txMeta)
2016-12-14 21:55:41 +01:00
}
/* _____________________________________
| |
| PRIVATE METHODS |
|______________________________________*/
2016-12-16 19:33:36 +01: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!
// - `'approved'` the user has approved the tx
2016-12-16 19:33:36 +01:00
// - `'signed'` the tx is signed
// - `'submitted'` the tx is sent to a server
// - `'confirmed'` the tx has been included in a block.
2017-04-24 22:55:33 +02:00
// - `'failed'` the tx failed for some reason, included on tx data.
_setTxStatus (txId, status) {
const txMeta = this.getTx(txId)
2016-12-16 19:33:36 +01:00
txMeta.status = status
this.emit(`${txMeta.id}:${status}`, txId)
this.emit(`${status}`, txId)
if (status === 'submitted' || status === 'rejected') {
this.emit(`${txMeta.id}:finished`, txMeta)
}
2016-12-16 19:33:36 +01:00
this.updateTx(txMeta)
this.emit('updateBadge')
2016-12-16 19:33:36 +01:00
}
// Saves the new/updated txList.
// Function is intended only for internal use
2017-02-03 05:59:47 +01:00
_saveTxList (transactions) {
this.store.updateState({ transactions })
}
_updateMemstore () {
const unapprovedTxs = this.getUnapprovedTxList()
const selectedAddressTxList = this.getFilteredTxList({
from: this.getSelectedAddress(),
metamaskNetworkId: this.getNetwork(),
})
this.memStore.updateState({ unapprovedTxs, selectedAddressTxList })
}
}