Skip to content

Commit fccfef1

Browse files
authored
Merge pull request #8348 from BitGo/CHALO-335-sdk-flag
chore: add coinfeature flag for trx
2 parents 3fff3c5 + 2918f38 commit fccfef1

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,11 @@ export enum CoinFeature {
318318
*/
319319
TSS_COLD = 'tss-cold',
320320

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+
321326
/**
322327
* This coin uses sha256 hash function for ECDSA TSS signatures
323328
*/

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ export const TRX_FEATURES = [
437437
CoinFeature.TSS_COLD,
438438
CoinFeature.MPCV2,
439439
CoinFeature.SHA256_WITH_ECDSA_TSS,
440+
CoinFeature.TSS_SUPPORT_IN_PROGRESS, // TODO: remove this after TSS is fully onboarded
440441
];
441442
export const COSMOS_SIDECHAIN_FEATURES = [
442443
...ACCOUNT_COIN_DEFAULT_FEATURES,

0 commit comments

Comments
 (0)