aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/buy-eth-url.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/lib/buy-eth-url.js')
-rw-r--r--app/scripts/lib/buy-eth-url.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/scripts/lib/buy-eth-url.js b/app/scripts/lib/buy-eth-url.js
index 46710a16f..d9d5155c2 100644
--- a/app/scripts/lib/buy-eth-url.js
+++ b/app/scripts/lib/buy-eth-url.js
@@ -16,6 +16,8 @@ function getBuyEthUrl({ network, amount, address, service }) {
if (!service) service = getDefaultServiceForNetwork(network)
switch (service) {
+ case 'wyre':
+ return `https://dash.sendwyre.com/sign-up`
case 'coinswitch':
return `https://metamask.coinswitch.co/?address=${address}&to=eth`
case 'coinbase':
@@ -33,7 +35,7 @@ function getBuyEthUrl({ network, amount, address, service }) {
function getDefaultServiceForNetwork (networkId) {
switch (network) {
case '1':
- return 'coinbase'
+ return 'wyre'
case '3':
return 'metamask-faucet'
case '4':