btcpay-greenfield-node-client
Version:
## Installation
22 lines (20 loc) • 493 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Detailed sync status of the internal full node
*/
export type ApplicationServerInfoNodeStatusData = {
/**
* The height of the chain of header of the internal full node
*/
headers?: number;
/**
* The height of the latest validated block of the internal full node
*/
blocks?: number;
/**
* The current synchronization progress
*/
verificationProgress?: number;
}