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
286 B
JavaScript
Raw Normal View History

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