forked from jbarnes-dev/verustickerapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv_format
More file actions
58 lines (48 loc) · 1.59 KB
/
env_format
File metadata and controls
58 lines (48 loc) · 1.59 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
# RENAME TO .env
# =============================================================================
# API CONFIGURATION
# =============================================================================
# Enable live endpoints (set to false for production)
ENABLE_LIVE_ENDPOINTS=false
BASE_URL=""
# =============================================================================
# RPC CONNECTION SETTINGS
# =============================================================================
# IMPORTANT: Replace these values with your actual daemon credentials
# These must match the settings in your respective .conf files
# NOTE: HOST defaults to 127.0.0.1, PORTs use chain-specific defaults in code
# VRSC (Verus) RPC Connection
VERUS_RPC_USER=
VERUS_RPC_PASSWORD=
# VARRR RPC Connection
VARRR_RPC_USER=
VARRR_RPC_PASSWORD=
# VDEX RPC Connection
VDEX_RPC_USER=
VDEX_RPC_PASSWORD=
# CHIPS RPC Connection
CHIPS_RPC_USER=
CHIPS_RPC_PASSWORD=
# =============================================================================
# CHAIN CONFIGURATIONS
# =============================================================================
# VRSC (Verus) Chain Configuration
VRSC_BLOCK_TIME_SECONDS=60
VRSC_BLOCKS_PER_DAY=1440
VRSC_NAME=Verus
VRSC_MIN_NATIVE_TOKENS=1000
# VARRR Chain Configuration
VARRR_BLOCK_TIME_SECONDS=60
VARRR_BLOCKS_PER_DAY=1440
VARRR_NAME=vARRR
VARRR_MIN_NATIVE_TOKENS=5000
# VDEX Chain Configuration
VDEX_BLOCK_TIME_SECONDS=60
VDEX_BLOCKS_PER_DAY=1440
VDEX_NAME=vDEX
VDEX_MIN_NATIVE_TOKENS=2000
# CHIPS Chain Configuration
CHIPS_BLOCK_TIME_SECONDS=10
CHIPS_BLOCKS_PER_DAY=8640
CHIPS_NAME=CHIPS
CHIPS_MIN_NATIVE_TOKENS=20000