Skip to content

Commit 38b620b

Browse files
committed
feat(sdk-coin-evm): enable message signing for base
Ticket: SC-3598
1 parent e41d011 commit 38b620b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

modules/sdk-coin-evm/src/evmCoin.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)