We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ed6a5 commit 7d49f4eCopy full SHA for 7d49f4e
crates/test-utils/src/rpc.rs
@@ -187,6 +187,10 @@ fn next_url_inner(is_ws: bool, chain: NamedChain) -> String {
187
return "https://celo.drpc.org".to_string();
188
}
189
190
+ if matches!(chain, Arbitrum) {
191
+ return "https://arb1.arbitrum.io/rpc".to_string();
192
+ }
193
+
194
let reth_works = true;
195
let domain = if reth_works && matches!(chain, Mainnet) {
196
*(if is_ws { &WS_DOMAINS } else { &HTTP_DOMAINS }).next()
@@ -195,7 +199,6 @@ fn next_url_inner(is_ws: bool, chain: NamedChain) -> String {
199
let key = DRPC_KEYS.next();
200
let network = match chain {
197
201
Mainnet => "ethereum",
198
- Arbitrum => "arbitrum",
202
Polygon => "polygon",
203
Sepolia => "sepolia",
204
_ => "",
0 commit comments