You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
364 B
19 lines
364 B
8 years ago
|
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://testnet.etherscan.io/address/${address}`
|
||
|
break
|
||
|
default:
|
||
|
link = ''
|
||
|
break
|
||
|
}
|
||
|
|
||
|
return link
|
||
|
}
|