bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 398 B
TypeScript
import { Bitcoind } from '../../types';
type GetAddressInfoParams = {
bitcoind: Bitcoind;
address: string;
};
/**
* getaddressinfo "address"
*
* Return information about the given bitcoin address.
* Some of the information will only be present if the address is in the active wallet.
*
*/
export declare function getAddressInfo(params: GetAddressInfoParams): Promise<any>;
export {};