UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 518 B
// Auto synced from github actions. Don't change this file import { __rest } from "tslib"; import request from '../../rpc-request'; /** * getrawchangeaddress ( "address_type" ) * * Returns a new Bitcoin address, for receiving change. * This is for use with raw transactions, NOT normal use. * */ export function getRawChangeAddress(params) { var bitcoind = params.bitcoind, methodParams = __rest(params, ["bitcoind"]); return request({ method: 'getrawchangeaddress', params: methodParams }, bitcoind); }