UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 404 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * listwalletdir * * Returns a list of wallets in the wallet directory. * */ export function listWalletDir(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'listwalletdir', params: methodParams }, bitcoind); } //# sourceMappingURL=list-wallet-dir.js.map