@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
13 lines • 449 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* gethdkeys ( {"active_only":bool,"private":bool,...} )
*
* List all BIP 32 HD keys in the wallet and which descriptors use them.
*
*/
export function gethdkeys(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'gethdkeys', params: methodParams }, bitcoind);
}
//# sourceMappingURL=gethdkeys.js.map