For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

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