chore: order coins alphabetically, bch logo green
This commit is contained in:
parent
0e04377b24
commit
54b655f707
4 changed files with 13 additions and 13 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue