mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
398a45bfdd
This was done to reduce the number of direct dependencies we have. It should be functionally equivalent. The bundle size should not change, as we use `clone` as a transitive dependency in a number of places.
38 lines
849 B
JavaScript
38 lines
849 B
JavaScript
const version = 13
|
|
|
|
/*
|
|
|
|
This migration modifies the network config from ambiguous 'testnet' to explicit 'ropsten'
|
|
|
|
*/
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
export default {
|
|
version,
|
|
|
|
migrate: function (originalVersionedData) {
|
|
const versionedData = cloneDeep(originalVersionedData)
|
|
versionedData.meta.version = version
|
|
try {
|
|
const state = versionedData.data
|
|
const newState = transformState(state)
|
|
versionedData.data = newState
|
|
} catch (err) {
|
|
console.warn(`MetaMask Migration #${version}` + err.stack)
|
|
}
|
|
return Promise.resolve(versionedData)
|
|
},
|
|
}
|
|
|
|
function transformState (state) {
|
|
const newState = state
|
|
const { config } = newState
|
|
if (config && config.provider) {
|
|
if (config.provider.type === 'testnet') {
|
|
newState.config.provider.type = 'ropsten'
|
|
}
|
|
}
|
|
return newState
|
|
}
|