UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 299 B
import { Bitcoind } from '../../types'; type GetMempoolEntryParams = { bitcoind: Bitcoind; txid: string; }; /** * getmempoolentry "txid" * * Returns mempool data for given transaction * */ export declare function getMempoolEntry(params: GetMempoolEntryParams): Promise<any>; export {};