module.exports=function(address, network) {const net =parseInt(network)let link
switch(net) {case1:// main netcase237:// main net
link =`https://dexonscan.app/address/${address}`breakcase2:// test netcase238:// test netdefault:
link =`https://testnet.dexonscan.app/address/${address}`break}return link
}