-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.env.example
More file actions
47 lines (34 loc) · 2.08 KB
/
Copy path.env.example
File metadata and controls
47 lines (34 loc) · 2.08 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
41
42
43
44
45
46
47
# ────────────────────────── Network / RPC ──────────────────────────
# Full HTTPS endpoint for a Solana RPC node (Helius, Triton, QuickNode …)
RPC_URL=https://mainnet.helius-rpc.com/?api-key=YOUR-API-KEY
# ───────────────────────── Wallet / Keys ───────────────────────────
# Absolute path (or ~/… shortcut) to the JSON keypair created by `solana-keygen new`.
WALLET_PATH=
# ──────────────────────── Pool Configuration ───────────────────────
# Liquidity-bin pool you want to provide to (LB Pair address, **not** LP token).
POOL_ADDRESS=6wJ7W3oHj7ex6MVFp2o26NSof3aey7U8Brs8E371WCXA
# How wide the position is (total number of bins across both sides).
TOTAL_BINS_SPAN=40
# Portion of those bins allocated *below* the active price (0–1).
LOWER_COEF=0.5
# DLMM strategy type. Valid: Spot, Stable, etc.
LIQUIDITY_STRATEGY_TYPE=Spot
# ─────────────────────── Fee & Priority Tuning ─────────────────────
# micro-lamports per CU; 50 000 ≈ “veryHigh” priority on main-net.
PRIORITY_FEE_MICRO_LAMPORTS=50000
# Hard-coded SOL kept in wallet to pay rent/fees (lamports). Default = 0.07 SOL.
SOL_FEE_BUFFER_LAMPORTS=70000000
#Acceptable price impact from Jupiter
PRICE_IMPACT=0.1
SLIPPAGE=10
# Interval between status polls / rebalance checks (sec)
MONITOR_INTERVAL_SECONDS=30
# Fraction of half-width that triggers re-centering (0.45 = 45 %)
CENTER_DISTANCE_THRESHOLD=0.45
#Whether we manually set bin span parameters
MANUAL=true
DITHER_ALPHA_API=http://0.0.0.0:8000/metrics
LOOKBACK=30
# ───────────────────────── Logging / Misc ──────────────────────────
# one of: fatal, error, warn, info, debug, trace
LOG_LEVEL=info