-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
55 lines (46 loc) · 2.04 KB
/
.env.example
File metadata and controls
55 lines (46 loc) · 2.04 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
49
50
51
52
53
54
55
# Mnemo — Environment Configuration
#
# Copy this file to .env and fill in your values:
# cp .env.example .env
# ---------------------------------------------------------------------------
# Hackathon
# ---------------------------------------------------------------------------
SYNTHESIS_API_KEY=
SYNTHESIS_PARTICIPANT_ID=
SYNTHESIS_TEAM_ID=
# ---------------------------------------------------------------------------
# Inference (at least one required)
# ---------------------------------------------------------------------------
# Venice — primary inference provider (has credits, OpenAI-compatible)
VENICE_API_KEY=
# OpenRouter — backup (may hit weekly limits)
OPENROUTER_API_KEY=
# ---------------------------------------------------------------------------
# Base Sepolia Deployment
# ---------------------------------------------------------------------------
# RPC endpoint (default: https://sepolia.base.org)
BASE_SEPOLIA_RPC_URL=https://sepolia.base.org
# Deployer private key — fund with Base Sepolia ETH from:
# https://www.alchemy.com/faucets/base-sepolia
# https://faucet.quicknode.com/base/sepolia
# Generate a new wallet: cast wallet new
PRIVATE_KEY=
# Basescan API key for contract verification (optional but recommended)
# Get one at: https://basescan.org/myapikey
BASESCAN_API_KEY=
# ---------------------------------------------------------------------------
# Deployed Contract Addresses (set after running scripts/deploy-sepolia.sh)
# ---------------------------------------------------------------------------
# When these are set, the web demo uses live on-chain layers instead of mocks.
# ESCROW_ADDRESS=
# ERC8004_ADDRESS=
# REGISTRY_ADDRESS=
# ---------------------------------------------------------------------------
# Web Demo
# ---------------------------------------------------------------------------
# RPC_URL used by the web server for on-chain interactions
# For local dev: http://localhost:8545 (Anvil)
# For Base Sepolia: https://sepolia.base.org
# RPC_URL=http://localhost:8545
# Server port (default: 3000)
# PORT=3000