aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/account-link.js
blob: d061d0ad16f79e896efc0cecc40513f43e7c9ee5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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://morden.etherscan.io/address/${address}`
      break
    case 3: // ropsten test net
      link = `http://ropsten.etherscan.io/address/${address}`
      break
    case 4: // rinkeby test net
      link = `http://rinkeby.etherscan.io/address/${address}`
      break
    case 42: // kovan test net
      link = `http://kovan.etherscan.io/address/${address}`
      break
    default:
      link = ''
      break
  }

  return link
}