@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
32 lines (31 loc) • 551 B
TypeScript
/**
*
* @export
* @interface BchInfo
*/
export interface BchInfo {
/**
* Chain of the blockchain, main or test.
* @type {string}
* @memberof BchInfo
*/
chain: string;
/**
* Last block.
* @type {number}
* @memberof BchInfo
*/
blocks: number;
/**
* Hash of the last block.
* @type {string}
* @memberof BchInfo
*/
bestblockhash: string;
/**
* Difficulty of the PoW algorithm.
* @type {number}
* @memberof BchInfo
*/
difficulty: number;
}