30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
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=
|
|
|
|
# PostgreSQL connection string (for host-side scripts: indicators, strategies)
|
|
# When running in Docker, this is set in .env.docker
|
|
# Example: PG_CONN_STR=postgresql://hyper:your_password@localhost:5432/hyper
|
|
PG_CONN_STR=
|
|
|
|
# Optional: Set a custom environment for development/testing
|
|
# E.g., DEBUG=true
|
|
DEBUG=
|