UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 324 B
import { Bitcoind } from '../../types'; type AnalyzePsbtParams = { bitcoind: Bitcoind; psbt: string; }; /** * analyzepsbt "psbt" * * Analyzes and provides information about the current status of a PSBT and its inputs * */ export declare function analyzePsbt(params: AnalyzePsbtParams): Promise<any>; export {};