💱Verify Message

verify message on Litecoin Blockchain

Verifying a message on the blockchain involves confirming the authenticity of a message by using a public key and a digital signature

Verify digital message

POST /api/Utilities/VerifyMessage

Verify digital message

Headers

NameTypeDescription

Content-Type

application/json

application in JSON format

Authorization*

Bearer <API key>

attach your API key here

Usev2*

String

Value should be true or yes

Request Body

NameTypeDescription

message*

String

data to be signed

address*

String

Address private key

signature*

String

signature that was generated from signing of message

Base URL: https://kakromnilayer.io

Verify message with Javascript SDK

Liaas SDK package installation

/** 
 * verify message on Litecoin Blockchain
 **/
 
 
 //pass your API key, wallet name, and the encrypted key
const response = await liaasSdk.verifyMessage(
address, 
message, 
signature);

Last updated