@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
16 lines • 520 B
TypeScript
import { Bitcoind } from '../../types.js';
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 {};
//# sourceMappingURL=get-raw-mempool.d.ts.map