29 lines
445 B
TOML
29 lines
445 B
TOML
whitelist_error_message = "rpc method is not whitelisted"
|
|
|
|
ws_backend_group = "main"
|
|
|
|
ws_method_whitelist = [
|
|
"eth_subscribe",
|
|
"eth_accounts"
|
|
]
|
|
|
|
[server]
|
|
rpc_port = 8545
|
|
ws_port = 8546
|
|
|
|
[backend]
|
|
response_timeout_seconds = 1
|
|
|
|
[backends]
|
|
[backends.good]
|
|
rpc_url = "$GOOD_BACKEND_RPC_URL"
|
|
ws_url = "$GOOD_BACKEND_RPC_URL"
|
|
max_ws_conns = 1
|
|
|
|
[backend_groups]
|
|
[backend_groups.main]
|
|
backends = ["good"]
|
|
|
|
[rpc_method_mappings]
|
|
eth_chainId = "main"
|