mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
module.exports = {
|
|
version: 2,
|
|
|
|
migrate: function(data) {
|
|
try {
|
|
if (data.config.provider.type === 'etherscan') {
|
|
data.config.provider.type = 'rpc'
|
|
data.config.provider.rpcTarget = 'https://rpc.metamask.io/'
|
|
}
|
|
} catch (e) {}
|
|
return data
|
|
}
|
|
}
|