-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
83 lines (82 loc) · 1.94 KB
/
config.py
File metadata and controls
83 lines (82 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# config.py
COINGECKO_API_URL = "https://api.coingecko.com/api/v3/simple/price"
DEFAULT_CURRENCY = 'cad'
# assets for all coins
assets = {
"btc": "bitcoin",
"eth": "ethereum",
"ltc": "litecoin",
"xrp": "ripple",
"bch": "bitcoin-cash",
"usdc": "usd-coin",
"xmr": "monero",
"xlm": "stellar",
"usdt": "tether",
"doge": "dogecoin",
"link": "chainlink",
"matic": "matic-network",
"uni": "uniswap",
"comp": "compound",
"aave": "aave",
"dai": "dai",
"sushi": "sushi",
"snx": "havven",
"crv": "curve-dao-token",
"dot": "polkadot",
"yfi": "yearn-finance",
"mkr": "maker",
"paxg": "pax-gold",
"ada": "cardano",
"bat": "basic-attention-token",
"enj": "enjincoin",
"axs": "axie-infinity",
"dash": "dash",
"eos": "eos",
"bal": "balancer",
"knc": "kyber-network",
"zrx": "0x",
"sand": "the-sandbox",
"grt": "the-graph",
"qnt": "quant-network",
"etc": "ethereum-classic",
"ethw": "ethereum-pow-iou",
"1inch": "1inch",
"chz": "chiliz",
"chr": "chromaway",
"super": "superfarm",
"elf": "aelf",
"omg": "omisego",
"ftm": "fantom",
"mana": "decentraland",
"sol": "solana",
"algo": "algorand",
"lunc": "terra-luna",
"ust": "terrausd",
"zec": "zcash",
"xtz": "tezos",
"amp": "amp-token",
"ren": "republic-protocol",
"uma": "uma",
"shib": "shiba-inu",
"lrc": "loopring",
"ankr": "ankr",
"hbar": "hedera-hashgraph",
"egld": "elrond-erd-2",
"avax": "avalanche-2",
"one": "harmony",
"gala": "gala",
"alice": "my-neighbor-alice",
"atom": "cosmos",
"dydx": "dydx",
"celo": "celo",
"storj": "storj",
"skl": "skale",
"ctsi": "cartesi",
"band": "band-protocol",
"ens": "ethereum-name-service",
"rndr": "render-token",
"mask": "mask-network",
"ape": "apecoin",
"qcad": "qcad",
"comp": "compound-governance-token"
}