# KAIA-MCP Server Configuration
# Required: KAIA RPC URL
KAIA_RPC_URL=https://public-en.node.kaia.io
# Optional: Private key for transaction signing (required for transaction mode)
# WARNING: Keep this secure and never commit to version control
KAIA_PRIVATE_KEY=your_private_key_here
# Optional: Agent mode (readonly or transaction)
# readonly: Only query data, no transactions (default)
# transaction: Full access including transactions (requires KAIA_PRIVATE_KEY)
KAIA_AGENT_MODE=readonly
# Optional: Network (only kaia is supported currently)
KAIA_NETWORK=kaia
# KAIA-MCP API endpoints
API_BASE_URL=https://kvxdikvk5b.execute-api.ap-southeast-1.amazonaws.com/prod
PRICE_URL=https://kvxdikvk5b.execute-api.ap-southeast-1.amazonaws.com/prod/prices
# Optional: Custom RPC configuration
# RPC_TIMEOUT=10000
# RPC_RETRIES=3
# Optional: Log level (error, warn, info, debug)
LOG_LEVEL=info
# Optional: Enable debug mode
DEBUG=false