diff --git a/packages/mobile/src/config.ts b/packages/mobile/src/config.ts index d6d70ebc637..3af8c56c329 100644 --- a/packages/mobile/src/config.ts +++ b/packages/mobile/src/config.ts @@ -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], }, ]