File tree Expand file tree Collapse file tree 5 files changed +7
-18
lines changed
sdk-core/src/bitgo/baseCoin Expand file tree Collapse file tree 5 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -70,9 +70,4 @@ export class Arbeth extends AbstractEthLikeNewCoins {
70
70
getDefaultMultisigType ( ) : MultisigType {
71
71
return multisigTypes . tss ;
72
72
}
73
-
74
- /** inherited doc */
75
- isTssSupportGated ( ) : boolean {
76
- return true ;
77
- }
78
73
}
Original file line number Diff line number Diff line change @@ -70,9 +70,4 @@ export class Opeth extends AbstractEthLikeNewCoins {
70
70
getDefaultMultisigType ( ) : MultisigType {
71
71
return multisigTypes . tss ;
72
72
}
73
-
74
- /** inherited doc */
75
- isTssSupportGated ( ) : boolean {
76
- return true ;
77
- }
78
73
}
Original file line number Diff line number Diff line change @@ -619,12 +619,4 @@ export abstract class BaseCoin implements IBaseCoin {
619
619
setCoinSpecificFieldsInIntent ( intent : PopulatedIntent , params : PrebuildTransactionWithIntentOptions ) : void {
620
620
return ;
621
621
}
622
-
623
- /**
624
- * Flag indicating if TSS support is gated for this coin.
625
- * @returns {boolean }
626
- */
627
- isTssSupportGated ( ) : boolean {
628
- return false ;
629
- }
630
622
}
Original file line number Diff line number Diff line change @@ -346,6 +346,11 @@ export enum CoinFeature {
346
346
* This coin supports WalletConnect
347
347
*/
348
348
WALLET_CONNECT_DEFI = 'wallet-connect-defi' ,
349
+
350
+ /**
351
+ * This coin is gated for TSS Support
352
+ */
353
+ TSS_SUPPORT_GATED = 'tss-support-gated' ,
349
354
}
350
355
351
356
/**
Original file line number Diff line number Diff line change @@ -343,6 +343,7 @@ export const ARBETH_FEATURES = [
343
343
CoinFeature . CUSTODY_BITGO_FRANKFURT ,
344
344
CoinFeature . EIP1559 ,
345
345
CoinFeature . WALLET_CONNECT_DEFI ,
346
+ CoinFeature . TSS_SUPPORT_GATED ,
346
347
] ;
347
348
export const OPETH_FEATURES = [
348
349
...ETH_FEATURES ,
@@ -358,6 +359,7 @@ export const OPETH_FEATURES = [
358
359
CoinFeature . WALLET_CONNECT_DEFI ,
359
360
CoinFeature . BULK_TRANSACTION ,
360
361
CoinFeature . ERC20_BULK_TRANSACTION ,
362
+ CoinFeature . TSS_SUPPORT_GATED ,
361
363
] ;
362
364
export const ZKETH_FEATURES = [
363
365
...ETH_FEATURES ,
You can’t perform that action at this time.
0 commit comments