Skip to content

Commit

Permalink
chore: Move Ankr to default ETH Sepolia services (#358)
Browse files Browse the repository at this point in the history
([XC-272](https://dfinity.atlassian.net/browse/XC-272)) Move Ankr to
default ETH Sepolia services

Since Ankr seems to have fixed their IPv6 compatibility, move it to the
list of default ETH Sepolia services, and move rpc.sepolia.org to
non-default ETH Sepolia providers.

[XC-272]:
https://dfinity.atlassian.net/browse/XC-272?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
  • Loading branch information
lpahlavi authored Jan 23, 2025
1 parent 9df7365 commit c27c080
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpc_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ impl Providers {
];

const DEFAULT_ETH_SEPOLIA_SERVICES: &'static [EthSepoliaService] = &[
EthSepoliaService::Sepolia,
EthSepoliaService::Ankr,
EthSepoliaService::BlockPi,
EthSepoliaService::PublicNode,
];
const NON_DEFAULT_ETH_SEPOLIA_SERVICES: &'static [EthSepoliaService] =
&[EthSepoliaService::Alchemy, EthSepoliaService::Ankr];
&[EthSepoliaService::Alchemy, EthSepoliaService::Sepolia];

const DEFAULT_L2_MAINNET_SERVICES: &'static [L2MainnetService] = &[
L2MainnetService::Llama,
Expand Down

0 comments on commit c27c080

Please sign in to comment.