25 lines
804 B
Plaintext
25 lines
804 B
Plaintext
# Example environment variables for the Hyperliquid trading toolkit
|
|
# Copy this file to .env and fill in real values. Do NOT commit your real .env file.
|
|
|
|
# Main wallet (used only to authorize agents on-chain)
|
|
# Example: MAIN_WALLET_PRIVATE_KEY=0x...
|
|
MAIN_WALLET_PRIVATE_KEY=
|
|
MAIN_WALLET_ADDRESS=
|
|
|
|
# Agent keys (private keys authorized via create_agent.py)
|
|
# Preferred patterns:
|
|
# - AGENT_PRIVATE_KEY: default agent
|
|
# - <NAME>_AGENT_PK or <NAME>_AGENT_PRIVATE_KEY: per-agent keys (e.g., SCALPER_AGENT_PK)
|
|
# Example: AGENT_PRIVATE_KEY=0x...
|
|
AGENT_PRIVATE_KEY=
|
|
# Example per-agent key:
|
|
# SCALPER_AGENT_PK=
|
|
# SWING_AGENT_PK=
|
|
|
|
# Optional: CoinGecko API key to reduce rate limits for market cap fetches
|
|
COINGECKO_API_KEY=
|
|
|
|
# Optional: Set a custom environment for development/testing
|
|
# E.g., DEBUG=true
|
|
DEBUG=
|