UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 339 B
import { Bitcoind } from '../../types'; type DecodePsbtParams = { bitcoind: Bitcoind; psbt: string; }; /** * decodepsbt "psbt" * * Return a JSON object representing the serialized, base64-encoded partially signed Bitcoin transaction. * */ export declare function decodePsbt(params: DecodePsbtParams): Promise<any>; export {};