Skip to content

Commit

Permalink
Update Wallet Exchanges page with new listings (#6507)
Browse files Browse the repository at this point in the history
### Description

Adds most recent exchange listings w/ new exchanges and assets

### Other changes

Alphabetized exchanges list

### Tested

_An explanation of how the changes were tested or an explanation as to why they don't need to be._

### Related issues

n/a

### Backwards compatibility

n/a
  • Loading branch information
nityas authored Jan 17, 2021
1 parent 64b4200 commit fcfbb8b
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions packages/mobile/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,33 +111,38 @@ export const MOONPAY_RATE_API = `https://api.moonpay.io/v3/currencies/celo/price

export const EXCHANGE_PROVIDER_LINKS: ExternalExchangeProvider[] = [
{
name: 'Bittrex',
link: 'https://bittrex.com/Market/Index?MarketName=USD-CELO',
name: 'Binance',
link: 'https://www.binance.com/en/trade/CELO_USDT',
currencies: [CURRENCY_ENUM.GOLD],
},
{
name: 'OKCoin',
link: 'https://www.okcoin.com/en/spot/trade/cusd-usd/',
name: 'Bittrex',
link: 'https://bittrex.com/Market/Index?MarketName=USD-CELO',
currencies: [CURRENCY_ENUM.GOLD, CURRENCY_ENUM.DOLLAR],
},
{
name: 'OKEx',
link: 'https://www.okex.com/spot/trade/CELO-USDT',
name: 'Coinbase (CELO as CGLD)',
link: 'https://www.coinbase.com',
currencies: [CURRENCY_ENUM.GOLD],
},
{
name: 'Coinbase Pro (CELO as CGLD)',
link: 'https://pro.coinbase.com/trade/CGLD-USD',
currencies: [CURRENCY_ENUM.GOLD],
},
{
name: 'CoinList Pro',
link: 'https://coinlist.co/asset/celo',
currencies: [CURRENCY_ENUM.GOLD],
currencies: [CURRENCY_ENUM.GOLD, CURRENCY_ENUM.DOLLAR],
},
{
name: 'Coinbase Pro (CELO as CGLD)',
link: 'https://pro.coinbase.com/trade/CGLD-USD',
currencies: [CURRENCY_ENUM.GOLD],
name: 'OKCoin',
link: 'https://www.okcoin.com/en/spot/trade/cusd-usd/',
currencies: [CURRENCY_ENUM.GOLD, CURRENCY_ENUM.DOLLAR],
},
{
name: 'Coinbase (CELO as CGLD)',
link: 'https://www.coinbase.com',
name: 'OKEx',
link: 'https://www.okex.com/spot/trade/CELO-USDT',
currencies: [CURRENCY_ENUM.GOLD],
},
]
Expand Down

0 comments on commit fcfbb8b

Please sign in to comment.