mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge master to NewUI-flat
This commit is contained in:
parent
c8c773d641
commit
a8bba2f4b7
26
ui/lib/account-link.js
Normal file
26
ui/lib/account-link.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user