bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 427 B
TypeScript
import { Bitcoind } from '../../types';
type VerifyTxOutProofParams = {
bitcoind: Bitcoind;
proof: string;
};
/**
* verifytxoutproof "proof"
*
* Verifies that a proof points to a transaction in a block, returning the transaction it commits to
* and throwing an RPC error if the block is not in our best chain
*
*/
export declare function verifyTxOutProof(params: VerifyTxOutProofParams): Promise<any>;
export {};