UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 463 B
import { Bitcoind, Json } from '../../types'; type SimulateRawTransactionParams = { bitcoind: Bitcoind; rawtxs?: Array<unknown>; options?: Json; }; /** * simulaterawtransaction ( ["rawtx",...] {"include_watchonly":bool,...} ) * * Calculate the balance change resulting in the signing and broadcasting of the given transaction(s). * */ export declare function simulateRawTransaction(params: SimulateRawTransactionParams): Promise<any>; export {};