-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (37 loc) · 1.91 KB
/
Copy path.env.example
File metadata and controls
52 lines (37 loc) · 1.91 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
# Copy to .env and fill in. .env is gitignored.
# ── Chain RPC endpoints ──
# WSS for newHeads subscription, HTTP for fallback. Comment out the chains
# you don't need; the indexer skips chains whose [[chains]] block isn't
# in config.toml.
BASE_WSS_URL=wss://base-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
BASE_HTTP_URL=https://base-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
ETH_WSS_URL=wss://eth-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
ETH_HTTP_URL=https://eth-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
ARB_WSS_URL=wss://arb-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
ARB_HTTP_URL=https://arb-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
OP_WSS_URL=wss://opt-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
OP_HTTP_URL=https://opt-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
POLY_WSS_URL=wss://polygon-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
POLY_HTTP_URL=https://polygon-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
BSC_WSS_URL=wss://bnb-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
BSC_HTTP_URL=https://bnb-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
AVAX_WSS_URL=wss://avax-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
AVAX_HTTP_URL=https://avax-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
SCROLL_WSS_URL=wss://scroll-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
SCROLL_HTTP_URL=https://scroll-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
ZKSYNC_WSS_URL=wss://zksync-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
ZKSYNC_HTTP_URL=https://zksync-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
# ── Kafka ──
KAFKA_BROKERS=localhost:9092
# ── ClickHouse (added later) ──
CLICKHOUSE_DSN=clickhouse://default:@localhost:9000/chainpulse
# ── Redis (added later) ──
REDIS_ADDR=localhost:6379
# ── Logging ──
LOG_LEVEL=info
# ── MCP ──
# Bearer token guarding the SSE transport. Empty = unauthenticated (dev only).
MCP_BEARER_TOKEN=
# ── Grafana admin (optional) ──
GRAFANA_ADMIN_USER=admin
GRAFANA_ADMIN_PASSWORD=admin