@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
16 lines (15 loc) • 427 B
text/typescript
/**
* Blockchain Status
* @module core
*/
export interface BlockchainStatus {
readonly application: string;
readonly cumulativeDifficulty: string;
readonly isScanning: boolean;
readonly lastBlock: string;
readonly lastBlockchainFeeder: string;
readonly lastBlockchainFeederHeight: number;
readonly numberOfBlocks: number;
readonly time: number;
readonly version: string;
}