1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/app/scripts/migrations/025.js
Brad Decker a49a4a066c
expand transaction constants coverage (#9790)
* expand transaction constants coverage

* touchups

* dont import inside of e2e

* Update app/scripts/controllers/transactions/tx-state-manager.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

* Update test/unit/app/controllers/transactions/tx-controller-test.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

Co-authored-by: Mark Stacey <markjstacey@gmail.com>
2020-11-07 01:38:12 -06:00

69 lines
1.8 KiB
JavaScript

// next version number
/*
normalizes txParams on unconfirmed txs
*/
import { cloneDeep } from 'lodash'
import { addHexPrefix } from '../lib/util'
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
const version = 25
export default {
version,
async migrate(originalVersionedData) {
const versionedData = cloneDeep(originalVersionedData)
versionedData.meta.version = version
const state = versionedData.data
const newState = transformState(state)
versionedData.data = newState
return versionedData
},
}
function transformState(state) {
const newState = state
if (newState.TransactionController) {
if (newState.TransactionController.transactions) {
const { transactions } = newState.TransactionController
newState.TransactionController.transactions = transactions.map(
(txMeta) => {
if (txMeta.status !== TRANSACTION_STATUSES.UNAPPROVED) {
return txMeta
}
txMeta.txParams = normalizeTxParams(txMeta.txParams)
return txMeta
},
)
}
}
return newState
}
function normalizeTxParams(txParams) {
// functions that handle normalizing of that key in txParams
const whiteList = {
from: (from) => addHexPrefix(from).toLowerCase(),
to: () => addHexPrefix(txParams.to).toLowerCase(),
nonce: (nonce) => addHexPrefix(nonce),
value: (value) => addHexPrefix(value),
data: (data) => addHexPrefix(data),
gas: (gas) => addHexPrefix(gas),
gasPrice: (gasPrice) => addHexPrefix(gasPrice),
}
// apply only keys in the whiteList
const normalizedTxParams = {}
Object.keys(whiteList).forEach((key) => {
if (txParams[key]) {
normalizedTxParams[key] = whiteList[key](txParams[key])
}
})
return normalizedTxParams
}