-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (30 loc) · 1.22 KB
/
.env.example
File metadata and controls
40 lines (30 loc) · 1.22 KB
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
# Solana RPC URL
# Use a reliable RPC provider like Helius, QuickNode, or Alchemy
SOLANA_RPC_URL=https://api.mainnet-beta.solana.com
# Your wallet private key (base58 encoded)
# IMPORTANT: Never share this key or commit it to version control
PRIVATE_KEY=your_base58_encoded_private_key_here
# Target wallets to monitor (comma-separated)
# Add the wallet addresses you want to copy trade from
TARGET_WALLETS=wallet1_address,wallet2_address,wallet3_address
# Bagsapp Program ID
# The program ID for Bagsapp on Solana
BAGSAPP_PROGRAM_ID=BagApp111111111111111111111111111111111
# Own Sell Logic Configuration
# Set to 'true' to enable automatic stop loss/take profit
# Set to 'false' to copy target wallet sells
ENABLE_OWN_SELL_LOGIC=false
# Stop Loss Percentage
# Sell automatically if price drops by this percentage (only if ENABLE_OWN_SELL_LOGIC=true)
STOP_LOSS_PERCENT=5
# Take Profit Percentage
# Sell automatically if price increases by this percentage (only if ENABLE_OWN_SELL_LOGIC=true)
TAKE_PROFIT_PERCENT=10
# Slippage Tolerance (in basis points, 100 = 1%)
SLIPPAGE_BPS=100
# Minimum SOL amount per trade
MIN_SOL_AMOUNT=0.01
# Maximum SOL amount per trade
MAX_SOL_AMOUNT=10
# Log Level (error, warn, info, debug)
LOG_LEVEL=info