bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 311 B
TypeScript
import { Bitcoind } from '../../types';
type SetLabelParams = {
bitcoind: Bitcoind;
address: string;
label: string;
};
/**
* setlabel "address" "label"
*
* Sets the label associated with the given address.
*
*/
export declare function setLabel(params: SetLabelParams): Promise<any>;
export {};