nifty-wallet/ui/lib/tx-helper.js

21 lines
886 B
JavaScript
Raw Normal View History

const valuesFor = require('../app/util').valuesFor
2017-02-22 16:23:13 -08:00
module.exports = function (unapprovedTxs, unapprovedMsgs, personalMsgs, network) {
log.debug('tx-helper called with params:')
2017-02-22 16:23:13 -08:00
log.debug({ unapprovedTxs, unapprovedMsgs, personalMsgs, network })
const txValues = network ? valuesFor(unapprovedTxs).filter(txMeta => txMeta.metamaskNetworkId === network) : valuesFor(unapprovedTxs)
log.debug(`tx helper found ${txValues.length} unapproved txs`)
2017-02-22 16:23:13 -08:00
const msgValues = valuesFor(unapprovedMsgs)
log.debug(`tx helper found ${msgValues.length} unsigned messages`)
2017-02-22 16:23:13 -08:00
let allValues = txValues.concat(msgValues)
const personalValues = valuesFor(personalMsgs)
log.debug(`tx helper found ${personalValues.length} unsigned personal messages`)
2017-02-22 16:23:13 -08:00
allValues = allValues.concat(personalValues)
2017-07-24 17:27:27 -07:00
allValues = allValues.sort((a, b) => {
return a.time > b.time
})
2017-02-22 16:23:13 -08:00
2017-07-24 17:27:27 -07:00
return allValues
}