From 90c232dacae295f37a1219a138aa1127cc2e8b31 Mon Sep 17 00:00:00 2001 From: Vlad Kozarez Date: Tue, 7 Nov 2023 17:29:14 +0300 Subject: [PATCH] AND-4212 replace etc.cluster api --- .../blockchains/ethereum/EthereumJsonRpcProvidersExt.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blockchain/src/main/java/com/tangem/blockchain/blockchains/ethereum/EthereumJsonRpcProvidersExt.kt b/blockchain/src/main/java/com/tangem/blockchain/blockchains/ethereum/EthereumJsonRpcProvidersExt.kt index 563b4f732..5d32023b8 100644 --- a/blockchain/src/main/java/com/tangem/blockchain/blockchains/ethereum/EthereumJsonRpcProvidersExt.kt +++ b/blockchain/src/main/java/com/tangem/blockchain/blockchains/ethereum/EthereumJsonRpcProvidersExt.kt @@ -58,14 +58,14 @@ internal fun Blockchain.getEthereumJsonRpcProviders( Blockchain.EthereumClassic -> listOfNotNull( EthereumJsonRpcProvider(baseUrl = "https://etc.etcdesktop.com/"), getGetBlockProvider(baseUrl = "https://etc.getblock.io/mainnet/", config = config), - EthereumJsonRpcProvider(baseUrl = "https://www.ethercluster.com/etc/"), + EthereumJsonRpcProvider(baseUrl = "https://etc.rivet.link/etc/"), EthereumJsonRpcProvider(baseUrl = "https://blockscout.com/etc/mainnet/api/eth-rpc/"), EthereumJsonRpcProvider(baseUrl = "https://etc.mytokenpocket.vip/"), EthereumJsonRpcProvider(baseUrl = "https://besu-de.etc-network.info/"), EthereumJsonRpcProvider(baseUrl = "https://geth-at.etc-network.info/"), ) Blockchain.EthereumClassicTestnet -> listOf( - EthereumJsonRpcProvider(baseUrl = "https://www.ethercluster.com/kotti/") + EthereumJsonRpcProvider(baseUrl = "https://etc.rivet.link/kotti/") ) Blockchain.Fantom -> listOfNotNull( getNowNodesProvider(baseUrl = "https://ftm.nownodes.io/", config = config),