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

NameTypeDescription

message*

String

Message text

signature*

String

Generated Signature

walletId*

String

Wallet ID

{
  "Status": "SUCCESS",
  "Message": "",
  "Data": {
    "isVerified": true
  }
}

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.

curl -X POST http://localhost:8889/wallet/verifySignatureOffChain \
-H "Content-Type: application/json" \
-d '{
  "walletId": "xxxxxxxxxxxx",
  "message": "Hello",
  "signature": "xxxxxxxxxxxxx"
}'

Last updated