UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

19 lines 609 B
import { Bitcoind } from '../../types.js'; type GetBalanceParams = { bitcoind: Bitcoind; dummy?: string; minconf?: number; include_watchonly?: boolean; avoid_reuse?: boolean; }; /** * getbalance ( "dummy" minconf include_watchonly avoid_reuse ) * * Returns the total available balance. * The available balance is what the wallet considers currently spendable, and is * thus affected by options which limit spendability such as -spendzeroconfchange. * */ export declare function getBalance(params: GetBalanceParams): Promise<any>; export {}; //# sourceMappingURL=get-balance.d.ts.map