mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
parent
ddd559718f
commit
8498daee88
@ -3,19 +3,19 @@ module.exports = function (address, network) {
|
|||||||
let link
|
let link
|
||||||
switch (net) {
|
switch (net) {
|
||||||
case 1: // main net
|
case 1: // main net
|
||||||
link = `http://etherscan.io/address/${address}`
|
link = `https://etherscan.io/address/${address}`
|
||||||
break
|
break
|
||||||
case 2: // morden test net
|
case 2: // morden test net
|
||||||
link = `http://morden.etherscan.io/address/${address}`
|
link = `https://morden.etherscan.io/address/${address}`
|
||||||
break
|
break
|
||||||
case 3: // ropsten test net
|
case 3: // ropsten test net
|
||||||
link = `http://ropsten.etherscan.io/address/${address}`
|
link = `https://ropsten.etherscan.io/address/${address}`
|
||||||
break
|
break
|
||||||
case 4: // rinkeby test net
|
case 4: // rinkeby test net
|
||||||
link = `http://rinkeby.etherscan.io/address/${address}`
|
link = `https://rinkeby.etherscan.io/address/${address}`
|
||||||
break
|
break
|
||||||
case 42: // kovan test net
|
case 42: // kovan test net
|
||||||
link = `http://kovan.etherscan.io/address/${address}`
|
link = `https://kovan.etherscan.io/address/${address}`
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
link = ''
|
link = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user