-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig_EXAMPLE.py
19 lines (14 loc) · 986 Bytes
/
config_EXAMPLE.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ================== Settings ==================
chain = 'Starknet' # ERC20 | OKTC | Arbitrum One | zkSync Lite | zkSync Era | Optimism | Harmony | Starknet
token = 'ETH' # ETH | ONE | CORE. To add other coins, you need to add them below in the links dictionary
OKX_2FA = "your_okx_2fa"
EMAIL_LOGIN = "your_email_login"
EMAIL_2FA = "your_email_2fa"
IMAP_URL = "imap.gmail.com"
links = {
'ETH': {'link': 'https://www.okx.cab/ru/balance/withdrawal-address/eth/2', 'token': 'ETH'}, # it's for all the coins in the chains : ERC20 | OKTC | Arbitrum one | zkSync Lite | zkSync Era | Optimism | Starknet
'ONE': {'link': 'https://www.okx.cab/ru/balance/withdrawal-address/one/1926', 'token': 'ONE'}, # it's for the ONE coin on the Harmony network
'CORE': {'link': 'https://www.okx.cab/ru/balance/withdrawal-address/core/2806', 'token': 'CORE'}, # it's for the CORE coin on the CORE network
}
with open(f"wallets.txt", "r") as f:
WALLETS = [row.strip() for row in f]