import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import * as operations from "../models/operations/index.js"; export declare class NFTDataAndHistoricalStatistics extends ClientSDK { /** * Get user volume * * @remarks * Users (top buyers/sellers) leaderboard. Calculated as traded worth for the period. */ getUserRankingByVolume(request: operations.GetUserRankingByVolumeRequest, options?: RequestOptions): Promise; /** * Get NFT Collections volume * * @remarks * Collections leaderboard by trade activity */ getCollectionRankingByVolume(request: operations.GetCollectionRankingByVolumeRequest, options?: RequestOptions): Promise; /** * Get NFT Collection tx stats * * @remarks * Get historical statistics about Collection transactions */ getTransactions(request: operations.GetTransactionsRequest, options?: RequestOptions): Promise; /** * Get NFT Collection stats * * @remarks * Get general statistics about Collection * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getCollectionStats(request: operations.GetCollectionStatsRequest, options?: RequestOptions): Promise; /** * Get NFT Collection statistics * * @remarks * Get statistics about a collection */ getCollectionStatistics(request: operations.GetCollectionStatisticsRequest, options?: RequestOptions): Promise; /** * Get NFT Collection seller stats * * @remarks * Get historical statistics about Collection sellers */ getSellers(request: operations.GetSellersRequest, options?: RequestOptions): Promise; /** * Get NFT Collections GVM * * @remarks * Get historical statistics about Collection gross merchandise value */ getGmv(request: operations.GetGmvRequest, options?: RequestOptions): Promise; /** * Get NFT Collection floor price * * @remarks * Get historical statistics about Collection's NFT floor price */ getFloorPrice(request: operations.GetFloorPriceRequest, options?: RequestOptions): Promise; /** * Get NFT Collection buyer stats * * @remarks * Get historical statistics about Collection buyers */ getBuyers(request: operations.GetBuyersRequest, options?: RequestOptions): Promise; /** * Get NFT Collection listing stats * * @remarks * Get historical statistics of collection listed count */ getListed(request: operations.GetListedRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=nftdataandhistoricalstatistics.d.ts.map