log processor

This commit is contained in:
Dobromir Popov
2024-11-06 11:08:59 +02:00
parent fb09daf983
commit 3dd7e315c7
6 changed files with 94 additions and 8 deletions

View File

@ -22,6 +22,9 @@ DISPLAY_CURRENCY = os.getenv('DISPLAY_CURRENCY', 'USD')
BOT_NAME = os.getenv("BOT_NAME")
FOLLOW_AMOUNT = os.getenv('FOLLOW_AMOUNT', 'percentage')
LIQUIDITY_TOKENS = os.getenv('LIQUIDITY_TOKENS', 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v').split(',')
DO_WATCH_WALLET = os.getenv('DO_WATCH_WALLET', 'False').lower() == 'true'
# 5 is current market cap priority
PRIORITY = int(os.getenv('PRIORITY', 5))
SOLANA_ENDPOINTS = [
"wss://api.mainnet-beta.solana.com",