From de2a734aa4b41628c71cfef0d0bcd689979f45fe Mon Sep 17 00:00:00 2001 From: Anton Date: Tue, 10 Dec 2024 14:01:19 +0300 Subject: [PATCH] add Viction chain (#604) --- emerald-grpc | 2 +- foundation/src/main/resources/public | 2 +- .../dshackle/upstream/calls/DefaultEthereumMethods.kt | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/emerald-grpc b/emerald-grpc index da07414e..ddeec300 160000 --- a/emerald-grpc +++ b/emerald-grpc @@ -1 +1 @@ -Subproject commit da07414e48f039952c6b94803fd05fe04941bd49 +Subproject commit ddeec300020297dc617fb2391e757968edf54b26 diff --git a/foundation/src/main/resources/public b/foundation/src/main/resources/public index 24b7661d..7d701484 160000 --- a/foundation/src/main/resources/public +++ b/foundation/src/main/resources/public @@ -1 +1 @@ -Subproject commit 24b7661d200bce823913c5c25e7f6b23a477f759 +Subproject commit 7d7014843a9d2dfcc153b16cb677dc2790e066ae 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 f5ae063d..b0ad082f 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt @@ -726,6 +726,10 @@ class DefaultEthereumMethods( Chain.CRONOS_ZKEVM__MAINNET, Chain.CRONOS_ZKEVM__TESTNET -> zxkSyncMethods + "zk_estimateFee" + Chain.VICTION__MAINNET, Chain.VICTION__TESTNET -> listOf( + "posv_getNetworkInformation", + ) + else -> emptyList() } }