UNPKG

bitcoin-cli-ts

Version:

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

16 lines (15 loc) 472 B
import { Bitcoind } from '../../types'; type GetRawMempoolParams = { bitcoind: Bitcoind; verbose?: boolean; mempool_sequence?: boolean; }; /** * getrawmempool ( verbose mempool_sequence ) * * Returns all transaction ids in memory pool as a json array of string transaction ids. * Hint: use getmempoolentry to fetch a specific transaction from the mempool. * */ export declare function getRawMempool(params: GetRawMempoolParams): Promise<any>; export {};