@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
14 lines • 547 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* 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 function getRawMempool(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'getrawmempool', params: methodParams }, bitcoind);
}
//# sourceMappingURL=get-raw-mempool.js.map