forked from encipher88/nogem.app-aio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
37 lines (32 loc) · 909 Bytes
/
config.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
33
34
35
36
37
import asyncio
from tools.helpers import read_txt,load_json,get_chain_prices
MAX_TX_WAITING_TIME = 200
WALLETS = read_txt("data/wallets.txt")
ERC20_ABI = load_json("tools/contracts/erc20.json")
FILLER_VALUE = [0.0000051234, 0.00000051234, 8, 11]
PRICES_NATIVE = asyncio.run(get_chain_prices())
CHAINS = {
'avalanche': 'AVAX',
'polygon': 'MATIC',
'ethereum': 'ETH',
'bsc': 'BNB',
'arbitrum': 'ETH',
'optimism': 'ETH',
'fantom': 'FTM',
'zksync': 'ETH',
'nova': 'ETH',
'gnosis': 'xDAI',
'celo': 'CELO',
'polygon_zkevm': 'ETH',
'core': 'COREDAO',
'harmony': 'ONE',
'moonbeam': 'GLMR',
'moonriver': 'MOVR',
'linea': 'ETH',
'base': 'ETH',
'scroll': 'ETH',
'zora': 'ETH',
'mantle': 'MNT',
'zeta': 'ZETA',
'blast': 'ETH',
}