2022-05-06 00:25:40 +03:00
|
|
|
use argh::FromArgs;
|
2022-07-23 02:26:04 +03:00
|
|
|
use derive_more::Constructor;
|
2022-06-14 08:43:28 +03:00
|
|
|
use ethers::prelude::{Block, TxHash};
|
2022-07-23 02:26:04 +03:00
|
|
|
use hashbrown::HashMap;
|
2022-05-05 22:07:09 +03:00
|
|
|
use serde::Deserialize;
|
|
|
|
use std::sync::Arc;
|
2022-06-29 22:15:05 +03:00
|
|
|
use tokio::sync::broadcast;
|
2022-05-05 22:07:09 +03:00
|
|
|
|
2022-06-16 05:53:37 +03:00
|
|
|
use crate::app::AnyhowJoinHandle;
|
|
|
|
use crate::connection::Web3Connection;
|
|
|
|
|
2022-07-22 08:11:26 +03:00
|
|
|
pub type BlockAndRpc = (Arc<Block<TxHash>>, Arc<Web3Connection>);
|
|
|
|
|
2022-05-22 02:34:05 +03:00
|
|
|
#[derive(Debug, FromArgs)]
|
2022-08-06 08:46:33 +03:00
|
|
|
/// Web3_proxy is a fast caching and load balancing proxy for web3 (Ethereum or similar) JsonRPC servers.
|
2022-05-06 00:25:40 +03:00
|
|
|
pub struct CliConfig {
|
2022-08-13 00:00:26 +03:00
|
|
|
/// path to a toml of rpc servers
|
|
|
|
#[argh(option, default = "\"./config/development.toml\".to_string()")]
|
|
|
|
pub config: String,
|
|
|
|
|
2022-05-06 00:25:40 +03:00
|
|
|
/// what port the proxy should listen on
|
2022-05-06 09:33:29 +03:00
|
|
|
#[argh(option, default = "8544")]
|
2022-05-18 23:28:00 +03:00
|
|
|
pub port: u16,
|
2022-05-06 00:25:40 +03:00
|
|
|
|
2022-08-13 00:00:26 +03:00
|
|
|
/// what port the proxy should expose prometheus stats on
|
|
|
|
#[argh(option, default = "8543")]
|
|
|
|
pub prometheus_port: u16,
|
|
|
|
|
2022-06-06 01:39:44 +03:00
|
|
|
/// number of worker threads. Defaults to the number of logical processors
|
2022-05-18 19:35:06 +03:00
|
|
|
#[argh(option, default = "0")]
|
2022-05-18 23:28:00 +03:00
|
|
|
pub workers: usize,
|
2022-05-06 00:25:40 +03:00
|
|
|
}
|
|
|
|
|
2022-05-22 02:34:05 +03:00
|
|
|
#[derive(Debug, Deserialize)]
|
2022-08-12 22:07:14 +03:00
|
|
|
pub struct TopConfig {
|
|
|
|
pub app: AppConfig,
|
2022-05-13 23:50:11 +03:00
|
|
|
pub balanced_rpcs: HashMap<String, Web3ConnectionConfig>,
|
2022-05-06 01:21:27 +03:00
|
|
|
pub private_rpcs: Option<HashMap<String, Web3ConnectionConfig>>,
|
2022-05-05 22:07:09 +03:00
|
|
|
}
|
|
|
|
|
2022-05-12 21:49:57 +03:00
|
|
|
/// shared configuration between Web3Connections
|
2022-05-22 02:34:05 +03:00
|
|
|
#[derive(Debug, Deserialize)]
|
2022-08-12 22:07:14 +03:00
|
|
|
pub struct AppConfig {
|
2022-07-19 07:21:32 +03:00
|
|
|
// TODO: better type for chain_id? max of `u64::MAX / 2 - 36` https://github.com/ethereum/EIPs/issues/2294
|
|
|
|
pub chain_id: u64,
|
2022-07-26 07:53:38 +03:00
|
|
|
pub db_url: Option<String>,
|
2022-08-21 11:18:57 +03:00
|
|
|
pub invite_code: Option<String>,
|
2022-07-22 22:30:39 +03:00
|
|
|
pub redis_url: Option<String>,
|
|
|
|
#[serde(default = "default_public_rate_limit_per_minute")]
|
2022-08-16 01:50:56 +03:00
|
|
|
pub public_rate_limit_per_minute: u64,
|
2022-07-22 22:30:39 +03:00
|
|
|
#[serde(default = "default_response_cache_max_bytes")]
|
|
|
|
pub response_cache_max_bytes: usize,
|
2022-08-12 22:07:14 +03:00
|
|
|
/// the stats page url for an anonymous user.
|
|
|
|
pub redirect_public_url: String,
|
|
|
|
/// the stats page url for a logged in user. it must contain "{user_id}"
|
|
|
|
pub redirect_user_url: String,
|
2022-07-22 22:30:39 +03:00
|
|
|
}
|
|
|
|
|
2022-08-16 01:50:56 +03:00
|
|
|
fn default_public_rate_limit_per_minute() -> u64 {
|
2022-07-22 22:30:39 +03:00
|
|
|
0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn default_response_cache_max_bytes() -> usize {
|
|
|
|
// TODO: default to some percentage of the system?
|
|
|
|
// 100 megabytes
|
|
|
|
10_usize.pow(8)
|
2022-05-12 21:49:57 +03:00
|
|
|
}
|
|
|
|
|
2022-07-23 02:26:04 +03:00
|
|
|
#[derive(Debug, Deserialize, Constructor)]
|
2022-05-05 22:07:09 +03:00
|
|
|
pub struct Web3ConnectionConfig {
|
|
|
|
url: String,
|
|
|
|
soft_limit: u32,
|
2022-08-16 01:50:56 +03:00
|
|
|
hard_limit: Option<u64>,
|
2022-08-08 22:57:54 +03:00
|
|
|
weight: u32,
|
2022-05-05 22:07:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Web3ConnectionConfig {
|
2022-05-12 08:54:27 +03:00
|
|
|
/// Create a Web3Connection from config
|
2022-05-17 20:15:18 +03:00
|
|
|
// #[instrument(name = "try_build_Web3ConnectionConfig", skip_all)]
|
2022-08-10 08:56:09 +03:00
|
|
|
#[allow(clippy::too_many_arguments)]
|
2022-06-14 08:43:28 +03:00
|
|
|
pub async fn spawn(
|
2022-05-05 22:07:09 +03:00
|
|
|
self,
|
2022-08-10 08:56:09 +03:00
|
|
|
name: String,
|
2022-08-16 01:50:56 +03:00
|
|
|
redis_pool: Option<redis_rate_limit::RedisPool>,
|
2022-07-19 07:21:32 +03:00
|
|
|
chain_id: u64,
|
|
|
|
http_client: Option<reqwest::Client>,
|
2022-06-29 22:15:05 +03:00
|
|
|
http_interval_sender: Option<Arc<broadcast::Sender<()>>>,
|
2022-07-22 08:11:26 +03:00
|
|
|
block_sender: Option<flume::Sender<BlockAndRpc>>,
|
2022-06-14 08:43:28 +03:00
|
|
|
tx_id_sender: Option<flume::Sender<(TxHash, Arc<Web3Connection>)>>,
|
|
|
|
) -> anyhow::Result<(Arc<Web3Connection>, AnyhowJoinHandle<()>)> {
|
2022-08-16 01:50:56 +03:00
|
|
|
let hard_limit = match (self.hard_limit, redis_pool) {
|
2022-07-25 22:03:19 +03:00
|
|
|
(None, None) => None,
|
|
|
|
(Some(hard_limit), Some(redis_client_pool)) => Some((hard_limit, redis_client_pool)),
|
|
|
|
(None, Some(_)) => None,
|
2022-07-26 07:53:38 +03:00
|
|
|
(Some(_hard_limit), None) => {
|
2022-07-25 22:03:19 +03:00
|
|
|
return Err(anyhow::anyhow!(
|
|
|
|
"no redis client pool! needed for hard limit"
|
|
|
|
))
|
|
|
|
}
|
|
|
|
};
|
2022-05-22 02:34:05 +03:00
|
|
|
|
2022-06-14 07:04:14 +03:00
|
|
|
Web3Connection::spawn(
|
2022-08-10 08:56:09 +03:00
|
|
|
name,
|
2022-05-12 21:49:57 +03:00
|
|
|
chain_id,
|
2022-05-05 22:07:09 +03:00
|
|
|
self.url,
|
|
|
|
http_client,
|
2022-06-29 22:15:05 +03:00
|
|
|
http_interval_sender,
|
2022-07-25 22:03:19 +03:00
|
|
|
hard_limit,
|
2022-05-05 22:07:09 +03:00
|
|
|
self.soft_limit,
|
2022-06-14 08:43:28 +03:00
|
|
|
block_sender,
|
|
|
|
tx_id_sender,
|
2022-06-29 22:15:05 +03:00
|
|
|
true,
|
2022-08-08 22:57:54 +03:00
|
|
|
self.weight,
|
2022-05-05 22:07:09 +03:00
|
|
|
)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
}
|