-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (34 loc) · 868 Bytes
/
Copy path.env.example
File metadata and controls
42 lines (34 loc) · 868 Bytes
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
# ============================================
# NFT Mint Bot - Main Environment Config
# ============================================
# --- Network ---
RPC_URL=https://eth.llamarpc.com
WS_URL=
CHAIN_ID=1
# --- Wallets (comma-separated for multi-wallet) ---
PRIVATE_KEYS=0xYOUR_KEY_1,0xYOUR_KEY_2,0xYOUR_KEY_3
# --- Parallel Execution ---
MAX_PARALLEL_WALLETS=3
# --- Gas Strategy ---
# auto = use network suggestion with multiplier
# fixed = use MAX_FEE_PER_GAS and MAX_PRIORITY_FEE
# aggressive = 2x current base fee
GAS_STRATEGY=auto
MAX_FEE_PER_GAS=
MAX_PRIORITY_FEE=
GAS_LIMIT=
GAS_MULTIPLIER=1.2
# --- Retry ---
MAX_RETRIES=3
RETRY_DELAY=2000
# --- Simulation ---
SIMULATE=true
DRY_RUN=false
# --- Logging ---
LOG_LEVEL=info
LOG_DIR=./logs
# --- Timing ---
# ISO format: 2024-01-15T14:00:00Z
# or unix timestamp: 1705323600
MINT_TIME=
POLL_INTERVAL=3000