UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

14 lines 447 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * listwallets * * Returns a list of currently loaded wallets. * For full information on the wallet, use "getwalletinfo" * */ export function listWallets(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'listwallets', params: methodParams }, bitcoind); } //# sourceMappingURL=list-wallets.js.map