-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
56 lines (38 loc) · 3.05 KB
/
Copy path.env.example
File metadata and controls
56 lines (38 loc) · 3.05 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
56
# ── Required ──────────────────────────────────────────────────────────────────
# Starknet JSON-RPC endpoint (http or https)
APP_RPC_URL=https://api.zan.top/public/starknet-mainnet/rpc/v0_10
# ── Optional: WebSocket ───────────────────────────────────────────────────────
# WebSocket endpoint for live new-block subscriptions (falls back to polling)
# APP_WS_URL=ws://localhost:9545/ws
# ── Optional: Pathfinder query service ───────────────────────────────────────
# URL of a running pf-query instance for fast nonce history (see crates/pf-query)
# APP_PATHFINDER_SERVICE_URL=http://localhost:8234
# ── Optional: API keys ────────────────────────────────────────────────────────
# Voyager API key — enriches address labels (paid API, optional luxury feature)
# When set: fetches contract names/types on address lookup, cached locally 24h
# Status bar shows green when connected, labels appear with ⬡ marker
# VOYAGER_API_KEY=
# Dune Analytics API key — enables reverted-tx detection and contract call history
# DUNE_API_KEY=
# Mark dynamic Dune queries as private (default: true). Set to false to dodge
# the per-account private-query quota when it's exhausted; archive-on-finish
# cleanup still runs either way, so the queries stay temporary.
# DUNE_PRIVATE_QUERIES=true
# ── Labels & registry ─────────────────────────────────────────────────────────
# Path to user-defined labels file (default: labels.toml in the working directory)
# APP_USER_LABELS=labels.toml
# Path to privacy-pool viewing keys file. Held separately from labels.toml
# because the keys are SECRETS — do not commit. Default: viewing_keys.toml in
# the working directory (or ~/.config/snbeat/viewing_keys.toml for global installs).
# APP_VIEWING_KEYS=viewing_keys.toml
# ── Logging ───────────────────────────────────────────────────────────────────
# Log level: trace | debug | info | warn | error (default: info)
# APP_LOG_LEVEL=info
# Directory for log files (default: ~/.config/snbeat/logs)
# APP_LOG_DIR=
# ── pf-query service (crates/pf-query) ───────────────────────────────────────
# These variables are used when running the pf-query binary, not snbeat itself.
# Path to the Pathfinder SQLite database
# PF_DB_PATH=/var/lib/pathfinder/pathfinder.db
# Port the pf-query HTTP service listens on (default: 8234)
# PF_PORT=8234