-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
33 lines (27 loc) · 1.02 KB
/
.env.example
File metadata and controls
33 lines (27 loc) · 1.02 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
# ===============================
# Database (Required)
# ===============================
# PostgreSQL connection string - Railway provides this automatically
DATABASE_URL=postgresql://user:password@host:5432/dbname
# Direct URL for migrations (optional, Railway provides this)
DIRECT_URL=postgresql://user:password@host:5432/dbname
# ===============================
# Blockchain RPC (Required)
# ===============================
# Alchemy RPC URL for Gensyn Testnet
RPC_URL=https://gensyn-testnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
# ===============================
# Indexer Settings
# ===============================
# Secret key for triggering indexer (change this!)
INDEXER_SECRET=your-secret-key-here
# Contract address to index (implementation address)
DELPHI_IMPL=0xCaC4F41DF8188034Eb459Bb4c8FaEcd6EE369fdf
# Batch size for indexing (blocks per batch)
BATCH_BLOCKS=2000
# Confirmations to wait before indexing
CONFIRMATIONS=2
# ===============================
# App Settings
# ===============================
NODE_ENV=production