function ethVerifyMessage(message, sig): string

Return the address of the private key that produced the signature sig during signing for message.

This is the same as verifyMessage except it uses EthMessagePrefix instead of MessagePrefix and is available for broader compatibility with EVM signing practices.

Parameters

ParameterTypeDescription
messagestring | Uint8ArrayThe message that was signed.
sigSignatureLikeThe signature to verify.

Returns

string

The address of the signer.

Source

hash/message.ts:93