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.
37 lines
843 B
37 lines
843 B
const version = 13
|
|
|
|
/*
|
|
|
|
This migration modifies the network config from ambiguous 'testnet' to explicit 'ropsten'
|
|
|
|
*/
|
|
|
|
const clone = require('clone')
|
|
|
|
module.exports = {
|
|
version,
|
|
|
|
migrate: function (originalVersionedData) {
|
|
const versionedData = clone(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
|
|
}
|
|
|