UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

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