UNPKG

bitcoin-cli-ts

Version:

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

13 lines (12 loc) 271 B
import { Bitcoind } from '../../types'; type PruneBlockchainParams = { bitcoind: Bitcoind; height: number; }; /** * pruneblockchain height * * pruneblockchain */ export declare function pruneBlockchain(params: PruneBlockchainParams): Promise<any>; export {};