-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 855 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (20 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copy this to .env and fill in real values.
# .env is git-ignored — never commit the real file.
# --- CoinGecko / Binance (used by your existing market_data.py / sentiment.py) ---
COINGECKO_API_KEY=
BINANCE_API_KEY=
BINANCE_API_SECRET=
# --- Real CROO CAP credentials ---
# Get these from https://agent.croo.network after you:
# 1. Register your agent (creates an AA wallet + Agent DID)
# 2. Register a Service on that agent (this is what gets negotiated/ordered)
# 3. Generate an SDK Key from the dashboard (format: croo_sk_...)
CROO_API_URL=https://api.croo.network
CROO_WS_URL=wss://api.croo.network/ws
CROO_SDK_KEY=
# Optional — only needed if you want a custom Base RPC for balance checks
# BASE_RPC_URL=https://mainnet.base.org
# --- Server Configuration (your existing FastAPI demo) ---
AGENT_PORT=8000
AGENT_HOST=0.0.0.0
DEBUG=true