export interface RoundsQuery { from?: number; size?: number; validator?: string; condition?: string; shard?: number; epoch?: number; } export interface Round { blockWasProposed: boolean; round: number; shard: number; epoch: number; timestamp: number; } export interface RoundsCountQuery { validator?: string; condition?: string; shard?: number; epoch?: number; } export interface RoundDetailed { blockWasProposed: boolean; round: number; shard: number; epoch: number; timestamp: number; signers: any[][]; }