bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
14 lines (13 loc) • 308 B
TypeScript
import { Bitcoind } from '../../types';
type GetBlockHashParams = {
bitcoind: Bitcoind;
height: number;
};
/**
* getblockhash height
*
* Returns hash of block in best-block-chain at height provided.
*
*/
export declare function getBlockHash(params: GetBlockHashParams): Promise<any>;
export {};