UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 404 B
import { Bitcoind } from '../../types'; type GetRawChangeAddressParams = { bitcoind: Bitcoind; address_type?: string; }; /** * getrawchangeaddress ( "address_type" ) * * Returns a new Bitcoin address, for receiving change. * This is for use with raw transactions, NOT normal use. * */ export declare function getRawChangeAddress(params: GetRawChangeAddressParams): Promise<any>; export {};