diff options
Diffstat (limited to 'ui/app/config.js')
-rw-r--r-- | ui/app/config.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ui/app/config.js b/ui/app/config.js index 3f0507f48..d7be26757 100644 --- a/ui/app/config.js +++ b/ui/app/config.js @@ -156,11 +156,21 @@ function currentProviderDisplay (metamaskState) { value = 'Main Ethereum Network' break - case 'testnet': + case 'ropsten': title = 'Current Network' value = 'Ropsten Test Network' break + case 'kovan': + title = 'Current Network' + value = 'Kovan Test Network' + break + + case 'rinkeby': + title = 'Current Network' + value = 'Rinkeby Test Network' + break + default: title = 'Current RPC' value = metamaskState.provider.rpcTarget |