diff options
Adding CoinSwitch exchange
Diffstat (limited to 'app/scripts')
-rw-r--r-- | app/scripts/lib/buy-eth-url.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/scripts/lib/buy-eth-url.js b/app/scripts/lib/buy-eth-url.js index 4e2d0bc79..4b1572959 100644 --- a/app/scripts/lib/buy-eth-url.js +++ b/app/scripts/lib/buy-eth-url.js @@ -29,6 +29,10 @@ function getBuyEthUrl ({ network, amount, address }) { case '42': url = 'https://github.com/kovan-testnet/faucet' break + + case '5': + url = `https://metamask.coinswitch.co/?address=${address}&to=eth` + break } return url } |