File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,4 @@ export class EthLikeCoin extends AbstractEthLikeNewCoins {
5454 const explorerUrl = common . Environments [ this . bitgo . getEnv ( ) ] [ this . getFamily ( ) . toLowerCase ( ) + 'ExplorerUrl' ] ;
5555 return await recoveryBlockchainExplorerQuery ( query , explorerUrl as string , apiToken ) ;
5656 }
57-
58- /** @inheritDoc */
59- supportsMessageSigning ( ) : boolean {
60- return true ;
61- }
62-
63- /** @inheritDoc */
64- supportsSigningTypedData ( ) : boolean {
65- return true ;
66- }
6757}
Original file line number Diff line number Diff line change @@ -43,6 +43,16 @@ export class EvmCoin extends AbstractEthLikeNewCoins {
4343 return 'ecdsa' ;
4444 }
4545
46+ /** @inheritDoc */
47+ supportsMessageSigning ( ) : boolean {
48+ return true ;
49+ }
50+
51+ /** @inheritDoc */
52+ supportsSigningTypedData ( ) : boolean {
53+ return true ;
54+ }
55+
4656 protected async buildUnsignedSweepTxnTSS ( params : RecoverOptions ) : Promise < OfflineVaultTxInfo | UnsignedSweepTxMPCv2 > {
4757 if ( this . staticsCoin ?. features . includes ( CoinFeature . MPCV2 ) ) {
4858 return this . buildUnsignedSweepTxnMPCv2 ( params ) ;
You can’t perform that action at this time.
0 commit comments