-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.env.example
45 lines (37 loc) · 1.52 KB
/
.env.example
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
# LLM Configuration
OPENAI_API_KEY=your_key_here
ANTHROPIC_API_KEY=your_key_here
DEFAULT_OPENAI_MODEL=gpt-4o-mini
DEFAULT_ANTHROPIC_MODEL=claude-3-5-sonnet-20241022
# RPC Configuration
# NOTE: These are public RPC endpoints. For production use, consider using a private RPC provider (e.g., Infura, Alchemy, QuickNode) for better reliability.
ETH_RPC_URL=https://eth.llamarpc.com
ETH_SEPOLIA_RPC_URL=https://sepolia.drpc.org
BASE_RPC_URL=https://mainnet.base.org
BASE_SEPOLIA_RPC_URL=https://sepolia.base.org
SOLANA_RPC_URL=https://api.mainnet-beta.solana.com
# Alchemy Configuration
ALCHEMY_API_KEY=
# HELIUS API for Solana
HELIUS_API_KEY=
# Cookie.fun Configuration
COOKIE_FUN_API_KEY=
# Telegram Configuration
TELEGRAM_BOT_TOKEN=your_bot_token
TELEGRAM_SERVER_IP=0.0.0.0
TELEGRAM_SERVER_PORT=8000
TELEGRAM_CHAT_ID=your_chat_id
# Wallet Configuration (Required for trading)
ETH_WALLET_ADDRESS=your_ethereum_wallet_address
ETH_SEPOLIA_WALLET_ADDRESS=your_ethereum_sepolia_wallet_address
BASE_WALLET_ADDRESS=your_base_wallet_address
SOL_WALLET_ADDRESS=your_solana_wallet_address
# Private Keys (Required for trading - BE VERY CAREFUL!)
# These keys have full control over your wallets. Never share them!
ETH_PRIVATE_KEY=your_ethereum_private_key
ETH_SEPOLIA_PRIVATE_KEY=your_ethereum_sepolia_private_key
BASE_PRIVATE_KEY=your_base_private_key
SOL_PRIVATE_KEY=your_solana_private_key
# Logging Configuration
LOG_LEVEL=INFO # DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_FORMAT=%(asctime)s - %(name)s:%(lineno)d - %(funcName)s - %(levelname)s - %(message)s