From 0c9ba325a2e0ecca080f29f48f2443d7491ca654 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 5 May 2026 16:11:59 +0000 Subject: [PATCH] fix(statics): disallow BULK_STAKING_TRANSACTION feature for OFC coins OFC coins inherit features from their underlying base assets, but bulk staking transactions are not applicable to off-chain assets. TICKET: SC-6608 --- modules/statics/src/ofc.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/statics/src/ofc.ts b/modules/statics/src/ofc.ts index 5b17780c36..159dec31ae 100644 --- a/modules/statics/src/ofc.ts +++ b/modules/statics/src/ofc.ts @@ -38,6 +38,7 @@ const DISALLOWED_FEATURES = [ // OFC inherits features from the base asset but the features are not always applicable to OFC CoinFeature.SHARED_EVM_SIGNING, CoinFeature.EVM_COMPATIBLE_WP, + CoinFeature.BULK_STAKING_TRANSACTION, ]; const REQUIRED_FEATURES = [CoinFeature.ACCOUNT_MODEL, CoinFeature.REQUIRES_BIG_NUMBER];