UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

Auto-generated Bitcoin client library for bitcoind JSON-RPC API

13 lines 467 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getmempooldescendants "txid" ( verbose ) * * If txid is in the mempool, returns all in-mempool descendants. * */ export function getMempoolDescendants(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getmempooldescendants', params: methodParams }, bitcoind); } //# sourceMappingURL=get-mempool-descendants.js.map