mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
2a9fbffb6c
* Replace hardcoded sent ether label on confirm screen * replace transaction type SENT_ETHER with network agnostic SENDING_NATIVE_ASSET * remove sentEther translation base * make backwards compatible with lingering transaction of legacy sentEther type * update localalization files * fixup legacy sentEther transaction type * changing new transaction type away from localization string * revert migration tests * update fixtures and test data * update name of new transaction type * add migration * remove legacy SENT_ETHER from transaction types enum object
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
import { cloneDeep, isPlainObject } from 'lodash';
|
|
import { TRANSACTION_TYPES } from '../../../shared/constants/transaction';
|
|
|
|
const version = 64;
|
|
|
|
const SENT_ETHER = 'sentEther'; // the legacy transaction type being replaced in this migration with TRANSACTION_TYPES.SIMPLE_SEND
|
|
|
|
/**
|
|
* Removes metaMetricsSendCount from MetaMetrics controller
|
|
*/
|
|
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 transactions = state?.TransactionController?.transactions;
|
|
if (isPlainObject(transactions)) {
|
|
for (const tx of Object.values(transactions)) {
|
|
if (tx.type === SENT_ETHER) {
|
|
tx.type = TRANSACTION_TYPES.SIMPLE_SEND;
|
|
}
|
|
if (tx.history) {
|
|
tx.history.map((txEvent) => {
|
|
if (txEvent.type && txEvent.type === SENT_ETHER) {
|
|
txEvent.type = TRANSACTION_TYPES.SIMPLE_SEND;
|
|
}
|
|
return txEvent;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
return state;
|
|
}
|