BCH RPC
How to use it
// yarn add @tatumio/tatum
import { TatumSDK, BitcoinCash, Network } from '@tatumio/tatum'
const tatum = await TatumSDK.init<BitcoinCash>({ network: Network.BITCOIN_CASH })
const result = await tatum.rpc.verifyMessage(
'1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa',
'HxK7Mw0K6Uox7iGcOe9v9Ll+OZzG7TjTkeTJCD7VHw4yKP4O4a4gFtgm9XNmxfH1tK7JRgYrP/+20xP/ek8iQ2E=',
'Hello, this is a signed message.',
)
await tatum.destroy() // Destroy Tatum SDK - needed for stopping background jobs
verifymessage
is a method that allows users to verify a signed message using a address. This method can be used to confirm the authenticity of a message by verifying that the signature was created by the owner of the address, without revealing the private key. Use cases include proving ownership of an address, verifying the content of a message, or validating communications within a trustless system.
The verifymessage
method accepts three required parameters:
address
(string, required): The address that supposedly signed the message.signature
(string, required): The base64-encoded signature of the message.message
(string, required): The message that was signed.
The verifymessage
method returns a single boolean value:
isvalid
(boolean): Indicates if the signature is valid for the given message and address
JSON Examples
Request example:
{% code overflow="wrap" lineNumbers="true" %}
{
"jsonrpc": "2.0",
"id": 1,
"method": "verifymessage",
"params": [
"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
"HxK7Mw0K6Uox7iGcOe9v9Ll+OZzG7TjTkeTJCD7VHw4yKP4O4a4gFtgm9XNmxfH1tK7JRgYrP/+20xP/ek8iQ2E=",
"Hello, this is a signed message."
]
}
{% endcode %}
Response example:
{% code overflow="wrap" lineNumbers="true" %}
{
"result": false,
"error": null,
"id": 1
}
{% endcode %}
\