aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2017-03-23 04:02:17 +0800
committerKevin Serrano <kevgagser@gmail.com>2017-03-23 04:02:17 +0800
commitc00544de91caec4d76f34aeaf91f025292ae0384 (patch)
treeed8847bccdfb9b763eab8aee2794a3aba68f240d /ui/lib
parent4116b37d32e467bbd4cbb113851667115d28cf64 (diff)
downloadtangerine-wallet-browser-c00544de91caec4d76f34aeaf91f025292ae0384.tar
tangerine-wallet-browser-c00544de91caec4d76f34aeaf91f025292ae0384.tar.gz
tangerine-wallet-browser-c00544de91caec4d76f34aeaf91f025292ae0384.tar.bz2
tangerine-wallet-browser-c00544de91caec4d76f34aeaf91f025292ae0384.tar.lz
tangerine-wallet-browser-c00544de91caec4d76f34aeaf91f025292ae0384.tar.xz
tangerine-wallet-browser-c00544de91caec4d76f34aeaf91f025292ae0384.tar.zst
tangerine-wallet-browser-c00544de91caec4d76f34aeaf91f025292ae0384.zip
Add conditional kovan logic to etherscan link generators.
Diffstat (limited to 'ui/lib')
-rw-r--r--ui/lib/account-link.js4
-rw-r--r--ui/lib/explorer-link.js5
2 files changed, 7 insertions, 2 deletions
diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js
index 77db0851d..948f32da1 100644
--- a/ui/lib/account-link.js
+++ b/ui/lib/account-link.js
@@ -1,7 +1,6 @@
module.exports = function (address, network) {
const net = parseInt(network)
let link
-
switch (net) {
case 1: // main net
link = `http://etherscan.io/address/${address}`
@@ -12,6 +11,9 @@ module.exports = function (address, network) {
case 3: // ropsten test net
link = `http://testnet.etherscan.io/address/${address}`
break
+ case 42: // kovan test net
+ link = `http://kovan.etherscan.io/address/${address}`
+ break
default:
link = ''
break
diff --git a/ui/lib/explorer-link.js b/ui/lib/explorer-link.js
index dc6be2984..7ae19cca0 100644
--- a/ui/lib/explorer-link.js
+++ b/ui/lib/explorer-link.js
@@ -5,9 +5,12 @@ module.exports = function (hash, network) {
case 1: // main net
prefix = ''
break
- case 3: // morden test net
+ case 3: // ropsten test net
prefix = 'testnet.'
break
+ case 42: // kovan test net
+ prefix = 'kovan.'
+ break
default:
prefix = ''
}