-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.local.example
More file actions
72 lines (55 loc) · 2.27 KB
/
.env.local.example
File metadata and controls
72 lines (55 loc) · 2.27 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ==================== Sentry Error Tracking ====================
# DSN from Sentry project settings (required for error reporting)
NEXT_PUBLIC_SENTRY_DSN=
# Optional runtime controls:
# - leave unset to auto-enable when DSN exists
# - set to "false" to force-disable
NEXT_PUBLIC_SENTRY_ENABLED=
# Set to "true" to print Sentry SDK debug logs in console/server logs
NEXT_PUBLIC_SENTRY_DEBUG=
# For source map uploads (optional but recommended)
SENTRY_ORG=
SENTRY_PROJECT=
SENTRY_AUTH_TOKEN=
# Optional server-only DSN override (falls back to NEXT_PUBLIC_SENTRY_DSN)
SENTRY_DSN=
# ==================== Analytics ====================
NEXT_PUBLIC_GOOGLE_ANALYTICS_ID=
NEXT_PUBLIC_REOWN_PROJECT_ID=
ENVIRONMENT=
NEXT_PUBLIC_INFURA_API_KEY=
# ==================== RPC Settings ====================
# RPC Priority: Set to "ALCHEMY" to prioritize Alchemy API when both are available
# Default (or any other value): Prioritizes individual network RPCs first
NEXT_PUBLIC_RPC_PRIORITY=ALCHEMY
# Must set either NEXT_PUBLIC_ALCHEMY_API_KEY or individual RPC URLS for all networks
# Alchemy API Key for all networks enabled in Alchemy project settings
NEXT_PUBLIC_ALCHEMY_API_KEY=
# Individual RPC URLs
NEXT_PUBLIC_ETHEREUM_RPC=
NEXT_PUBLIC_OPTIMISM_RPC=
NEXT_PUBLIC_BASE_RPC=
NEXT_PUBLIC_POLYGON_RPC=
NEXT_PUBLIC_UNICHAIN_RPC=
NEXT_PUBLIC_ARBITRUM_RPC=
NEXT_PUBLIC_HYPEREVM_RPC=
NEXT_PUBLIC_MONAD_RPC=
# Set to "false" locally to skip RPC historical-rate fallback when Morpho API rolling rates fail.
NEXT_PUBLIC_ENABLE_MARKET_RATE_RPC_FALLBACK=true
# ==================== End of RPC Settings ====================
NEXT_PUBLIC_THEGRAPH_API_KEY=
# Used for balance API
ALCHEMY_API_KEY=
# used for getting block
ETHERSCAN_API_KEY=
# ==================== External Data API ====================
# Required in production now that Vercel data-route fallbacks are removed.
# Single required base URL for both metrics and token metadata.
NEXT_PUBLIC_DATA_API_BASE_URL=
# ==================== Oracle Metadata ====================
# Base URL for oracle metadata Gist (without trailing slash)
# Example: https://gist.githubusercontent.com/username/gist-id/raw
NEXT_PUBLIC_ORACLE_GIST_BASE_URL=
# ==================== UI Lab ====================
# Enable dev-only component playground route at /ui-lab/*
NEXT_PUBLIC_ENABLE_UI_LAB=