mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
27 lines
678 B
JavaScript
27 lines
678 B
JavaScript
module.exports = function (address, network) {
|
|
const net = parseInt(network)
|
|
let link
|
|
switch (net) {
|
|
case 1: // main net
|
|
link = `http://etherscan.io/address/${address}`
|
|
break
|
|
case 2: // morden test net
|
|
link = `http://morden.etherscan.io/address/${address}`
|
|
break
|
|
case 3: // ropsten test net
|
|
link = `http://ropsten.etherscan.io/address/${address}`
|
|
break
|
|
case 4: // rinkeby test net
|
|
link = `http://rinkeby.etherscan.io/address/${address}`
|
|
break
|
|
case 42: // kovan test net
|
|
link = `http://kovan.etherscan.io/address/${address}`
|
|
break
|
|
default:
|
|
link = ''
|
|
break
|
|
}
|
|
|
|
return link
|
|
}
|