@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
13 lines • 400 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* setlabel "address" "label"
*
* Sets the label associated with the given address.
*
*/
export function setLabel(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'setlabel', params: methodParams }, bitcoind);
}
//# sourceMappingURL=set-label.js.map