A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/app/scripts/migrations/031.js

32 lines
817 B

// next version number
import { cloneDeep } from 'lodash';
const version = 31;
/*
* The purpose of this migration is to properly set the completedOnboarding flag based on the state
* of the KeyringController.
*/
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 { KeyringController, PreferencesController } = state;
if (KeyringController && PreferencesController) {
const { vault } = KeyringController;
PreferencesController.completedOnboarding = Boolean(vault);
}
return state;
}