UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 378 B
import { Bitcoind } from '../../types'; type GetMempoolDescendantsParams = { bitcoind: Bitcoind; txid: string; verbose?: boolean; }; /** * getmempooldescendants "txid" ( verbose ) * * If txid is in the mempool, returns all in-mempool descendants. * */ export declare function getMempoolDescendants(params: GetMempoolDescendantsParams): Promise<any>; export {};