Lowercase the ticker symbols

deno-prep
Alex Gleason 2024-10-19 16:54:22 -05:00
rodzic ef51d127b1
commit 16658b42ba
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 23 dodań i 23 usunięć

Wyświetl plik

@ -1,27 +1,27 @@
const coins: Record<string, string> = {
AAVE: 'Aave',
ADA: 'Cardano',
ALGO: 'Algorand',
ATOM: 'Cosmos',
AVAX: 'Avalanche',
BCH: 'Bitcoin Cash',
BTC: 'Bitcoin',
DOT: 'Polkadot',
EOS: 'EOS',
ETC: 'Ethereum Classic',
ETH: 'Ethereum',
FIL: 'Filecoin',
ICP: 'Internet Computer',
LINK: 'Chainlink',
LTC: 'Litecoin',
MATIC: 'Polygon',
SOL: 'Solana',
VET: 'VeChain',
XLM: 'Stellar',
XMR: 'Monero',
XRP: 'Ripple',
XTZ: 'Tezos',
ZEC: 'Zcash',
aave: 'Aave',
ada: 'Cardano',
algo: 'Algorand',
atom: 'Cosmos',
avax: 'Avalanche',
bch: 'Bitcoin Cash',
btc: 'Bitcoin',
dot: 'Polkadot',
eos: 'EOS',
etc: 'Ethereum Classic',
eth: 'Ethereum',
fil: 'Filecoin',
icp: 'Internet Computer',
link: 'Chainlink',
ltc: 'Litecoin',
matic: 'Polygon',
sol: 'Solana',
vet: 'VeChain',
xlm: 'Stellar',
xmr: 'Monero',
xrp: 'Ripple',
xtz: 'Tezos',
zec: 'Zcash',
};
/** Get title from CoinDB based on ticker symbol */