interface Status {
    mdwAsyncTasks: StatusMdwAsyncTasks;
    mdwGensPerMinute: number;
    mdwHeight: number;
    mdwLastMigration: number;
    mdwRevision: string;
    mdwSynced: boolean;
    mdwSyncing: boolean;
    mdwTxIndex: number;
    mdwVersion: string;
    nodeHeight: number;
    nodeProgress: number;
    nodeRevision: string;
    nodeSyncing: boolean;
    nodeVersion: string;
}

Properties

mdwAsyncTasks: StatusMdwAsyncTasks
mdwGensPerMinute: number

The approximate number of generations synced per minute on middleware

mdwHeight: number

The top generation up to which the middleware was synced

mdwLastMigration: number

The last middleware migration ran

mdwRevision: string

The middleware's git revision of the latest commit applied

mdwSynced: boolean

true if middleware was synced up to the latest node block

mdwSyncing: boolean

true if middleware is syncing (i.e. it didn't stop due to an error)

mdwTxIndex: number

index of the latest synced transaction

mdwVersion: string

The middleware's version

nodeHeight: number

The node generation of the last block synced

nodeProgress: number

The percentage of generations synced on the node

nodeRevision: string

The node's git revision of the latest commit applied

nodeSyncing: boolean

If true, the node is still processing additional blocks to reach the latest one

nodeVersion: string

The node's version