-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
32 lines (25 loc) · 1.5 KB
/
Copy path.env
File metadata and controls
32 lines (25 loc) · 1.5 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
# Default environment for the app. Loaded automatically by Next.js for both
# `next dev` and `next build`. To override any of these locally, create a
# `.env.local` file (gitignored) with the variables you want to change.
# Target Ethereum network for the app's wagmi config.
# Use any chain name supported by wagmi/chains (e.g. mainnet, sepolia).
NEXT_PUBLIC_NETWORK=mainnet
# Wagmi polling interval (ms).
NEXT_PUBLIC_RPC_POLLING_INTERVAL=10000
# Ethscriptions service URLs. All of these have to be set; the defaults below
# point at the official Ethscriptions infrastructure.
NEXT_PUBLIC_V2_API_BASE_URI=https://api-v2.ethscriptions.com
NEXT_PUBLIC_EXPLORER_BASE_URI=https://explorer.ethscriptions.com
NEXT_PUBLIC_DOCS_BASE_URI=https://docs.ethscriptions.com
NEXT_PUBLIC_WEBSITE_BASE_URI=https://ethscriptions.com
# Ethereum RPC endpoints (used by wagmi and the on-chain ETH price fetch).
NEXT_PUBLIC_MAINNET_RPC_URL=https://ethereum-rpc.publicnode.com
NEXT_PUBLIC_SEPOLIA_RPC_URL=https://ethereum-sepolia-rpc.publicnode.com
# Ethscriptions L2 mainnet RPC. Only used by scripts/refresh-collections.py
# (the Python maintenance script that refreshes data/collections.json).
ETHSCRIPTIONS_MAINNET_RPC_URL=https://mainnet.ethscriptions.com
# WalletConnect Cloud project ID. Get one at https://cloud.reown.com.
# Required for mobile/QR wallets; without it the app falls back to injected wallets only.
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=
# Set to "true" to enable Vercel Web Analytics.
NEXT_PUBLIC_ENABLE_VERCEL_ANALYTICS=false