From 34f17432ba8b2eea65794410389f80aa72ec6e3a Mon Sep 17 00:00:00 2001 From: Rafael Date: Tue, 3 Mar 2026 13:07:10 +0600 Subject: [PATCH] Update Polygon RPC sources Replace `polygon-rpc.com` with `1rpc.io/matic`. --- .../java/io/horizontalsystems/ethereumkit/models/RpcSource.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/RpcSource.kt b/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/RpcSource.kt index 436fbb96..7a94755c 100644 --- a/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/RpcSource.kt +++ b/ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/RpcSource.kt @@ -39,8 +39,8 @@ sealed class RpcSource { fun polygonRpcHttp(): Http { return Http( listOf( - URI("https://polygon-rpc.com"), URI("https://polygon.drpc.org"), + URI("https://1rpc.io/matic") ), null) }