You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.8 KiB
68 lines
1.8 KiB
// 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;
|
|
}
|
|
|