Docs

RecoverAddress

Recover the signing address from a signed message.

Usage

After a message has been signed using sign, you can then pass the message and the signature to this method to recover the signing address.

Uses EIP-1271 to verify the address when using compatible Smart Wallets.

var data = await sdk.Wallet.RecoverAddress("{{message}}", "{{signature}}");

Configuration

message

The original message that was signed.

Must be a string.

signature

The signature to recover the address from.

Must be a string.

Return Value

Returns the wallet address that signed the message.

string