UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 452 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * listlabels ( "purpose" ) * * Returns the list of all labels, or labels that are assigned to addresses with a specific purpose. * */ export function listLabels(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'listlabels', params: methodParams }, bitcoind); } //# sourceMappingURL=list-labels.js.map