aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/buy-eth-url.js
diff options
context:
space:
mode:
authorKevin Serrano <kevin.serrano@consensys.net>2017-04-26 05:39:01 +0800
committerKevin Serrano <kevin.serrano@consensys.net>2017-04-26 05:39:01 +0800
commit242dc1e99f1dd53e2bec9deefb5da0c8329b5f00 (patch)
treed6a943349a6b86fab61558d59179435b4ddbeb2b /app/scripts/lib/buy-eth-url.js
parentd764e46a500d0dc156a1da86498b751d23c94747 (diff)
downloadtangerine-wallet-browser-242dc1e99f1dd53e2bec9deefb5da0c8329b5f00.tar.gz
tangerine-wallet-browser-242dc1e99f1dd53e2bec9deefb5da0c8329b5f00.tar.zst
tangerine-wallet-browser-242dc1e99f1dd53e2bec9deefb5da0c8329b5f00.zip
Add missing changes. Create unique style for rinkeby icon.
Diffstat (limited to 'app/scripts/lib/buy-eth-url.js')
-rw-r--r--app/scripts/lib/buy-eth-url.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/scripts/lib/buy-eth-url.js b/app/scripts/lib/buy-eth-url.js
index 91a1ec322..957a00211 100644
--- a/app/scripts/lib/buy-eth-url.js
+++ b/app/scripts/lib/buy-eth-url.js
@@ -11,9 +11,13 @@ function getBuyEthUrl({ network, amount, address }){
url = 'https://faucet.metamask.io/'
break
+ case '4':
+ url = 'https://www.rinkeby.io/'
+ break
+
case '42':
url = 'https://github.com/kovan-testnet/faucet'
break
}
return url
-} \ No newline at end of file
+}