diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-04-23 04:32:56 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-04-23 04:32:56 +0800 |
commit | 875a0731ddab06f9db2bd5bc67471f897ef99c3d (patch) | |
tree | 72d912242a2bdb1dd8c8a7550dff0bce120d1c1a /app/scripts/migrations/003.js | |
parent | db85827b2be19d7bfc7dfaeec4786c4d051b6629 (diff) | |
download | dexon-wallet-875a0731ddab06f9db2bd5bc67471f897ef99c3d.tar.gz dexon-wallet-875a0731ddab06f9db2bd5bc67471f897ef99c3d.tar.zst dexon-wallet-875a0731ddab06f9db2bd5bc67471f897ef99c3d.zip |
Deprecate rawtestrpc.metamask.io
This migration will move users who have their clients configured to point at `rawtestrpc.metamask.io` to point at our new test-net RPC, `testrpc.metamask.io`.
Diffstat (limited to 'app/scripts/migrations/003.js')
-rw-r--r-- | app/scripts/migrations/003.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/scripts/migrations/003.js b/app/scripts/migrations/003.js new file mode 100644 index 00000000..ab6a256a --- /dev/null +++ b/app/scripts/migrations/003.js @@ -0,0 +1,13 @@ +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 + } +} |