UNPKG

bitcoin-cli-ts

Version:

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

16 lines (15 loc) 587 B
// Auto synced from github actions. Don't change this file import { __rest } from "tslib"; import request from '../../rpc-request'; /** * combinerawtransaction ["hexstring",...] * * Combine multiple partially signed transactions into one transaction. * The combined transaction may be another partially signed transaction or a * fully signed transaction. * */ export function combineRawTransaction(params) { var bitcoind = params.bitcoind, methodParams = __rest(params, ["bitcoind"]); return request({ method: 'combinerawtransaction', params: methodParams }, bitcoind); }