1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00
metamask-extension/app/scripts/migrations/002.js

14 lines
288 B
JavaScript
Raw Normal View History

2016-04-12 23:16:39 +02:00
module.exports = {
version: 2,
2016-06-21 22:18:32 +02:00
migrate: function (data) {
2016-04-12 23:16:39 +02:00
try {
if (data.config.provider.type === 'etherscan') {
data.config.provider.type = 'rpc'
data.config.provider.rpcTarget = 'https://rpc.metamask.io/'
}
} catch (e) {}
return data
2016-06-21 22:18:32 +02:00
},
2016-04-12 23:16:39 +02:00
}