2018-04-06 03:05:03 +02:00
|
|
|
// next version number
|
|
|
|
/*
|
|
|
|
|
|
|
|
normalizes txParams on unconfirmed txs
|
|
|
|
|
|
|
|
*/
|
2021-02-04 19:15:23 +01:00
|
|
|
import { cloneDeep } from 'lodash';
|
|
|
|
import { addHexPrefix } from '../lib/util';
|
2023-01-18 15:47:29 +01:00
|
|
|
import { TransactionStatus } from '../../../shared/constants/transaction';
|
2020-01-09 04:34:58 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const version = 25;
|
2020-08-19 18:27:05 +02:00
|
|
|
|
2020-01-09 04:34:58 +01:00
|
|
|
export default {
|
2018-04-06 03:05:03 +02:00
|
|
|
version,
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
async migrate(originalVersionedData) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const versionedData = cloneDeep(originalVersionedData);
|
|
|
|
versionedData.meta.version = version;
|
|
|
|
const state = versionedData.data;
|
|
|
|
const newState = transformState(state);
|
|
|
|
versionedData.data = newState;
|
|
|
|
return versionedData;
|
2018-04-06 03:05:03 +02:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-04-06 03:05:03 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function transformState(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const newState = state;
|
2018-04-06 03:05:03 +02:00
|
|
|
|
|
|
|
if (newState.TransactionController) {
|
|
|
|
if (newState.TransactionController.transactions) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { transactions } = newState.TransactionController;
|
2020-11-03 00:41:28 +01:00
|
|
|
newState.TransactionController.transactions = transactions.map(
|
|
|
|
(txMeta) => {
|
2023-01-18 15:47:29 +01:00
|
|
|
if (txMeta.status !== TransactionStatus.unapproved) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return txMeta;
|
2020-11-03 00:41:28 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
txMeta.txParams = normalizeTxParams(txMeta.txParams);
|
|
|
|
return txMeta;
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-04-06 03:05:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return newState;
|
2018-04-06 03:05:03 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function normalizeTxParams(txParams) {
|
2018-04-06 03:05:03 +02:00
|
|
|
// functions that handle normalizing of that key in txParams
|
|
|
|
const whiteList = {
|
2020-11-06 22:18:00 +01:00
|
|
|
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),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-04-06 03:05:03 +02:00
|
|
|
|
|
|
|
// apply only keys in the whiteList
|
2021-02-04 19:15:23 +01:00
|
|
|
const normalizedTxParams = {};
|
2018-04-06 03:05:03 +02:00
|
|
|
Object.keys(whiteList).forEach((key) => {
|
2019-11-20 01:03:20 +01:00
|
|
|
if (txParams[key]) {
|
2021-02-04 19:15:23 +01:00
|
|
|
normalizedTxParams[key] = whiteList[key](txParams[key]);
|
2019-11-20 01:03:20 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-04-06 03:05:03 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return normalizedTxParams;
|
2018-04-06 03:05:03 +02:00
|
|
|
}
|