-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
48 lines (35 loc) · 3 KB
/
env.example
File metadata and controls
48 lines (35 loc) · 3 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# ═══════════════════════════════════════════════════════════════════════════
# ERC-8001 SDK Example Configuration
# ═══════════════════════════════════════════════════════════════════════════
# Copy this file to .env and fill in your values:
# cp .env.example .env
# ═══════════════════════════════════════════════════════════════════════════
# NETWORK
# ═══════════════════════════════════════════════════════════════════════════
# RPC URL for Base Sepolia (or your target network)
RPC_URL=https://sepolia.base.org
# Chain ID (84532 for Base Sepolia)
CHAIN_ID=84532
# ═══════════════════════════════════════════════════════════════════════════
# CONTRACTS
# ═══════════════════════════════════════════════════════════════════════════
# Deployed AgentCoordination contract address
COORDINATION_CONTRACT=0x
# Deployed BoundedExecution contract address (optional)
BOUNDED_CONTRACT=0x
# ═══════════════════════════════════════════════════════════════════════════
# ACCOUNTS (for testing/demos only - never commit real keys)
# ═══════════════════════════════════════════════════════════════════════════
# Agent 1 (Proposer)
AGENT1_PRIVATE_KEY=0x
# Agent 2 (Participant)
AGENT2_PRIVATE_KEY=0x
# Agent 3 (Optional - for 3+ party coordination)
AGENT3_PRIVATE_KEY=0x
# ═══════════════════════════════════════════════════════════════════════════
# OPTIONAL
# ═══════════════════════════════════════════════════════════════════════════
# Block explorer API key (for contract verification)
BASESCAN_API_KEY=
# Alchemy/Infura API key (if using their RPC)
ALCHEMY_API_KEY=