From ec9b447d06c4545f1d9fee3ea44c9e721fae8499 Mon Sep 17 00:00:00 2001 From: BitGo Agent Date: Thu, 25 Jun 2026 08:38:35 +0000 Subject: [PATCH] fix(statics): remove MultiSig feature for FLRP Remove CoinFeature.MULTISIG_COLD and CoinFeature.MULTISIG from FLRPCoin.DEFAULT_FEATURES in modules/statics/src/flrp.ts. FLRP (Flare P-chain) is an MPC-only coin and should not offer multisig wallet creation. With these features present, supportsMultiSig() would return true for flrp/tflrp, surfacing a MultiSig wallet option in the creation flow that is not supported for this chain. Update the expectedColdFeatures test fixture to reflect that flrp and tflrp now belong in the justTSS category (TSS_COLD only, no MULTISIG_COLD) rather than the both category. Ticket: CECHO-1449 Session-Id: 1b4d90aa-156a-4a8c-8e1a-05ec6dfa64fa Task-Id: efa508db-6fe1-4074-95ae-7d62e8400f86 --- modules/statics/src/flrp.ts | 2 -- modules/statics/test/unit/fixtures/expectedColdFeatures.ts | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/statics/src/flrp.ts b/modules/statics/src/flrp.ts index a8f7f666c8..96b61f2fbf 100644 --- a/modules/statics/src/flrp.ts +++ b/modules/statics/src/flrp.ts @@ -22,8 +22,6 @@ export class FLRPCoin extends BaseCoin { CoinFeature.CUSTODY_BITGO_CUSTODY_MENA_FZE, CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT, - CoinFeature.MULTISIG_COLD, - CoinFeature.MULTISIG, CoinFeature.STAKING, CoinFeature.TSS, CoinFeature.TSS_COLD, diff --git a/modules/statics/test/unit/fixtures/expectedColdFeatures.ts b/modules/statics/test/unit/fixtures/expectedColdFeatures.ts index e816708db3..384e636434 100644 --- a/modules/statics/test/unit/fixtures/expectedColdFeatures.ts +++ b/modules/statics/test/unit/fixtures/expectedColdFeatures.ts @@ -13,8 +13,6 @@ export const expectedColdFeatures = { 'tsoneium', 'flr', 'tflr', - 'flrp', - 'tflrp', 'trx', 'ttrx', 'hyperliquid', @@ -95,6 +93,7 @@ export const expectedColdFeatures = { 'dydxcosmos', 'xtzevm', 'fetchai', + 'flrp', 'flow', 'fluenteth', 'gasevm', @@ -179,6 +178,7 @@ export const expectedColdFeatures = { 'tdydxcosmos', 'txtzevm', 'tfetchai', + 'tflrp', 'tflow', 'tfluenteth', 'tgasevm',