getmempooldescendants
The getmempooldescendants RPC method allows you to retrieve information about the descendant transactions of a specified transaction in the memory pool. This method is useful for understanding the relationships between unconfirmed transactions and the possible effects of their confirmation on the overall transaction fees and network congestion.
Parameters
parameter | description |
|---|---|
txid | The transaction ID of the transaction for which you want to get its descendants. |
verbose | If set to true, detailed information about each descendant transaction will be returned, otherwise only the transaction IDs will be returned. |
Return Object
The return object depends on the verbose parameter:
If verbose is false, the return object is an array of strings, each representing the transaction ID of a descendant.
If verbose is true, the return object is a JSON object, where the keys are the transaction IDs of the descendants, and the values are JSON objects containing detailed information about the descendants.
Request Example
Bitcoin Get Mempool Descendants Request