mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
b6ccd22d6c
Co-authored-by: Mark Stacey <markjstacey@gmail.com>
38 lines
839 B
JavaScript
38 lines
839 B
JavaScript
/*
|
|
|
|
This migration modifies the network config from ambiguous 'testnet' to explicit 'ropsten'
|
|
|
|
*/
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
const version = 13
|
|
|
|
export default {
|
|
version,
|
|
|
|
migrate (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
|
|
}
|