mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
b82d357a0d
* remove decentralized 4byte function signature registry since it is griefed and we can't algorithmically check for best option when 4byte is down * add migration * remove nock of on chain registry call in getMethodDataAsync test
31 lines
688 B
JavaScript
31 lines
688 B
JavaScript
import { cloneDeep } from 'lodash';
|
|
|
|
const version = 73;
|
|
|
|
/**
|
|
* Should empty the `knownMethodData` object in PreferencesController
|
|
*/
|
|
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 PreferencesController = state?.PreferencesController || {};
|
|
|
|
return {
|
|
...state,
|
|
PreferencesController: {
|
|
...PreferencesController,
|
|
knownMethodData: {},
|
|
},
|
|
};
|
|
}
|