UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 411 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getmempoolentry "txid" * * Returns mempool data for given transaction * */ export function getMempoolEntry(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getmempoolentry', params: methodParams }, bitcoind); } //# sourceMappingURL=get-mempool-entry.js.map