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/045.js

29 lines
692 B

const version = 45
import { cloneDeep } from 'lodash'
/**
* Replaces {@code PreferencesController.ipfsGateway} with 'dweb.link' if set
*/
export default {
version,
migrate: async function (originalVersionedData) {
const versionedData = cloneDeep(originalVersionedData)
versionedData.meta.version = version
const state = versionedData.data
versionedData.data = transformState(state)
return versionedData
},
}
const outdatedGateways = [
'ipfs.io',
'ipfs.dweb.link',
]
function transformState (state) {
if (outdatedGateways.includes(state?.PreferencesController?.ipfsGateway)) {
state.PreferencesController.ipfsGateway = 'dweb.link'
}
return state
}