mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
890bc25e28
License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com> Co-authored-by: Whymarrh Whitby <whymarrh.whitby@gmail.com>
29 lines
692 B
JavaScript
29 lines
692 B
JavaScript
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
|
|
}
|