1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 20:32:02 +02:00
metamask-extension/ui/lib/account-link.js
Erik Marks 76a2a9bb8b
@metamask/eslint config@5.0.0 (#10358)
* @metamask/eslint-config@5.0.0
* Update eslintrc and prettierrc
* yarn lint:fix
2021-02-04 10:15:23 -08:00

28 lines
898 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 '';
}
}