btcpay-greenfield-node-client
Version:
## Installation
18 lines (17 loc) • 449 B
TypeScript
/**
* Detailed sync status of the internal full node
*/
export declare 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;
};