getmempoolancestors - Litecoin

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

If the txid is in the mempool, this returns all in-mempool ancestors.

Parameters

Parameter
Type
Description

txid

string

The transaction id (must be in mempool).

verbose

boolean

Optional. True for JSON object. Default=false.

Request examples

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

Response

response.json
{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": ["ancestor_txid1", "ancestor_txid2"]
}

Response Parameters

Field
Type
Description

result

array

Array of ancestor transaction IDs.

Use Case

The getmempoolancestors method is essential for:

  • Dependency tracking

  • CPFP analysis

  • Transaction chains

  • Fee bumping

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration Notes

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

Last updated

Was this helpful?