Skip to content

Commit

Permalink
fix(providers): removing Aurora websocket from the Infura (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
geekbrother authored Jan 24, 2024
1 parent f38d8e3 commit 3b3dc64
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 33 deletions.
2 changes: 0 additions & 2 deletions SUPPORTED_CHAINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,4 @@ WebSocket RPC is not recommended for production use, and may be removed in the f
- Optimism Goerli (`eip155:420`)
- Arbitrum (`eip155:42161`)
- Arbitrum Goerli (`eip155:421613`)
- Aurora (`eip155:1313161554`)
- Aurora Testnet (`eip155:1313161555`)
- Zora (`eip155:7777777`)
15 changes: 0 additions & 15 deletions src/env/infura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,20 +162,5 @@ fn default_ws_supported_chains() -> HashMap<String, (String, Weight)> {
Weight::new(Priority::Normal).unwrap(),
),
),
// Aurora
(
"eip155:1313161554".into(),
(
"aurora-mainnet".into(),
Weight::new(Priority::Normal).unwrap(),
),
),
(
"eip155:1313161555".into(),
(
"aurora-testnet".into(),
Weight::new(Priority::Normal).unwrap(),
),
),
])
}
16 changes: 0 additions & 16 deletions tests/functional/websocket/infura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,4 @@ async fn infura_provider_websocket(ctx: &mut ServerContext) {

// Arbitrum goerli
check_if_rpc_is_responding_correctly_for_supported_chain(ctx, "eip155:421613", "0x66eed").await;

// Aurora mainnet
check_if_rpc_is_responding_correctly_for_supported_chain(
ctx,
"eip155:1313161554",
"0x4e454152",
)
.await;

// Aurora testnet
check_if_rpc_is_responding_correctly_for_supported_chain(
ctx,
"eip155:1313161555",
"0x4e454153",
)
.await;
}

0 comments on commit 3b3dc64

Please sign in to comment.