1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/lib/explorer-link.js
2016-04-27 14:43:09 -07:00

16 lines
316 B
JavaScript

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}`
}