-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
20 lines (16 loc) · 837 Bytes
/
Copy path.env.example
File metadata and controls
20 lines (16 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Plinth — example env file
# Copy this to .env (at the repo root, or at sdk-ts/, or wherever you run scripts from)
# and fill in your testnet wallet keys.
#
# IMPORTANT: never commit .env. It's already in .gitignore.
# The agent's trading wallet (creates vaults, deploys to venues, reports PnL).
# Use a TESTNET key. Fund with USDC from https://faucet.testnet.arc.network
PRIVATE_KEY=0x...
# A second wallet used by sdk-ts/examples/*.ts to simulate an investor depositing
# into a vault. Can be the same key as PRIVATE_KEY for solo testing.
SERVICE_PRIVATE_KEY=0x...
# Optional: only needed if you run aster/ demos that hit the Aster L1 testnet
# trading API. Get one from https://www.asterdex.com/
ASTER_PRIVATE_KEY=0x...
# Optional: only needed if you run underwriter/review.ts (LLM-based reviewer)
ANTHROPIC_API_KEY=sk-ant-...