diff options
Begin adding Ropsten support
Ropsten links will still not work until Etherscan publishes their ropsten link format.
At that time we will need to update ui/lib/account-link.js
Otherwise, fixes #831
Diffstat (limited to 'ui/app/components/network.js')
-rw-r--r-- | ui/app/components/network.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ui/app/components/network.js b/ui/app/components/network.js index 845861396..b7d3cdbf5 100644 --- a/ui/app/components/network.js +++ b/ui/app/components/network.js @@ -36,6 +36,12 @@ Network.prototype.render = function () { } else if (providerName === 'mainnet') { hoverText = 'Main Ethereum Network' iconName = 'ethereum-network' + } else if (providerName === 'testnet') { + hoverText = 'Ropsten Test Network' + iconName = 'ropsten-test-network' + } else if (parseInt(networkNumber) === 3) { + hoverText = 'Ropsten Test Network' + iconName = 'ropsten-test-network' } else if (parseInt(networkNumber) === 2) { hoverText = 'Morden Test Network' iconName = 'morden-test-network' @@ -43,6 +49,7 @@ Network.prototype.render = function () { hoverText = 'Unknown Private Network' iconName = 'unknown-private-network' } + return ( h('#network_component.flex-center.pointer', { style: { @@ -63,6 +70,15 @@ Network.prototype.render = function () { }}, 'Ethereum Main Net'), ]) + case 'ropsten-test-network': + return h('.network-indicator', [ + h('.menu-icon.red-dot'), + h('.network-name', { + style: { + color: '#ff6666', + }}, + 'Ropsten Test Net'), + ]) case 'morden-test-network': return h('.network-indicator', [ h('.menu-icon.red-dot'), |