a08c3bc01
39a84c0e4
f79601ee5
1
2
3
4
5 6
7
8 9
10
11 12 13 14 15
module.exports = function (hash, network) { const net = parseInt(network) let prefix switch (net) { case 1: // main net prefix = '' break case 2: // morden test net prefix = 'testnet.' break default: prefix = '' } return `http://${prefix}etherscan.io/tx/${hash}` }