aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/account-link.js
blob: eb958e22df5f879549c0776976882a33d5f2c681 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
}