From 9ba3774b5ee001efb0fe4b0a7dd198f86566cb8e Mon Sep 17 00:00:00 2001 From: Sirius Tsou Date: Wed, 8 Jan 2020 22:56:56 +0800 Subject: [PATCH] Fix Kovan and Rinkeby chain IDs (#7762) --- .../networks-tab/networks-tab.constants.js | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ui/app/pages/settings/networks-tab/networks-tab.constants.js b/ui/app/pages/settings/networks-tab/networks-tab.constants.js index 1a49ca04f..453a616b2 100644 --- a/ui/app/pages/settings/networks-tab/networks-tab.constants.js +++ b/ui/app/pages/settings/networks-tab/networks-tab.constants.js @@ -17,21 +17,12 @@ const defaultNetworksData = [ ticker: 'ETH', blockExplorerUrl: 'https://ropsten.etherscan.io', }, - { - labelKey: 'kovan', - iconColor: '#9064FF', - providerType: 'kovan', - rpcUrl: 'https://api.infura.io/v1/jsonrpc/kovan', - chainId: '4', - ticker: 'ETH', - blockExplorerUrl: 'https://etherscan.io', - }, { labelKey: 'rinkeby', iconColor: '#F6C343', providerType: 'rinkeby', rpcUrl: 'https://api.infura.io/v1/jsonrpc/rinkeby', - chainId: '42', + chainId: '4', ticker: 'ETH', blockExplorerUrl: 'https://rinkeby.etherscan.io', }, @@ -44,6 +35,15 @@ const defaultNetworksData = [ ticker: 'ETH', blockExplorerUrl: 'https://goerli.etherscan.io', }, + { + labelKey: 'kovan', + iconColor: '#9064FF', + providerType: 'kovan', + rpcUrl: 'https://api.infura.io/v1/jsonrpc/kovan', + chainId: '42', + ticker: 'ETH', + blockExplorerUrl: 'https://etherscan.io', + }, { labelKey: 'localhost', iconColor: 'white',