UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 535 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getreceivedbylabel "label" ( minconf include_immature_coinbase ) * * Returns the total amount received by addresses with <label> in transactions with at least [minconf] confirmations. * */ export function getReceivedByLabel(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getreceivedbylabel', params: methodParams }, bitcoind); } //# sourceMappingURL=get-received-by-label.js.map