bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iCollectionStatsDoc<T>

    interface iCollectionStatsDoc<T extends NumberType> {
        _docId: string;
        _id?: string;
        collectionId: string;
        dailyVolume: iCosmosCoin<T>[];
        floorPriceHistory?: iFloorPriceHistory<T>[];
        floorPrices?: iCosmosCoin<T>[];
        lastUpdatedAt: T;
        monthlyVolume: iCosmosCoin<T>[];
        overallVolume: iCosmosCoin<T>[];
        payoutRewards?: iCosmosCoin<T>[];
        uniqueOwners: iBalance<T>[];
        weeklyVolume: iCosmosCoin<T>[];
        yearlyVolume: iCosmosCoin<T>[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    _docId: string

    A unique stringified document ID

    _id?: string

    A unique document ID (Mongo DB ObjectID)

    collectionId: string

    The collection ID

    dailyVolume: iCosmosCoin<T>[]

    The daily volume of the collection

    floorPriceHistory?: iFloorPriceHistory<T>[]

    Floor price history

    floorPrices?: iCosmosCoin<T>[]

    Floor price of the collection

    lastUpdatedAt: T

    Last set timestamp

    monthlyVolume: iCosmosCoin<T>[]

    The monthly volume of the collection

    overallVolume: iCosmosCoin<T>[]

    The overall volume of the collection

    payoutRewards?: iCosmosCoin<T>[]

    The payout reward

    uniqueOwners: iBalance<T>[]

    Number of unique owners by time

    weeklyVolume: iCosmosCoin<T>[]

    The weekly volume of the collection

    yearlyVolume: iCosmosCoin<T>[]

    The yearly volume of the collection