forked from zaivanza/all-in-one-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.py
48 lines (36 loc) · 2.66 KB
/
data.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
38
39
40
41
42
43
44
45
46
47
48
TG_TOKEN = 'your_tgbot_token' # создать можешь здесь : https://t.me/BotFather
TG_ID = 0 # узнать можешь здесь : https://t.me/getmyid_bot
# меняем рпс на свои
DATA = {
'ethereum' : {'rpc': 'https://rpc.ankr.com/eth', 'scan': 'https://etherscan.io/tx', 'token': 'ETH', 'chain_id': 1},
'optimism' : {'rpc': 'https://rpc.ankr.com/optimism', 'scan': 'https://optimistic.etherscan.io/tx', 'token': 'ETH', 'chain_id': 10},
'bsc' : {'rpc': 'https://rpc.ankr.com/bsc', 'scan': 'https://bscscan.com/tx', 'token': 'BNB', 'chain_id': 56},
'polygon' : {'rpc': 'https://rpc.ankr.com/polygon', 'scan': 'https://polygonscan.com/tx', 'token': 'MATIC', 'chain_id': 137},
'polygon_zkevm' : {'rpc': 'https://zkevm-rpc.com', 'scan': 'https://zkevm.polygonscan.com/tx', 'token': 'ETH', 'chain_id': 1101},
'arbitrum' : {'rpc': 'https://rpc.ankr.com/arbitrum', 'scan': 'https://arbiscan.io/tx', 'token': 'ETH', 'chain_id': 42161},
'avalanche' : {'rpc': 'https://rpc.ankr.com/avalanche', 'scan': 'https://snowtrace.io/tx', 'token': 'AVAX', 'chain_id': 43114},
'fantom' : {'rpc': 'https://rpc.ankr.com/fantom', 'scan': 'https://ftmscan.com/tx', 'token': 'FTM', 'chain_id': 250},
'nova' : {'rpc': 'https://nova.arbitrum.io/rpc', 'scan': 'https://nova.arbiscan.io/tx', 'token': 'ETH', 'chain_id': 42170},
'zksync' : {'rpc': 'https://mainnet.era.zksync.io', 'scan': 'https://explorer.zksync.io/tx', 'token': 'ETH', 'chain_id': 324},
}
# апи ключи от бирж. если биржей не пользуешься, можно не вставлять
CEX_KEYS = {
'binance' : {'api_key': 'your_api_key', 'api_secret': 'your_api_secret'},
'mexc' : {'api_key': 'your_api_key', 'api_secret': 'your_api_secret'},
'kucoin' : {'api_key': 'your_api_key', 'api_secret': 'your_api_secret', 'password': 'your_api_password'},
'huobi' : {'api_key': 'your_api_key', 'api_secret': 'your_api_secret'},
'bybit' : {'api_key': 'your_api_key', 'api_secret': 'your_api_secret'},
}
# можешь записать любое кол-во аккаунтов, сделал таким образом чтобы постоянно данные от новых акков не вводить, а просто вызывать по имени аккаунта
OKX_KEYS = {
'account_1' : {
'api_key' : 'your_api_key',
'api_secret': 'your_api_secret',
'password' : 'your_api_password',
},
'account_2' : {
'api_key' : 'your_api_key',
'api_secret': 'your_api_secret',
'password' : 'your_api_password',
},
}