Verifies Signature off chain
This will allow to Verify Generated Signature off chain.
API Specification
Verifies Generated Signature off chain
POST http://localhost:8889/wallet/verifySignatureOffChain
This will Verify Generated Signature off chain under the given instance.
Request Body
Name
Type
Description
message*
String
Message text
signature*
String
Generated Signature
walletId*
String
Wallet ID
{
"Status": "SUCCESS",
"Message": "",
"Data": {
"isVerified": true
}
}{
"Status": "FAILURE",
"Message": "error getting public key from signature : invalid signature recovery id",
"Data": null
}Take a look at how you might call this method using our official libraries, or via curl:
Here "signature" is the "data" from the sign message.
Last updated
Was this helpful?