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.
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