Skip to content

Commit

Permalink
fix(providers): removing Aurora from the Infura provider (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
geekbrother authored Jan 18, 2024
1 parent 9513406 commit 0d9887e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 30 deletions.
15 changes: 0 additions & 15 deletions src/env/infura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,6 @@ fn default_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(),
),
),
// Base Goerli
(
"eip155:84531".into(),
Expand Down
17 changes: 2 additions & 15 deletions tests/functional/http/infura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,8 @@ async fn infura_provider(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;
// Celo
check_if_rpc_is_responding_correctly_for_supported_chain(ctx, "eip155:42220", "0xa4ec").await;

// Base Goerli
check_if_rpc_is_responding_correctly_for_supported_chain(ctx, "eip155:84531", "0x14a33").await
Expand Down

0 comments on commit 0d9887e

Please sign in to comment.