chore: order coins alphabetically, bch logo green

This commit is contained in:
Neal 2021-05-21 12:53:33 -04:00 committed by Josh Harvey
parent 0e04377b24
commit 54b655f707
4 changed files with 13 additions and 13 deletions

View file

@ -2,20 +2,20 @@ const _ = require('lodash/fp')
const COINS = {
BTC: 'BTC',
BCH: 'BCH',
DASH: 'DASH',
ETH: 'ETH',
LTC: 'LTC',
DASH: 'DASH',
ZEC: 'ZEC',
BCH: 'BCH'
ZEC: 'ZEC'
}
const COIN_LIST = [
{ code: COINS.BTC, display: 'Bitcoin' },
{ code: COINS.BCH, display: 'Bitcoin Cash' },
{ code: COINS.DASH, display: 'Dash' },
{ code: COINS.ETH, display: 'Ethereum' },
{ code: COINS.LTC, display: 'Litecoin' },
{ code: COINS.DASH, display: 'Dash' },
{ code: COINS.ZEC, display: 'Zcash' },
{ code: COINS.BCH, display: 'Bitcoin Cash' }
{ code: COINS.ZEC, display: 'Zcash' }
]
const ALL_CRYPTOS = _.keys(COINS)