UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 482 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * decoderawtransaction "hexstring" ( iswitness ) * * Return a JSON object representing the serialized, hex-encoded transaction. * */ export function decodeRawTransaction(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'decoderawtransaction', params: methodParams }, bitcoind); } //# sourceMappingURL=decode-raw-transaction.js.map