We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3fff3c5 + 2918f38 commit fccfef1Copy full SHA for fccfef1
2 files changed
modules/statics/src/base.ts
@@ -318,6 +318,11 @@ export enum CoinFeature {
318
*/
319
TSS_COLD = 'tss-cold',
320
321
+ /**
322
+ * This coin is in progress for being onboarded to TSS signing protocol
323
+ */
324
+ TSS_SUPPORT_IN_PROGRESS = 'tss-support-in-progress',
325
+
326
/**
327
* This coin uses sha256 hash function for ECDSA TSS signatures
328
modules/statics/src/coinFeatures.ts
@@ -437,6 +437,7 @@ export const TRX_FEATURES = [
437
CoinFeature.TSS_COLD,
438
CoinFeature.MPCV2,
439
CoinFeature.SHA256_WITH_ECDSA_TSS,
440
+ CoinFeature.TSS_SUPPORT_IN_PROGRESS, // TODO: remove this after TSS is fully onboarded
441
];
442
export const COSMOS_SIDECHAIN_FEATURES = [
443
...ACCOUNT_COIN_DEFAULT_FEATURES,
0 commit comments