ethers_providers/rpc/transports/
rw.rs1use crate::{errors::ProviderError, JsonRpcClient};
5use async_trait::async_trait;
6use serde::{de::DeserializeOwned, Serialize};
7use thiserror::Error;
8
9#[derive(Debug, Clone)]
18pub struct RwClient<Read, Write> {
19 r: Read,
21 w: Write,
23}
24
25impl<Read, Write> RwClient<Read, Write> {
26 pub fn new(r: Read, w: Write) -> RwClient<Read, Write> {
40 Self { r, w }
41 }
42
43 pub fn read_client(&self) -> &Read {
45 &self.r
46 }
47
48 pub fn write_client(&self) -> &Write {
50 &self.w
51 }
52
53 pub fn transpose(self) -> RwClient<Write, Read> {
55 let RwClient { r, w } = self;
56 RwClient::new(w, r)
57 }
58
59 pub fn split(self) -> (Read, Write) {
61 let RwClient { r, w } = self;
62 (r, w)
63 }
64}
65
66#[derive(Error, Debug)]
67pub enum RwClientError<Read, Write>
69where
70 Read: JsonRpcClient,
71 <Read as JsonRpcClient>::Error: crate::RpcError + Sync + Send + 'static,
72 Write: JsonRpcClient,
73 <Write as JsonRpcClient>::Error: crate::RpcError + Sync + Send + 'static,
74{
75 #[error(transparent)]
77 Read(Read::Error),
78 #[error(transparent)]
79 Write(Write::Error),
81}
82
83impl<Read, Write> crate::RpcError for RwClientError<Read, Write>
84where
85 Read: JsonRpcClient,
86 <Read as JsonRpcClient>::Error: crate::RpcError + Sync + Send + 'static,
87 Write: JsonRpcClient,
88 <Write as JsonRpcClient>::Error: crate::RpcError + Sync + Send + 'static,
89{
90 fn as_error_response(&self) -> Option<&super::JsonRpcError> {
91 match self {
92 RwClientError::Read(e) => e.as_error_response(),
93 RwClientError::Write(e) => e.as_error_response(),
94 }
95 }
96
97 fn as_serde_error(&self) -> Option<&serde_json::Error> {
98 match self {
99 RwClientError::Read(e) => e.as_serde_error(),
100 RwClientError::Write(e) => e.as_serde_error(),
101 }
102 }
103}
104
105impl<Read, Write> From<RwClientError<Read, Write>> for ProviderError
106where
107 Read: JsonRpcClient + 'static,
108 <Read as JsonRpcClient>::Error: Sync + Send + 'static,
109 Write: JsonRpcClient + 'static,
110 <Write as JsonRpcClient>::Error: Sync + Send + 'static,
111{
112 fn from(src: RwClientError<Read, Write>) -> Self {
113 ProviderError::JsonRpcClientError(Box::new(src))
114 }
115}
116
117#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
118#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
119impl<Read, Write> JsonRpcClient for RwClient<Read, Write>
120where
121 Read: JsonRpcClient + 'static,
122 <Read as JsonRpcClient>::Error: Sync + Send + 'static,
123 Write: JsonRpcClient + 'static,
124 <Write as JsonRpcClient>::Error: Sync + Send + 'static,
125{
126 type Error = RwClientError<Read, Write>;
127
128 async fn request<T, R>(&self, method: &str, params: T) -> Result<R, Self::Error>
131 where
132 T: std::fmt::Debug + Serialize + Send + Sync,
133 R: DeserializeOwned + Send,
134 {
135 match method {
136 "eth_sendTransaction" | "eth_sendRawTransaction" => {
137 self.w.request(method, params).await.map_err(RwClientError::Write)
138 }
139 _ => self.r.request(method, params).await.map_err(RwClientError::Read),
140 }
141 }
142}