-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
81 lines (73 loc) · 3.23 KB
/
main.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
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
import datetime, sys, random, asyncio
from loguru import logger
from questionary import Choice, select
from core.account import Account
from core.aave import Aave
from core.compound import Compound
from core.moonwell import Moonwell
from core.seamless import Seamless
from core.okx import OKX
from core.checker import Checker
from core.utils import sleep
from config import PRIVATE_KEYS, OKX_ADDRESSES
from settings import *
def main() -> None:
module = select(
message='Выберите модуль: ',
instruction='(используйте стрелочки для навигации)',
choices=[
Choice('1️⃣ Aave', Aave),
Choice('2️⃣ Compound', Compound),
Choice('3️⃣ Moonwell', Moonwell),
Choice('4️⃣ Seamless', Seamless),
Choice('🎲 Рандомный dApp', 'random'),
Choice('📊 Чекер', 'checker'),
Choice('❌ Выход', 'exit')
],
qmark="\n❓ ",
pointer="👉 "
).ask()
if module == 'checker':
return
if module == 'exit' or module is None:
exit()
for acc in accs:
if acc.ether_balance < 0.001:
if acc.deposited_balance > 0.001:
logger.warning(f'{acc.info} Найдено {acc.deposited_balance:.2f} ETH в пуле! Пытаюсь вывести...')
acc.withdraw_from_pool()
sleep(15, 25)
else:
if WITHDRAW_FROM_OKX and USE_OKX:
OKX(acc.info).withdraw(acc.address, random.uniform(*AMOUNT_TO_WITHDRAW_FROM_OKX), 'ETH', 'Base')
else:
logger.warning(f'{acc.info} Недостаточно ETH! Вывод с ОКХ или USE_OKX отключён, пропускаю аккаунт...')
continue
target = random.uniform(*TARGET_VALUE)
while acc.traded_value < target:
if module == 'random':
random.choice([Aave, Compound, Moonwell, Seamless])(acc).run()
else:
module(acc).run()
logger.debug(f'Теперь объём: {acc.traded_value:.2f} ETH | Таргет: {target:.2f} ETH')
if WITHDRAW_TO_OKX:
acc.withdraw_to_okx()
logger.success(f'{acc.info} Аккаунт завершён 🏁 | Объём: {acc.traded_value:.2f} ETH')
sleep(*SLEEP_BETWEEN_ACCS)
if __name__ == "__main__":
logger.remove()
format='<white>{time:HH:mm:ss}</white> | <bold><level>{level: <7}</level></bold> | <level>{message}</level>'
logger.add(sink=sys.stdout, format=format)
logger.add(sink=f'logs/{datetime.datetime.today().strftime("%Y-%m-%d")}.log', format=format)
while True:
try:
accs = [Account(i, key) for i, key in enumerate(PRIVATE_KEYS, 1)]
for i, okx_address in enumerate(OKX_ADDRESSES):
accs[i].okx_address = okx_address
asyncio.run(Checker(accs).run())
main()
except Exception as e:
logger.critical(e)
except (KeyboardInterrupt, SystemExit):
print('\n👋👋👋')
exit()