bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
16 lines (15 loc) • 486 B
TypeScript
import { Bitcoind } from '../../types';
type GetReceivedByLabelParams = {
bitcoind: Bitcoind;
label: string;
minconf?: number;
include_immature_coinbase?: boolean;
};
/**
* getreceivedbylabel "label" ( minconf include_immature_coinbase )
*
* Returns the total amount received by addresses with <label> in transactions with at least [minconf] confirmations.
*
*/
export declare function getReceivedByLabel(params: GetReceivedByLabelParams): Promise<any>;
export {};