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.
|
|
|
// next version number
|
|
|
|
const version = 33
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Cleans up notices and assocated notice controller code
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
import clone from 'clone'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
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 newState = state
|
|
|
|
// transform state here
|
|
|
|
if (state.NoticeController) {
|
|
|
|
delete newState.NoticeController
|
|
|
|
}
|
|
|
|
return newState
|
|
|
|
}
|