2020-01-09 04:34:58 +01:00
|
|
|
import { valuesFor } from '../app/helpers/utils/util'
|
|
|
|
import log from 'loglevel'
|
2016-05-03 23:32:22 +02:00
|
|
|
|
2020-02-19 19:24:16 +01:00
|
|
|
export default function txHelper (unapprovedTxs, unapprovedMsgs, personalMsgs, decryptMsgs, encryptionPublicKeyMsgs, typedMessages, network) {
|
2017-02-21 08:33:21 +01:00
|
|
|
log.debug('tx-helper called with params:')
|
2020-02-19 19:24:16 +01:00
|
|
|
log.debug({ unapprovedTxs, unapprovedMsgs, personalMsgs, decryptMsgs, encryptionPublicKeyMsgs, typedMessages, network })
|
2017-02-21 08:33:21 +01:00
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const txValues = network ? valuesFor(unapprovedTxs).filter((txMeta) => txMeta.metamaskNetworkId === network) : valuesFor(unapprovedTxs)
|
2017-02-21 08:33:21 +01:00
|
|
|
log.debug(`tx helper found ${txValues.length} unapproved txs`)
|
2017-09-29 18:24:08 +02:00
|
|
|
|
2017-02-23 01:23:13 +01:00
|
|
|
const msgValues = valuesFor(unapprovedMsgs)
|
2017-02-21 08:33:21 +01:00
|
|
|
log.debug(`tx helper found ${msgValues.length} unsigned messages`)
|
2017-02-23 01:23:13 +01:00
|
|
|
let allValues = txValues.concat(msgValues)
|
2017-09-29 18:24:08 +02:00
|
|
|
|
2017-02-23 01:23:13 +01:00
|
|
|
const personalValues = valuesFor(personalMsgs)
|
2017-02-23 23:23:45 +01:00
|
|
|
log.debug(`tx helper found ${personalValues.length} unsigned personal messages`)
|
2017-02-23 01:23:13 +01:00
|
|
|
allValues = allValues.concat(personalValues)
|
2017-09-29 18:24:08 +02:00
|
|
|
|
2020-02-19 19:24:16 +01:00
|
|
|
const decryptValues = valuesFor(decryptMsgs)
|
|
|
|
log.debug(`tx helper found ${decryptValues.length} decrypt requests`)
|
|
|
|
allValues = allValues.concat(decryptValues)
|
|
|
|
|
|
|
|
const encryptionPublicKeyValues = valuesFor(encryptionPublicKeyMsgs)
|
|
|
|
log.debug(`tx helper found ${encryptionPublicKeyValues.length} encryptionPublicKey requests`)
|
|
|
|
allValues = allValues.concat(encryptionPublicKeyValues)
|
|
|
|
|
2017-09-29 18:24:08 +02:00
|
|
|
const typedValues = valuesFor(typedMessages)
|
|
|
|
log.debug(`tx helper found ${typedValues.length} unsigned typed messages`)
|
|
|
|
allValues = allValues.concat(typedValues)
|
|
|
|
|
2017-07-25 02:27:27 +02:00
|
|
|
allValues = allValues.sort((a, b) => {
|
2018-12-09 21:48:06 +01:00
|
|
|
return a.time - b.time
|
2017-07-25 02:27:27 +02:00
|
|
|
})
|
2017-02-23 01:23:13 +01:00
|
|
|
|
2017-07-25 02:27:27 +02:00
|
|
|
return allValues
|
2017-10-21 21:06:39 +02:00
|
|
|
}
|