Type alias NodeStatusInfo

NodeStatusInfo: {
    chainId: number;
    config: Config;
    connectedNodes: Record<string, unknown>;
    consensusStats: ConsensusStats;
    currentCycle: number;
    currentCycleTime: number;
    currentTime: number;
    executionStats: ExecutionStats;
    lastSlot: Slot;
    minimalFees?: string;
    networkStats: NetworkStats;
    nextCycleTime: number;
    nextSlot: Slot;
    nodeId: string;
    nodeIp?: null | string;
    poolStats: PoolStats;
    version: Version;
}

Type declaration

  • chainId: number
  • config: Config
  • connectedNodes: Record<string, unknown>
  • consensusStats: ConsensusStats
  • currentCycle: number
  • currentCycleTime: number
  • currentTime: number
  • executionStats: ExecutionStats
  • lastSlot: Slot
  • Optional minimalFees?: string
  • networkStats: NetworkStats
  • nextCycleTime: number
  • nextSlot: Slot
  • nodeId: string
  • Optional nodeIp?: null | string
  • poolStats: PoolStats
  • version: Version