forked from VolumeFi/trading-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdex_chain.py
32 lines (31 loc) · 834 Bytes
/
dex_chain.py
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
DEX_CHAIN = {
"pancakeswap_new": "BSC",
"uniswap_v3": "Ethereum",
"uniswap_v3_arbitrum": "Arbitrum",
"uniswap_v3_polygon_pos": "Polygon",
"shibaswap": "Ethereum",
"sushiswap": "Ethereum",
"sushiswap_bsc": "BSC",
"apeswap_bsc": "BSC",
"babydogeswap": "BSC",
"biswap": "BSC",
"mdex_bsc": "BSC",
"babyswap": "BSC",
"uniswap_v2": "Ethereum",
"curve_ethereum": "Ethereum",
"curve_polygon": "Polygon",
}
# NETWORK_MAP_CG: map a network to their CG id
NETWORK_MAP_CG = {
"Ethereum": "ethereum",
"BSC": "binance-smart-chain",
"Polygon": "polygon-pos",
"Arbitrum": "arbitrum-one",
}
# NETWORK_MAP_CGTERMINAL: map a network to their CG id
NETWORK_MAP_CGTERMINAL = {
"Ethereum": "eth",
"BSC": "bsc",
"Polygon": "polygon_pos",
"Arbitrum": "arbitrum",
}