UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

16 lines 547 B
import { Bitcoind } from '../../types.js'; type GetReceivedByAddressParams = { bitcoind: Bitcoind; address: string; minconf?: number; include_immature_coinbase?: boolean; }; /** * getreceivedbyaddress "address" ( minconf include_immature_coinbase ) * * Returns the total amount received by the given address in transactions with at least minconf confirmations. * */ export declare function getReceivedByAddress(params: GetReceivedByAddressParams): Promise<any>; export {}; //# sourceMappingURL=get-received-by-address.d.ts.map