1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/lib/account-link.js

22 lines
470 B
JavaScript
Raw Normal View History

2016-11-23 00:56:54 +01:00
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
2016-11-22 22:00:13 +01:00
link = `http://morden.etherscan.io/address/${address}`
break
case 3: // ropsten test net
2016-11-22 22:00:13 +01:00
link = `http://testnet.etherscan.io/address/${address}`
break
default:
link = ''
break
}
return link
}