This commit is contained in:
2025-10-18 15:55:53 +02:00
parent de9e61d4cf
commit 2b55851136
14 changed files with 305 additions and 4 deletions

24
.env.example Normal file
View File

@ -0,0 +1,24 @@
# 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=