-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (17 loc) · 770 Bytes
/
.env.example
File metadata and controls
23 lines (17 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Aurora Treasury — Environment Configuration
# === REQUIRED ===
# Your wallet seed phrase (12 words). Generate with: node -e "import('@tetherto/wdk').then(({default:W}) => console.log(W.getRandomSeedPhrase()))"
WDK_SEED="word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12"
# Anthropic Claude API key for AI decision engine
ANTHROPIC_API_KEY="sk-ant-..."
# === OPTIONAL ===
# Custom RPC endpoints (public RPCs used by default)
ETH_RPC="https://rpc.mevblocker.io/fast"
ARB_RPC="https://arb1.arbitrum.io/rpc"
BASE_RPC="https://mainnet.base.org"
# WDK Indexer API key for enhanced balance/history queries
WDK_INDEXER_API_KEY=""
# Agent cycle interval in milliseconds (default: 5 minutes)
CYCLE_INTERVAL_MS=300000
# API server port
PORT=3000