Skip to content

Commit

Permalink
🐛 FIX: #15 missing platform enums (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
souvik666 committed Aug 30, 2023
1 parent 1f80d2a commit d2aa89a
Showing 1 changed file with 141 additions and 2 deletions.
143 changes: 141 additions & 2 deletions src/Enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,144 @@ export enum API_ROUTES {
GLOBAL = "/global",
GLOBAL_DEFI = "/global/decentralized_finance_defi",
}

export type PLATFORMS = "ethereum" | "tron";
/**
* @description if any platform enums is missing please visit https://www.coingecko.com/en/api/documentation
*/
export type PLATFORMS =
| "ethereum"
| "polygon-pos"
| "energi"
| "harmony-shard-0"
| "avalanche"
| "fantom"
| "binance-smart-chain"
| "xdai"
| "aurora"
| "smartbch"
| "near-protocol"
| "arbitrum-one"
| "solana"
| "klay-token"
| "bitgert"
| "tron"
| "cardano"
| "optimistic-ethereum"
| "sora"
| "huobi-token"
| "conflux"
| "aptos"
| "polkadot"
| "moonbeam"
| "chiliz"
| "boba"
| "komodo"
| "base"
| "Bitcichain"
| "zksync"
| "metis-andromeda"
| "elrond"
| "ardor"
| "qtum"
| "stellar"
| "cronos"
| "osmosis"
| "syscoin"
| "stacks"
| "algorand"
| "moonriver"
| "celo"
| "eos"
| "astar"
| "kusama"
| "the-open-network"
| "terra"
| "polygon-zkevm"
| "telos"
| "pulsechain"
| "core"
| "evmos"
| "arbitrum-nova"
| "cosmos"
| "kardiachain"
| "okex-chain"
| "songbird"
| "terra-2"
| "proof-of-memes"
| "velas"
| "sui"
| "oasis"
| "secret"
| "kava"
| "ronin"
| "linea"
| "icon"
| "ordinals"
| "fuse"
| "nem"
| "binancecoin"
| "thundercore"
| "iotex"
| "elastos"
| "milkomeda-cardano"
| "theta"
| "meter"
| "hedera-hashgraph"
| "hoo"
| "kucoin-community-chain"
| "bittorrent"
| "xdc-network"
| "zilliqa"
| "oasys"
| "nuls"
| "rootstock"
| "mixin-network"
| "canto"
| "mantle"
| "fusion-network"
| "hydra"
| "xrp"
| "tomochain"
| "neo"
| "tezos"
| "step-network"
| "defi-kingdoms-blockchain"
| "bitkub-chain"
| "factom"
| "dogechain"
| "ethereum-classic"
| "vechain"
| "waves"
| "bitcoin-cash"
| "empire"
| "kujira"
| "everscale"
| "exosama"
| "findora"
| "godwoken"
| "coinex-smart-chain"
| "trustless-computer"
| "ethereumpow"
| "stratis"
| "cube"
| "shiden network"
| "tombchain"
| "sx-network"
| "ontology"
| "eos-evm"
| "omni"
| "onus"
| "bitshares"
| "flare-network"
| "rollux"
| "wanchain"
| "function-x"
| "skale"
| "callisto"
| "wemix-network"
| "tenet"
| "neon-evm"
| "thorchain"
| "gochain"
| "celer-network"
| "vite"
& string

0 comments on commit d2aa89a

Please sign in to comment.