-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 865 Bytes
/
.env.example
File metadata and controls
29 lines (23 loc) · 865 Bytes
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
# Verinode Environment Configuration
# Server Settings
PORT=4000
NODE_ENV=development
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001,http://localhost:4000
REQUEST_SIZE_LIMIT=10mb
# Blockchain Settings (RPC URLs)
ETHEREUM_RPC_URL=https://mainnet.infura.io/v3/YOUR_PROJECT_ID
ETHEREUM_BRIDGE_ADDRESS=0x1234567890123456789012345678901234567890
POLYGON_RPC_URL=https://polygon-rpc.com
POLYGON_BRIDGE_ADDRESS=0x1234567890123456789012345678901234567890
BSC_RPC_URL=https://bsc-dataseed.binance.org
BSC_BRIDGE_ADDRESS=0x1234567890123456789012345678901234567890
# Rate Limit Settings (max requests per window)
RATE_LIMIT_STRICT=100
RATE_LIMIT_AUTH=5
RATE_LIMIT_API=60
RATE_LIMIT_UPLOAD=10
# Feature Flags (true/false)
FEATURE_GRAPHQL_PLAYGROUND=true
FEATURE_GRAPHQL_INTROSPECTION=true
FEATURE_REAL_TIME_SUBSCRIPTIONS=true
FEATURE_CROSS_CHAIN_BRIDGE=true