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
2 changes: 2 additions & 0 deletions modules/account-lib/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ const coinMessageBuilderFactoryMap = {
tarbeth: Eth.MessageBuilderFactory,
opeth: Eth.MessageBuilderFactory,
topeth: Eth.MessageBuilderFactory,
baseeth: Eth.MessageBuilderFactory,
tbaseeth: Eth.MessageBuilderFactory,
};

coins
Expand Down
10 changes: 10 additions & 0 deletions modules/sdk-coin-ethlike/src/ethlikeCoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,14 @@ export class EthLikeCoin extends AbstractEthLikeNewCoins {
const explorerUrl = common.Environments[this.bitgo.getEnv()][this.getFamily().toLowerCase() + 'ExplorerUrl'];
return await recoveryBlockchainExplorerQuery(query, explorerUrl as string, apiToken);
}

/** @inheritDoc */
supportsMessageSigning(): boolean {
return true;
}

/** @inheritDoc */
supportsSigningTypedData(): boolean {
return true;
}
}