aboutsummaryrefslogblamecommitdiffstats
path: root/ui/lib/account-link.js
blob: 037d990fa223cc015db59ff162e6118fb4e99f4d (plain) (tree)
1
2
3
4
5
6
7
8
9
                                              

                               

                       
                                                      

                              
                                                             
           
                               
                                                              
           
                               
                                                              
           
                              
                                                            
           






               
module.exports = function (address, network) {
  const net = parseInt(network)
  let link
  switch (net) {
    case 1: // main net
      link = `https://etherscan.io/address/${address}`
      break
    case 2: // morden test net
      link = `https://morden.etherscan.io/address/${address}`
      break
    case 3: // ropsten test net
      link = `https://ropsten.etherscan.io/address/${address}`
      break
    case 4: // rinkeby test net
      link = `https://rinkeby.etherscan.io/address/${address}`
      break
    case 42: // kovan test net
      link = `https://kovan.etherscan.io/address/${address}`
      break
    default:
      link = ''
      break
  }

  return link
}