interface AggregatorData {
    address: string;
    authority: string;
    createdAt: number;
    currentResult: CurrentResult;
    feedHash: string;
    maxStalenessSeconds: number;
    maxVariance: number;
    minResponses: number;
    minSampleSize: number;
    name: string;
    queue: string;
    updateState: { currIdx: number; results: Update[] };
}

Properties

address: string
authority: string
createdAt: number
currentResult: CurrentResult
feedHash: string
maxStalenessSeconds: number
maxVariance: number
minResponses: number
minSampleSize: number
name: string
queue: string
updateState: { currIdx: number; results: Update[] }