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