UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 416 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getmempoolinfo * * Returns details on the active state of the TX memory pool. * */ export function getMempoolInfo(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getmempoolinfo', params: methodParams }, bitcoind); } //# sourceMappingURL=get-mempool-info.js.map