UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 371 B
import { Bitcoind } from '../../types'; type GetDeploymentInfoParams = { bitcoind: Bitcoind; blockhash?: string; }; /** * getdeploymentinfo ( "blockhash" ) * * Returns an object containing various state info regarding deployments of consensus changes. * */ export declare function getDeploymentInfo(params: GetDeploymentInfoParams): Promise<any>; export {};