-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
64 lines (54 loc) · 3.13 KB
/
env.example
File metadata and controls
64 lines (54 loc) · 3.13 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
### Validator Configuration
VALIDATOR_ADDRESS=HexAddress
BROADCASTER_ADDRESS=axelarXXXXXXXXXXXXXXXXXXXXXXXXXXXX
AMPD_ADDRESS=axelarXXXXXXXXXXXXXXXXXXXXXXXXXXXX
VALIDATOR_MONIKER="My Validator"
CHAIN_ID=axelar-dojo-1
### RPC Node Configuration
RPC_ENDPOINT=http://IP:PORT
AXELAR_API_ENDPOINT=http://IP:PORT
### Chain Monitoring
# List of EVM chains to monitor (comma-separated)
# If not specified, all mainnet chains will be checked by default
# ethereum,binance,polygon,avalanche,fantom,moonbeam,arbitrum,optimism,base,mantle,celo,kava,filecoin,linea,centrifuge,scroll,immutable,fraxtal,blast
EVM_SUPPORTED_CHAINS=
# List of AMPD chains to monitor (comma-separated)
# If not specified, will monitor
# flow,stellar,sui,xrpl,xrpl-evm
AMPD_SUPPORTED_CHAINS=
### Alert Configuration
# Block and Heartbeat Alerts
#ALERT_NO_NEW_BLOCK_DELAY: delay in minutes with no new block before sending alarm.
#ALERT_CONSECUTIVE_BLOCKS_THRESHOLD: Triggers an alert if your validator misses this number of consecutive blocks.
#ALERT_CONSECUTIVE_HEARTBEATS_THRESHOLD: Triggers an alert if your validator misses this number of consecutive heartbeats.
#ALERT_SIGN_RATE_THRESHOLD: Triggers an alert if your validator's block signing rate falls below this percentage. The rate is calculated over the last 35,000 blocks.
#ALERT_HEARTBEAT_RATE_THRESHOLD: Triggers an alert if your validator's heartbeat success rate falls below this percentage. The rate is calculated over the last 700 heartbeats.
ALERT_NO_NEW_BLOCK_DELAY=2
ALERT_CONSECUTIVE_BLOCKS_THRESHOLD=5
ALERT_CONSECUTIVE_HEARTBEATS_THRESHOLD=3
ALERT_SIGN_RATE_THRESHOLD=98.5
ALERT_HEARTBEAT_RATE_THRESHOLD=98.0
# Alert configuration - EVM and AMPD
#ALERT_CONSECUTIVE_EVM_VOTES_THRESHOLD: Triggers an alert if your validator misses this number of consecutive EVM votes.
#ALERT_EVM_VOTE_RATE_THRESHOLD: Triggers an alert if your validator's EVM vote success rate falls below this percentage. The rate is calculated over the last 200 EVM votes.
#ALERT_CONSECUTIVE_AMPD_VOTES_THRESHOLD: Triggers an alert if your AMPD misses this number of consecutive votes.
#ALERT_AMPD_VOTE_RATE_THRESHOLD: Triggers an alert if your AMPD vote success rate falls below this percentage. The rate is calculated over the last 200 AMPD votes.
#ALERT_CONSECUTIVE_AMPD_SIGNINGS_THRESHOLD: Triggers an alert if your AMPD misses this number of consecutive signings.
#ALERT_AMPD_SIGNING_RATE_THRESHOLD`: Triggers an alert if your AMPD signing success rate falls below this percentage. The rate is calculated over the last 200 AMPD signings.
ALERT_CONSECUTIVE_EVM_VOTES_THRESHOLD=5
ALERT_EVM_VOTE_RATE_THRESHOLD=98.0
ALERT_CONSECUTIVE_AMPD_VOTES_THRESHOLD=5
ALERT_AMPD_VOTE_RATE_THRESHOLD=98.0
ALERT_CONSECUTIVE_AMPD_SIGNINGS_THRESHOLD=5
ALERT_AMPD_SIGNING_RATE_THRESHOLD=98.0
# Discord notification configuration
DISCORD_ALERTS_ENABLED=false
DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/your-webhook-url
# Telegram notification configuration
TELEGRAM_ALERTS_ENABLED=false
TELEGRAM_BOT_TOKEN=your-bot-token
TELEGRAM_CHAT_ID=your-chat-id
# BackendServer configuration
PORT=3001
# Backend Server URL for frontend -> backend connections
NEXT_PUBLIC_SERVER_URL=http://YOUR_SERVER_IP:3001