-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
47 lines (34 loc) · 1.87 KB
/
env.example
File metadata and controls
47 lines (34 loc) · 1.87 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
# AnchorRegistry — Environment Variables
# Copy to .env and fill in real values. NEVER commit .env to git.
# -----------------------------------------------------------------------
# Deployment
# -----------------------------------------------------------------------
# Owner wallet — hardware wallet recommended for mainnet
# For testnet: any funded wallet is fine
DEPLOYER_PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
# Cold storage address — MUST differ from deployer
# Air-gapped machine or separate hardware wallet
RECOVERY_ADDRESS=0x70997970C51812dc3A010C7d01b50e0d17dc79C8
# Hot wallet address for FastAPI backend (not the private key — just the address)
OPERATOR_ADDRESS=0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC
# Backup operator address
OPERATOR_BACKUP=0x90F79bf6EB2c4f870365E785982E1f101E93b906
# -----------------------------------------------------------------------
# RPC Endpoints (Infura)
# -----------------------------------------------------------------------
SEPOLIA_RPC_URL=https://sepolia.infura.io/v3/YOUR_INFURA_PROJECT_ID
BASE_RPC_URL=https://base-mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID
# -----------------------------------------------------------------------
# Block explorers (for --verify flag)
# -----------------------------------------------------------------------
ETHERSCAN_API_KEY=your_etherscan_api_key_here
BASESCAN_API_KEY=your_basescan_api_key_here
# -----------------------------------------------------------------------
# FastAPI runtime (set in Railway — not needed for deploy)
# -----------------------------------------------------------------------
# Private key of the operator hot wallet
OPERATOR_PRIVATE_KEY=0x_your_operator_private_key_here
# Contract address — set after deployment
ANCHOR_REGISTRY_ADDRESS=0x_set_after_deployment
# Infura project ID
INFURA_PROJECT_ID=your_infura_project_id_here