diff options
author | kumavis <kumavis@users.noreply.github.com> | 2016-08-23 10:23:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-23 10:23:01 +0800 |
commit | c97866e367a3e28b5b91a0e5e3a1d1befa652f13 (patch) | |
tree | ac10b0350dbcb5cfcd2f708503d478eb18a2b739 /ui/lib/account-link.js | |
parent | 8b9999b71eab07187e2723aadcc8163140985301 (diff) | |
parent | 07927b57986ffb0035b6b30ae7e54b843b551d83 (diff) | |
download | tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar.gz tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar.bz2 tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar.lz tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar.xz tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar.zst tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.zip |
Merge branch 'master' into kumavis-patch-1
Diffstat (limited to 'ui/lib/account-link.js')
-rw-r--r-- | ui/lib/account-link.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js new file mode 100644 index 000000000..eb958e22d --- /dev/null +++ b/ui/lib/account-link.js @@ -0,0 +1,18 @@ +module.exports = function(address, network) { + const net = parseInt(network) + let link + + switch (net) { + case 1: // main net + link = `http://etherscan.io/address/${address}` + break + case 2: // morden test net + link = `http://testnet.etherscan.io/address/${address}` + break + default: + link = '' + break + } + + return link +} |