web3-proxy/config/example.toml

157 lines
5.0 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-11-13 21:39:49 +03:00
# a database is optional. it is used for user authentication and accounting
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-11-16 11:30:32 +03:00
# development runs cargo commands on the host and so uses "mysql://root:dev_web3_proxy@127.0.0.1:13306/dev_web3_proxy" for db_url
# production runs inside docker and so uses "mysql://root:web3_proxy@db:3306/web3_proxy" for db_url
2022-11-13 21:39:49 +03:00
db_url = "mysql://root:dev_web3_proxy@127.0.0.1:13306/dev_web3_proxy"
# read-only replica useful when running the proxy in multiple regions
db_replica_url = "mysql://root:dev_web3_proxy@127.0.0.1:13306/dev_web3_proxy"
2023-03-03 17:58:45 +03:00
kafka_urls = "127.0.0.1:19092"
2023-04-20 01:22:27 +03:00
kafka_protocol = "plaintext"
2023-03-03 17:58:45 +03:00
# a timeseries database is optional. it is used for making pretty graphs
influxdb_host = "http://127.0.0.1:18086"
influxdb_org = "dev_org"
influxdb_token = "dev_web3_proxy_auth_token"
influxdb_bucketname = "web3_proxy"
# thundering herd protection
# only mark a block as the head block if the sum of their soft limits is greater than or equal to min_sum_soft_limit
2022-10-21 23:59:05 +03:00
min_sum_soft_limit = 2_000
# only mark a block as the head block if the number of servers with it is great than or equal to min_synced_rpcs
2022-08-27 05:13:36 +03:00
min_synced_rpcs = 2
2022-11-13 21:39:49 +03:00
# redis is optional. it is used for rate limits set by `hard_limit`
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
2022-11-16 11:30:32 +03:00
# development runs cargo commands on the host and so uses "redis://127.0.0.1:16379/" for volatile_redis_url
# production runs inside docker and so uses "redis://redis:6379/" for volatile_redis_url
2022-11-13 23:29:33 +03:00
volatile_redis_url = "redis://127.0.0.1:16379/"
2022-11-16 11:30:32 +03:00
# redirect_public_url is optional
redirect_public_url = "https://llamanodes.com/public-rpc"
2022-11-16 11:30:32 +03:00
# redirect_rpc_key_url is optional
# it only does something if db_url is set
2022-11-30 00:32:40 +03:00
redirect_rpc_key_url = "https://llamanodes.com/dashboard/keys?key={{rpc_key_id}}"
2022-11-13 21:39:49 +03:00
# sentry is optional. it is used for browsing error logs
# sentry_url = "https://SENTRY_KEY_A.ingest.sentry.io/SENTRY_KEY_B"
2022-11-04 01:16:27 +03:00
# public limits are when no key is used. these are instead grouped by ip
2022-10-25 07:34:24 +03:00
# 0 = block all public requests
public_max_concurrent_requests = 3
2022-10-19 02:31:40 +03:00
# 0 = block all public requests
public_requests_per_period = 200
2022-11-28 22:59:42 +03:00
login_domain = "llamanodes.com"
# 10GB of cache
2022-10-21 23:59:05 +03:00
response_cache_max_bytes = 10_000_000_000
2022-11-13 21:39:49 +03:00
# allowed_origin_requests_per_period changes the min_sum_soft_limit for requests with the specified (AND SPOOFABLE) Origin header
# origins not in the list for requests without an rpc_key will use public_requests_per_period instead
[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]
2022-11-14 00:05:37 +03:00
display_name = "Ankr"
http_url = "https://rpc.ankr.com/eth"
2022-06-25 05:24:31 +03:00
soft_limit = 1_000
2023-01-04 23:07:53 +03:00
tier = 0
2022-05-18 19:35:06 +03:00
2022-06-25 05:24:31 +03:00
[balanced_rpcs.cloudflare]
2022-11-14 00:05:37 +03:00
display_name = "Cloudflare"
http_url = "https://cloudflare-eth.com"
2022-06-25 05:24:31 +03:00
soft_limit = 1_000
2023-01-04 23:07:53 +03:00
tier = 1
2022-05-12 22:58:26 +03:00
2022-06-25 05:24:31 +03:00
[balanced_rpcs.blastapi]
2022-11-14 00:05:37 +03:00
display_name = "Blast"
http_url = "https://eth-mainnet.public.blastapi.io"
2022-06-25 05:24:31 +03:00
soft_limit = 1_000
2023-01-04 23:07:53 +03:00
tier = 1
2022-06-25 05:24:31 +03:00
2022-11-04 07:40:39 +03:00
[balanced_rpcs.mycryptoapi]
2022-11-14 00:05:37 +03:00
display_name = "MyCrypto"
2022-11-04 07:40:39 +03:00
disabled = true
http_url = "https://api.mycryptoapi.com/eth"
2022-11-04 07:40:39 +03:00
soft_limit = 1_000
2023-01-04 23:07:53 +03:00
tier = 2
2022-06-25 05:24:31 +03:00
[balanced_rpcs.pokt-v1]
2022-11-14 00:05:37 +03:00
display_name = "Pokt #1"
http_url = "https://eth-mainnet.gateway.pokt.network/v1/5f3453978e354ab992c4da79"
2022-08-27 05:13:36 +03:00
soft_limit = 500
2023-01-04 23:07:53 +03:00
tier = 2
2022-06-25 05:24:31 +03:00
[balanced_rpcs.pokt]
2022-11-14 00:05:37 +03:00
display_name = "Pokt #2"
http_url = "https://eth-rpc.gateway.pokt.network"
2022-08-27 05:13:36 +03:00
soft_limit = 500
2023-01-04 23:07:53 +03:00
tier = 3
2022-06-25 05:24:31 +03:00
[balanced_rpcs.linkpool]
2022-11-14 00:05:37 +03:00
display_name = "Linkpool"
http_url = "https://main-rpc.linkpool.io"
2022-08-27 05:13:36 +03:00
soft_limit = 500
2023-01-04 23:07:53 +03:00
tier = 4
[balanced_rpcs.runonflux]
display_name = "Run on Flux (light)"
http_url = "https://ethereumnodelight.app.runonflux.io"
2023-01-04 23:07:53 +03:00
soft_limit = 1_000
tier = 5
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]
2022-11-14 00:05:37 +03:00
display_name = "Linkpool (light)"
2022-11-04 07:40:39 +03:00
disabled = true
http_url = "https://main-light.eth.linkpool.io"
2022-11-04 07:40:39 +03:00
soft_limit = 100
2023-01-04 23:07:53 +03:00
tier = 5
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-11-14 00:05:37 +03:00
display_name = "Eden network"
http_url = "https://api.edennetwork.io/v1/"
2022-06-25 05:24:31 +03:00
soft_limit = 1_805
2023-01-04 23:07:53 +03:00
tier = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.eden_beta]
disabled = true
2022-11-14 00:05:37 +03:00
display_name = "Eden network beta"
http_url = "https://api.edennetwork.io/v1/beta"
2022-06-25 05:24:31 +03:00
soft_limit = 5_861
2023-01-04 23:07:53 +03:00
tier = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.ethermine]
disabled = true
2022-11-14 00:05:37 +03:00
display_name = "Ethermine"
http_url = "https://rpc.ethermine.org"
2022-06-25 05:24:31 +03:00
soft_limit = 5_861
2023-01-04 23:07:53 +03:00
tier = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.flashbots]
disabled = true
2022-11-14 00:05:37 +03:00
display_name = "Flashbots Fast"
http_url = "https://rpc.flashbots.net/fast"
2022-10-21 23:59:05 +03:00
soft_limit = 7_074
2023-01-04 23:07:53 +03:00
tier = 0
2022-06-25 05:24:31 +03:00
2022-10-19 02:27:33 +03:00
[private_rpcs.securerpc]
disabled = true
2022-11-14 00:05:37 +03:00
display_name = "SecureRPC"
http_url = "https://gibson.securerpc.com/v1"
2022-10-21 23:59:05 +03:00
soft_limit = 4_560
2023-01-04 23:07:53 +03:00
tier = 0