UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 334 B
import { Bitcoind } from '../../types'; type GetAddressesByLabelParams = { bitcoind: Bitcoind; label: string; }; /** * getaddressesbylabel "label" * * Returns the list of addresses assigned the specified label. * */ export declare function getAddressesByLabel(params: GetAddressesByLabelParams): Promise<any>; export {};