getmempoolentry
Summary
Returns mempool data for given transaction
Description
Returns mempool data for given transaction
Arguments
txid(STR_HEX, required): The transaction id (must be in mempool)
Results
value(OBJ): No description.vsize(NUM): sigops-adjusted virtual transaction size used for fee and policy checks; qbit does not discount witness data.weight(NUM): transaction weight; qbit fully counts witness data.time(NUM_TIME): local time transaction entered pool in seconds since 1 Jan 1970 GMTheight(NUM): block height when transaction entered pooldescendantcount(NUM): number of in-mempool descendant transactions (including this one)descendantsize(NUM): virtual transaction size of in-mempool descendants (including this one)ancestorcount(NUM): number of in-mempool ancestor transactions (including this one)ancestorsize(NUM): virtual transaction size of in-mempool ancestors (including this one)wtxid(STR_HEX): hash of serialized transaction, including witness datafees(OBJ): No description.base(STR_AMOUNT): transaction fee, denominated in QBTmodified(STR_AMOUNT): transaction fee with fee deltas used for mining priority, denominated in QBTancestor(STR_AMOUNT): transaction fees of in-mempool ancestors (including this one) with fee deltas used for mining priority, denominated in QBTdescendant(STR_AMOUNT): transaction fees of in-mempool descendants (including this one) with fee deltas used for mining priority, denominated in QBT
depends(ARR): unconfirmed transactions used as inputs for this transactiontransactionid(STR_HEX): parent transaction id
spentby(ARR): unconfirmed transactions spending outputs from this transactiontransactionid(STR_HEX): child transaction id
-
bip125-replaceable(BOOL): Whether this transaction signals BIP125 replaceability or has an unconfirmed ancestor signaling BIP125 replaceability. (DEPRECATED) -
unbroadcast(BOOL): Whether this transaction is currently unbroadcast (initial broadcast not yet acknowledged by any peers)
Examples
qbit-cli getmempoolentry "mytxid"
curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "getmempoolentry", "params": ["mytxid"]}' -H 'content-type: application/json' http://127.0.0.1:8352/