-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 1.34 KB
/
.env.example
File metadata and controls
33 lines (29 loc) · 1.34 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
HYPERLIQUID_ACCOUNT_ADDRESS=your_account_address_here
HYPERLIQUID_PRIVATE_KEY=your_private_key_here
USE_TESTNET=true
# ── HIP-3 Multi-DEX configuration ────────────────────────────────────────────
# Comma-separated list of HIP-3 DEX names to trade on.
# Known DEX names (check via perpDexs API for the full list):
# xyz → trade.xyz
# flx → Felix (equity/commodity perps: NVDA, AAPL, WTI, etc.)
# cash → DreamCash
# Leave empty to trade only standard Hyperliquid perps.
TRADING_DEXES=
# Set to false to disable standard Hyperliquid perp trading
# (useful when trading only on HIP-3 DEXes)
ENABLE_STANDARD_HL=true
# Per-DEX coin lists (optional).
# If not set, all available coins on that DEX will be used.
# Format: comma-separated coin names WITHOUT the "dex:" prefix.
#
# Examples:
# XYZ_COINS=XYZ100,XYZ200
# FLX_COINS=NVDA,AAPL,WTI
# CASH_COINS=CASH1
# ── Rate limiter ────────────────────────────────────────────────────────────
# Hyperliquid allows 1,200 weight/minute (~20 req/sec).
# Values exceeding 20 will cause a startup error.
# RATE_LIMIT_RPS=5.0
# RATE_LIMIT_BURST=8
# RATE_LIMIT_BACKOFF=2.0
# RATE_LIMIT_MAX_BACKOFF=30.0