Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,11 @@ export enum CoinFeature {
*/
TSS_COLD = 'tss-cold',

/**
* This coin is in progress for being onboarded to TSS signing protocol
*/
TSS_SUPPORT_IN_PROGRESS = 'tss-support-in-progress',

/**
* This coin uses sha256 hash function for ECDSA TSS signatures
*/
Expand Down
1 change: 1 addition & 0 deletions modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ export const TRX_FEATURES = [
CoinFeature.TSS_COLD,
CoinFeature.MPCV2,
CoinFeature.SHA256_WITH_ECDSA_TSS,
CoinFeature.TSS_SUPPORT_IN_PROGRESS, // TODO: remove this after TSS is fully onboarded
];
export const COSMOS_SIDECHAIN_FEATURES = [
...ACCOUNT_COIN_DEFAULT_FEATURES,
Expand Down
Loading