Type Alias VolumeDataPoint

VolumeDataPoint: {
    avgPrice: number;
    dailyVolume: number;
    day: number;
    salesCount: number;
}

Detailed daily data point about the collection's volume.

Type declaration

  • avgPrice: number

    The average price of assets in the collection on the given day.

  • dailyVolume: number

    The total volume of the collection on the given day.

  • day: number

    The day (in UNIX timestamp format) for the volume data.

  • salesCount: number

    The number of sales of assets in the collection on the given day.