UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 400 B
import { Bitcoind } from '../../types'; type DecodeRawTransactionParams = { bitcoind: Bitcoind; hexstring: string; iswitness?: boolean; }; /** * decoderawtransaction "hexstring" ( iswitness ) * * Return a JSON object representing the serialized, hex-encoded transaction. * */ export declare function decodeRawTransaction(params: DecodeRawTransactionParams): Promise<any>; export {};