-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 1.74 KB
/
.env.example
File metadata and controls
32 lines (24 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# YieldKernel Environment Configuration
# Copy this file to .env and fill in your values
# ── AI Provider ─────────────────────────────────────────────────────────────
# Groq provides free, ultra-fast LPU inference (recommended)
# Get your free key at: https://console.groq.com/keys
GROQ_API_KEY=
AI_PROVIDER=groq
# ── Wallet (Tether WDK) ──────────────────────────────────────────────────────
# BIP-39 mnemonic for the agent's self-custodial wallet
# Leave blank to auto-generate a new wallet on first run
# Install WDK for live signing: npm install @tetherto/wdk-core @tetherto/wdk-evm
WALLET_MNEMONIC=
# ── Network ─────────────────────────────────────────────────────────────────
RPC_URL=https://eth-mainnet.g.alchemy.com/v2/demo
CHAIN_ID=1
# ── Agent Safety Constraints ─────────────────────────────────────────────────
# Maximum single-position size in USDT
MAX_POSITION_SIZE_USDT=1000
# Minimum APY to consider an opportunity worth the gas cost
MIN_APY_THRESHOLD=3.0
# Portfolio rebalance threshold (percentage drift before rebalancing)
REBALANCE_THRESHOLD=0.5
# ── Server ───────────────────────────────────────────────────────────────────
PORT=3000