getmempooldescendants - Litecoin

Example code for the getmempooldescendants JSON-RPC method. Complete guide on how to use getmempooldescendants JSON-RPC in GetBlock Web3 documentation.

This method returns all in-mempool descendants, if the txid is in the mempool.

Parameters

Parameter
Type
Description

txid

string

The transaction id (must be in mempool).

verbose

boolean

Optional. True for JSON object. Default=false.

Request

cURL
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "getmempooldescendants",
    "params": ["txid123...", false],
    "id": "getblock.io"
}'

Response

Response (JSON)
{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": ["descendant_txid1", "descendant_txid2"]
}

Response Parameters

Field
Type
Description

result

array

Array of descendant transaction IDs.

Use Case

The getmempooldescendants method is essential for:

  • Dependency tracking

  • Transaction impact analysis

  • Chain analysis

  • RBF considerations

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration Notes

The getmempooldescendants method helps developers build robust applications that interact with the Litecoin blockchain.

Last updated

Was this helpful?