Skip to content

Commit 7d49f4e

Browse files
authored
chore: switch rpc url arbitrum (#12314)
1 parent e4ed6a5 commit 7d49f4e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/test-utils/src/rpc.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ fn next_url_inner(is_ws: bool, chain: NamedChain) -> String {
187187
return "https://celo.drpc.org".to_string();
188188
}
189189

190+
if matches!(chain, Arbitrum) {
191+
return "https://arb1.arbitrum.io/rpc".to_string();
192+
}
193+
190194
let reth_works = true;
191195
let domain = if reth_works && matches!(chain, Mainnet) {
192196
*(if is_ws { &WS_DOMAINS } else { &HTTP_DOMAINS }).next()
@@ -195,7 +199,6 @@ fn next_url_inner(is_ws: bool, chain: NamedChain) -> String {
195199
let key = DRPC_KEYS.next();
196200
let network = match chain {
197201
Mainnet => "ethereum",
198-
Arbitrum => "arbitrum",
199202
Polygon => "polygon",
200203
Sepolia => "sepolia",
201204
_ => "",

0 commit comments

Comments
 (0)