From c103dda42c70554681a33c22f665fe5c6c22b16a Mon Sep 17 00:00:00 2001 From: Hafeez Shaik Date: Tue, 2 Dec 2025 13:01:51 +0530 Subject: [PATCH] feat: add tss stuck tx coin feature for arbeth and opeth Ticket: COIN-6723 --- modules/statics/src/coinFeatures.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/statics/src/coinFeatures.ts b/modules/statics/src/coinFeatures.ts index 4cff46b57c..1676695db0 100644 --- a/modules/statics/src/coinFeatures.ts +++ b/modules/statics/src/coinFeatures.ts @@ -504,6 +504,7 @@ export const ARBETH_FEATURES = [ CoinFeature.BULK_TRANSACTION, CoinFeature.ERC20_BULK_TRANSACTION, CoinFeature.SHARED_EVM_MESSAGE_SIGNING, + CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS, ]; export const OPETH_FEATURES = [ ...ETH_FEATURES, @@ -521,6 +522,7 @@ export const OPETH_FEATURES = [ CoinFeature.BULK_TRANSACTION, CoinFeature.ERC20_BULK_TRANSACTION, CoinFeature.SHARED_EVM_MESSAGE_SIGNING, + CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS, ]; export const ZKETH_FEATURES = [ ...ETH_FEATURES,