get-tx-merkleblock-proof
Generate a merkleblock proof for a Bitcoin transaction to verify its inclusion in a block. Input a transaction ID (txid) to retrieve the proof, ensuring transaction validity within the blockchain.
Instructions
Returns the merkleblock proof for a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txid | Yes | The txid to get merkleblock proof for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"txid": {
"description": "The txid to get merkleblock proof for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"txid"
],
"type": "object"
}