UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 383 B
import { Bitcoind } from '../../types'; type GetTxSpendingPrevoutParams = { bitcoind: Bitcoind; outputs: Array<unknown>; }; /** * gettxspendingprevout [{"txid":"hex","vout":n},...] * * Scans the mempool to find transactions spending any of the given outputs * */ export declare function getTxSpendingPrevout(params: GetTxSpendingPrevoutParams): Promise<any>; export {};