aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/account-link.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2017-09-02 02:57:57 +0800
committerGitHub <noreply@github.com>2017-09-02 02:57:57 +0800
commitb47d3735fe13ae512a30c6dc72b5ece41f35e453 (patch)
treedfcf375fd5c22086c01323202e57c6f037bf6a2c /ui/lib/account-link.js
parent48021f4f940b04133821ae98b190271b37bfb659 (diff)
parent01f961976a90fc353bba6afbc8d3b733db9d91e6 (diff)
downloadtangerine-wallet-browser-b47d3735fe13ae512a30c6dc72b5ece41f35e453.tar.gz
tangerine-wallet-browser-b47d3735fe13ae512a30c6dc72b5ece41f35e453.tar.zst
tangerine-wallet-browser-b47d3735fe13ae512a30c6dc72b5ece41f35e453.zip
Merge pull request #2007 from MetaMask/i2005-HttpsLinjs
Use HTTPS links when available
Diffstat (limited to 'ui/lib/account-link.js')
-rw-r--r--ui/lib/account-link.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js
index d061d0ad1..037d990fa 100644
--- a/ui/lib/account-link.js
+++ b/ui/lib/account-link.js
@@ -3,19 +3,19 @@ module.exports = function (address, network) {
let link
switch (net) {
case 1: // main net
- link = `http://etherscan.io/address/${address}`
+ link = `https://etherscan.io/address/${address}`
break
case 2: // morden test net
- link = `http://morden.etherscan.io/address/${address}`
+ link = `https://morden.etherscan.io/address/${address}`
break
case 3: // ropsten test net
- link = `http://ropsten.etherscan.io/address/${address}`
+ link = `https://ropsten.etherscan.io/address/${address}`
break
case 4: // rinkeby test net
- link = `http://rinkeby.etherscan.io/address/${address}`
+ link = `https://rinkeby.etherscan.io/address/${address}`
break
case 42: // kovan test net
- link = `http://kovan.etherscan.io/address/${address}`
+ link = `https://kovan.etherscan.io/address/${address}`
break
default:
link = ''