mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
34 lines
924 B
JavaScript
34 lines
924 B
JavaScript
export default function getAccountLink (address, network, rpcPrefs) {
|
|
if (rpcPrefs && rpcPrefs.blockExplorerUrl) {
|
|
return `${rpcPrefs.blockExplorerUrl}/address/${address}`
|
|
}
|
|
|
|
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
|
|
case 5: // goerli test net
|
|
link = `https://goerli.etherscan.io/address/${address}`
|
|
break
|
|
default:
|
|
link = ''
|
|
break
|
|
}
|
|
|
|
return link
|
|
}
|