web3-proxy/config/example.toml

114 lines
2.8 KiB
TOML
Raw Normal View History

2022-10-19 02:31:40 +03:00
[app]
2022-05-12 21:49:57 +03:00
chain_id = 1
2022-09-03 05:59:30 +03:00
# TODO: how do we find the optimal db_max_connections? too high actually ends up being slower
2022-09-02 23:16:20 +03:00
db_max_connections = 99
2022-10-19 02:27:33 +03:00
db_url = "mysql://root:dev_web3_proxy@dev-db:3306/dev_web3_proxy"
2022-10-21 23:59:05 +03:00
min_sum_soft_limit = 2_000
2022-08-27 05:13:36 +03:00
min_synced_rpcs = 2
2022-09-03 05:59:30 +03:00
# TODO: how do we find the optimal redis_max_connections? too high actually ends up being slower
volatile_redis_max_connections = 300
volatile_redis_url = "redis://dev-vredis:6379/"
2022-08-12 22:07:14 +03:00
redirect_public_url = "https://llamanodes.com/free-rpc-stats"
2022-09-05 09:29:27 +03:00
redirect_user_url = "https://llamanodes.com/user-rpc-stats/{{user_id}}"
2022-11-04 01:16:27 +03:00
sentry_url = "https://YOURKEYA.ingest.sentry.io/YOURKEYB"
2022-10-25 07:34:24 +03:00
# 0 = block all public requests
public_max_concurrent_requests = 5
2022-10-19 02:31:40 +03:00
# 0 = block all public requests
public_requests_per_period = 0
2022-07-22 22:30:39 +03:00
# 1GB of cache
2022-10-21 23:59:05 +03:00
response_cache_max_bytes = 10_000_000_000
[app.allowed_origin_requests_per_period]
2022-10-22 00:12:05 +03:00
"https://chainlist.org" = 1_000
2022-05-12 21:49:57 +03:00
2022-05-13 23:50:11 +03:00
[balanced_rpcs]
2022-05-06 04:40:43 +03:00
2022-06-25 05:24:31 +03:00
[balanced_rpcs.ankr]
url = "https://rpc.ankr.com/eth"
soft_limit = 1_000
2022-08-08 22:57:54 +03:00
weight = 0
2022-05-18 19:35:06 +03:00
2022-06-25 05:24:31 +03:00
[balanced_rpcs.cloudflare]
url = "https://cloudflare-eth.com"
soft_limit = 1_000
2022-08-08 22:57:54 +03:00
weight = 0
2022-05-12 22:58:26 +03:00
2022-06-25 05:24:31 +03:00
[balanced_rpcs.blastapi]
url = "https://eth-mainnet.public.blastapi.io"
soft_limit = 1_000
2022-08-08 22:57:54 +03:00
weight = 0
2022-06-25 05:24:31 +03:00
2022-11-04 07:40:39 +03:00
[balanced_rpcs.mycryptoapi]
disabled = true
url = "https://api.mycryptoapi.com/eth"
soft_limit = 1_000
weight = 0
2022-06-25 05:24:31 +03:00
[balanced_rpcs.runonflux]
url = "https://ethereumnodelight.app.runonflux.io"
soft_limit = 1_000
2022-08-08 22:57:54 +03:00
weight = 1
2022-06-25 05:24:31 +03:00
[balanced_rpcs.pokt-v1]
url = "https://eth-mainnet.gateway.pokt.network/v1/5f3453978e354ab992c4da79"
2022-08-27 05:13:36 +03:00
soft_limit = 500
2022-08-08 22:57:54 +03:00
weight = 1
2022-06-25 05:24:31 +03:00
[balanced_rpcs.pokt]
url = "https://eth-rpc.gateway.pokt.network"
2022-08-27 05:13:36 +03:00
soft_limit = 500
2022-08-08 22:57:54 +03:00
weight = 1
2022-06-25 05:24:31 +03:00
[balanced_rpcs.linkpool]
url = "https://main-rpc.linkpool.io"
2022-08-27 05:13:36 +03:00
soft_limit = 500
2022-08-08 22:57:54 +03:00
weight = 2
2022-05-12 04:38:27 +03:00
2022-08-27 05:13:36 +03:00
# load balanced light nodes are not very reliable
2022-11-04 07:40:39 +03:00
[balanced_rpcs.linkpool-light]
disabled = true
url = "https://main-light.eth.linkpool.io"
soft_limit = 100
weight = 3
2022-08-27 05:13:36 +03:00
[private_rpcs]
2022-06-25 05:24:31 +03:00
2022-10-06 23:21:16 +03:00
# these worked well on ETH 1.0, but 2.0 ends up not working as well. we will re-assess as more validators turn on private transactions
2022-10-19 02:27:33 +03:00
[private_rpcs.eden]
disabled = true
2022-06-25 05:24:31 +03:00
url = "https://api.edennetwork.io/v1/"
soft_limit = 1_805
2022-08-11 05:56:28 +03:00
weight = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.eden_beta]
disabled = true
2022-06-25 05:24:31 +03:00
url = "https://api.edennetwork.io/v1/beta"
soft_limit = 5_861
2022-08-11 05:56:28 +03:00
weight = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.ethermine]
disabled = true
2022-06-25 05:24:31 +03:00
url = "https://rpc.ethermine.org"
soft_limit = 5_861
2022-08-11 05:56:28 +03:00
weight = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.flashbots]
disabled = true
2022-07-16 07:54:05 +03:00
url = "https://rpc.flashbots.net/fast"
2022-10-21 23:59:05 +03:00
soft_limit = 7_074
2022-08-11 05:56:28 +03:00
weight = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.securerpc]
disabled = true
2022-06-25 05:24:31 +03:00
url = "https://gibson.securerpc.com/v1"
2022-10-21 23:59:05 +03:00
soft_limit = 4_560
2022-08-11 05:56:28 +03:00
weight = 0