riftenlabs-indexer/internal/config_specification.toml
Dagur Valberg Johannsson 7ad0303209
Add WebSocket support
2026-02-03 09:39:12 +01:00

17 lines
621 B
TOML

[[param]]
name = "network"
type = "String"
doc = "Network to use: 'mainnet' or 'chipnet' (default: mainnet)"
default = "\"mainnet\".to_string()"
[[param]]
name = "rostrum_addr"
type = "String"
doc = "Rostrum/Electrum server address. Supports tcp://host:port, ssl://host:port, ws://host:port, wss://host:port; if no scheme is given, tcp:// is assumed. If not specified, defaults to 127.0.0.1:50001 for mainnet or 127.0.0.1:64001 for chipnet"
default = "\"\".to_string()"
[[param]]
name = "serve_during_ibd"
type = "bool"
doc = "Allow serving API requests during initial block download (for debugging)"
default = "false"