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

    Class CollectionStatsDoc<T>

    Type Parameters

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Properties

    _docId: string

    A unique stringified document ID

    _id?: string

    A unique document ID (Mongo DB ObjectID)

    collectionId: string

    The collection ID

    dailyVolume: CosmosCoin<T>[]

    The daily volume of the collection

    floorPriceHistory?: FloorPriceHistory<T>[]

    Floor price history

    floorPrices?: CosmosCoin<T>[]

    Floor price of the collection

    lastUpdatedAt: T

    Last set timestamp

    monthlyVolume: CosmosCoin<T>[]

    The monthly volume of the collection

    overallVolume: CosmosCoin<T>[]

    The overall volume of the collection

    payoutRewards?: CosmosCoin<T>[]

    The payout reward

    uniqueOwners: BalanceArray<T>

    Number of unique owners by time

    weeklyVolume: CosmosCoin<T>[]

    The weekly volume of the collection

    yearlyVolume: CosmosCoin<T>[]

    The yearly volume of the collection

    Methods

    • Compares this object's fields to another object's fields for equality. Equality is determined by comparing the JSON representations of the objects.

      If normalizeNumberTypes is true, then all number types will be compared as strings (i.e. "1n" === "1" === 1). Else, they will be compared as their native types (i.e. 1n !== 1 !== "1").

      Type Parameters

      Parameters

      • other: undefined | null | CustomType<U>
      • OptionalnormalizeNumberTypes: boolean

      Returns boolean