Orders

interface GetIndexerPaginatedOrdersParams {
    limit: number;
    startCursor?: string;
    maxTimestampInclusive?: number;
    productIds?: number[];
}

Hierarchy (view full)

Properties

limit: number
startCursor?: string
maxTimestampInclusive?: number

If provided, only events with a timestamp in seconds <= this value will be returned Specifying startCursor will supercede this value

productIds?: number[]