-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
36 lines (26 loc) · 1.01 KB
/
example.env
File metadata and controls
36 lines (26 loc) · 1.01 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
# ===================
# Required Settings
# ===================
# Get your free API key at https://portal.jup.ag/
JUPITER_API_KEY=
# Your wallet private key (base58 or JSON byte array format)
# Only needed for the bot, not for frontend-only usage
WALLET_PRIVATE_KEY=
# Bid walls to monitor (JSON array)
# Note: Use double quotes inside, no single quotes around the value
BID_WALLS='[{"tokenMint":"TOKEN_MINT_HERE","bidWallAddress":"BID_WALL_ADDRESS_HERE","name":"Token Name"}]'
# ===================
# Optional Settings
# ===================
# Solana RPC endpoint (default: public mainnet)
RPC_URL=https://api.mainnet-beta.solana.com
# Trade size in USDC (default: 100)
TRADE_SIZE_USDC=10
# Polling interval in milliseconds (default: 30000 = 30s)
POLLING_INTERVAL_MS=30000
# Slippage for Jupiter swaps in basis points (default: 50 = 0.5%)
SLIPPAGE_BPS=50
# Extra price buffer on top of 1% bid wall fee (default: 1%)
PRICE_BUFFER_PERCENT=1
# Set to true to simulate trades without executing (default: false)
DRY_RUN=true