From 2b2533f8ba4612e165369705227191386a26a306 Mon Sep 17 00:00:00 2001 From: a10zn8 Date: Thu, 20 Mar 2025 16:51:55 +0300 Subject: [PATCH] add zirc_isQuarantined (#643) --- .../dshackle/upstream/calls/DefaultEthereumMethods.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt index d9739b36..862446c3 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt @@ -720,6 +720,10 @@ class DefaultEthereumMethods( "posv_getNetworkInformation", ) + Chain.ZIRCUIT__MAINNET, Chain.ZIRCUIT__TESTNET, Chain.ZIRCUIT__GARFIELD -> listOf( + "zirc_isQuarantined", + ) + else -> emptyList() } }