mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
fba17d77de
* Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state * Fix linting and tests * Fix translations, initialization notice routing * Fix drizzle tests * Fix e2e tests * Fix integration tests * Fix styling * Fix migration naming from 030 to 031 * Open extension in browser when user has not completed onboarding
32 lines
817 B
JavaScript
32 lines
817 B
JavaScript
// next version number
|
|
const version = 31
|
|
const clone = require('clone')
|
|
|
|
/*
|
|
* The purpose of this migration is to properly set the completedOnboarding flag baesd on the state
|
|
* of the KeyringController.
|
|
*/
|
|
module.exports = {
|
|
version,
|
|
|
|
migrate: async function (originalVersionedData) {
|
|
const versionedData = clone(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
|
|
}
|