This repository was archived by the owner on Feb 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (33 loc) · 1.53 KB
/
.env.example
File metadata and controls
40 lines (33 loc) · 1.53 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
# Required for build-time data fetching
NEXT_PUBLIC_ASSISTANT_ADDRESS=0x...
NEXT_PUBLIC_UNIV3_STAKER_ADDRESS=0x1f98407aaB862CdDeF78Ed252D6f557aA5b0f00d
# Required for server operations
RPC_URL=https://your-rpc-endpoint.com
SUBGRAPH_URL=your-subgraph-url
ALCHEMY_BEARER=your-alchemy-api-key # Required for token price fetching
# CoinGecko API (Required for fetching token lists with "pnpm run fetch:tokens")
# Get your free Demo API key at: https://www.coingecko.com/api/pricing
# The Demo plan allows 10-50 calls/minute
COINGECKO_API_KEY=your-coingecko-demo-api-key
# Redis configuration (for leaderboard caching)
REDIS_URL=redis://localhost:6379
# Network configuration
# Supported chains:
# - 1 (Ethereum Mainnet) - Alchemy supported
# - 11155111 (Sepolia) - Alchemy supported
# - 998 (HyperEVM Testnet) - Requires RPC_URL
# - 999 (HyperEVM) - Requires RPC_URL
NEXT_PUBLIC_CHAIN_ID=1
# Public RPC URL for wallet network addition
# This is exposed to clients and used when wallets need to add the network
# Use public endpoints here (e.g., Infura, Alchemy public, or HyperEVM public RPC)
# Examples:
# - Ethereum: https://eth-mainnet.g.alchemy.com/v2/demo
# - Sepolia: https://eth-sepolia.g.alchemy.com/v2/demo
# - HyperEVM: https://rpc.hyperliquid.xyz/evm
NEXT_PUBLIC_RPC_URL=https://eth-mainnet.g.alchemy.com/v2/demo
# WebSocket server for real-time auction updates (optional)
# Run the websocket-server package: pnpm ws:dev
NEXT_PUBLIC_WEBSOCKET_URL=http://localhost:8080
# Skip environment validation (useful for Docker builds)
# SKIP_ENV_VALIDATION=true