Skip to content

Commit aae7f27

Browse files
committed
Add polygon RPC source
1 parent d423acf commit aae7f27

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

  • ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models

ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/models/RpcSource.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ sealed class RpcSource {
3737
}
3838

3939
fun polygonRpcHttp(): Http {
40-
return Http(listOf(URI("https://polygon-rpc.com")), null)
40+
return Http(
41+
listOf(
42+
URI("https://polygon-rpc.com"),
43+
URI("https://polygon.drpc.org"),
44+
),
45+
null)
4146
}
4247

4348
fun optimismRpcHttp(): Http {

0 commit comments

Comments
 (0)