bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 382 B
TypeScript
import { Bitcoind } from '../../types';
type GetChainTxStatsParams = {
bitcoind: Bitcoind;
nblocks?: number;
blockhash?: string;
};
/**
* getchaintxstats ( nblocks "blockhash" )
*
* Compute statistics about the total number and rate of transactions in the chain.
*
*/
export declare function getChainTxStats(params: GetChainTxStatsParams): Promise<any>;
export {};