1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/lib/account-link.js
Whymarrh Whitby b7259e5d6a
Fix radix issues (#9247)
See [`radix`](https://eslint.org/docs/rules/radix) for more information.

This change enables `radix` and fixes the issues raised by the rule.
2020-08-18 16:38:22 -02:30

25 lines
871 B
JavaScript

export default function getAccountLink (address, network, rpcPrefs) {
if (rpcPrefs && rpcPrefs.blockExplorerUrl) {
return `${rpcPrefs.blockExplorerUrl.replace(/\/+$/u, '')}/address/${address}`
}
// eslint-disable-next-line radix
const net = parseInt(network)
switch (net) {
case 1: // main net
return `https://etherscan.io/address/${address}`
case 2: // morden test net
return `https://morden.etherscan.io/address/${address}`
case 3: // ropsten test net
return `https://ropsten.etherscan.io/address/${address}`
case 4: // rinkeby test net
return `https://rinkeby.etherscan.io/address/${address}`
case 42: // kovan test net
return `https://kovan.etherscan.io/address/${address}`
case 5: // goerli test net
return `https://goerli.etherscan.io/address/${address}`
default:
return ''
}
}