37 lines
728 B
TOML
37 lines
728 B
TOML
[server]
|
|
rpc_port = 8545
|
|
|
|
[backend]
|
|
response_timeout_seconds = 1
|
|
|
|
[redis]
|
|
url = "$REDIS_URL"
|
|
namespace = "proxyd"
|
|
|
|
[cache]
|
|
enabled = true
|
|
|
|
[backends]
|
|
[backends.good]
|
|
rpc_url = "$GOOD_BACKEND_RPC_URL"
|
|
ws_url = "$GOOD_BACKEND_RPC_URL"
|
|
|
|
[backend_groups]
|
|
[backend_groups.main]
|
|
backends = ["good"]
|
|
|
|
[rpc_method_mappings]
|
|
eth_chainId = "main"
|
|
net_version = "main"
|
|
eth_getBlockByNumber = "main"
|
|
eth_blockNumber = "main"
|
|
eth_call = "main"
|
|
eth_getBlockTransactionCountByHash = "main"
|
|
eth_getUncleCountByBlockHash = "main"
|
|
eth_getBlockByHash = "main"
|
|
eth_getTransactionByHash = "main"
|
|
eth_getTransactionByBlockHashAndIndex = "main"
|
|
eth_getUncleByBlockHashAndIndex = "main"
|
|
eth_getTransactionReceipt = "main"
|
|
debug_getRawReceipts = "main"
|