bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 368 B
TypeScript
import { Bitcoind } from '../../types';
type GetMempoolAncestorsParams = {
bitcoind: Bitcoind;
txid: string;
verbose?: boolean;
};
/**
* getmempoolancestors "txid" ( verbose )
*
* If txid is in the mempool, returns all in-mempool ancestors.
*
*/
export declare function getMempoolAncestors(params: GetMempoolAncestorsParams): Promise<any>;
export {};