module.exports=function(address, network) {const net =parseInt(network)let link
switch(net) {case1:// main net
link =`http://etherscan.io/address/${address}`breakcase2:// morden test net
link =`http://testnet.etherscan.io/address/${address}`breakdefault:
link =''break}return link
}