From 0d5424cf7d3a93132309a932892b6490677754be Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Tue, 3 May 2022 04:29:10 +0000 Subject: [PATCH] add prod config --- data/config/production.toml | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 data/config/production.toml diff --git a/data/config/production.toml b/data/config/production.toml new file mode 100644 index 00000000..ed78a28d --- /dev/null +++ b/data/config/production.toml @@ -0,0 +1,43 @@ +[config] +listen_port = 8445 + +[balanced_rpc_tiers] + +[balanced_rpc_tiers.0] + + [balanced_rpc_tiers.0.local_erigon] + url = "ws://127.0.0.1:8545" + soft_limit = 68_000 + + [balanced_rpc_tiers.0.local_geth] + url = "ws://127.0.0.1:8946" + soft_limit = 160_000 + +[balanced_rpc_tiers.1] + + [balanced_rpc_tiers.1.linkpool] + #linkpool is slow and often offline + url = "https://main-rpc.linkpool.io" + soft_limit = 4_779 + + [balanced_rpc_tiers.1.ankr] + url = "https://rpc.ankr.com/eth" + soft_limit = 23_967 + +[private_rpcs] + + [private_rpcs.eden] + url = "https://api.edennetwork.io/v1/" + soft_limit = 1_805 + + [private_rpcs.eden_beta] + url = "https://api.edennetwork.io/v1/beta" + soft_limit = 5_861 + + [private_rpcs.ethermine] + url = "https://rpc.ethermine.org" + soft_limit = 5_861 + + [private_rpcs.flashbots] + url = "https://rpc.flashbots.net" + soft_limit = 7074