1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Revert "Update Wyre ETH purchase url" (#7631)

* Revert "Update Wyre buy ETH URL (#7482)"

This reverts commit 015ba83c6e.

* Change test description from coinbase to wyre
This commit is contained in:
Thomas Huang 2019-12-03 17:12:14 -08:00 committed by GitHub
parent 31a4788bf9
commit bc67d1eeca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -19,7 +19,7 @@ function getBuyEthUrl ({ network, amount, address, service }) {
switch (service) {
case 'wyre':
return `https://pay.sendwyre.com/?dest=ethereum:${address}&destCurrency=ETH&accountId=AC-7AG3W4XH4N2`
return `https://dash.sendwyre.com/sign-up`
case 'coinswitch':
return `https://metamask.coinswitch.co/?address=${address}&to=eth`
case 'coinbase':

View File

@ -20,7 +20,7 @@ describe('buy-eth-url', function () {
it('returns wyre url with address for network 1', function () {
const wyreUrl = getBuyEthUrl(mainnet)
assert.equal(wyreUrl, 'https://pay.sendwyre.com/?dest=ethereum:0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc&destCurrency=ETH&accountId=AC-7AG3W4XH4N2')
assert.equal(wyreUrl, 'https://dash.sendwyre.com/sign-up')
})
@ -40,4 +40,3 @@ describe('buy-eth-url', function () {
})
})