forked from SOL-Strategies/solana-validator-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
19 lines (15 loc) · 824 Bytes
/
config.example.yaml
File metadata and controls
19 lines (15 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Global configuration
port: 9090
# RPC URLs for different networks (at least one required)
rpc_url_mainnet: "https://api.mainnet-beta.solana.com"
#rpc_url_testnet: "https://api.testnet.solana.com" # Optional
# rpc_url_devnet: "https://api.devnet.solana.com" # Optional
# Validator accounts for mainnet (at least one validator configuration required)
mainnet_vote_account: "YOUR_MAINNET_VOTE_ACCOUNT_PUBKEY"
mainnet_identity_account: "YOUR_MAINNET_IDENTITY_ACCOUNT_PUBKEY"
# Optional: Additional validators for other networks
testnet_vote_account: "YOUR_TESTNET_VOTE_ACCOUNT_PUBKEY"
testnet_identity_account: "YOUR_TESTNET_IDENTITY_ACCOUNT_PUBKEY"
# Optional: Additional validators for other networks
devnet_vote_account: "YOUR_DEVNET_VOTE_ACCOUNT_PUBKEY"
devnet_identity_account: "YOUR_DEVNET_IDENTITY_ACCOUNT_PUBKEY"