interface Status {
    difficulty: number;
    genesisKeyBlockHash: string;
    hashrate: number;
    listening: boolean;
    networkId: string;
    nodeRevision: string;
    nodeVersion: string;
    peerConnections: PeerConnections;
    peerCount: number;
    peerPubkey: string;
    pendingTransactionsCount: number;
    protocols: Protocol[];
    solutions: number;
    syncing: boolean;
    syncProgress?: number;
    topBlockHeight: number;
    topKeyBlockHash: string;
    uptime: string;
}

Properties

difficulty: number
genesisKeyBlockHash: string

Base58Check encoded tagged hash

hashrate: number
listening: boolean
networkId: string
nodeRevision: string
nodeVersion: string
peerConnections: PeerConnections
peerCount: number
peerPubkey: string

Base58Check encoded tagged pubkey

pendingTransactionsCount: number
protocols: Protocol[]
solutions: number
syncing: boolean
syncProgress?: number
topBlockHeight: number
topKeyBlockHash: string

Base58Check encoded tagged hash

uptime: string