import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OlapGeneralStatsResponse = { /** * Highest worth transaction in collection */ highestSale: number; /** * Minimal price of nft in this collection available on rarible */ floorPrice?: number | undefined; /** * Market cap of collection (floor price * total item supply) */ marketCap?: number | undefined; /** * Amount of currently listed items */ listed: number; /** * Total item supply of all nfts in the collection */ items: number; /** * Current amount of unique owners who hold nfts of this collection */ owners: number; /** * Total worth of all transactions were made with nfts in this collection */ volume: number; }; /** @internal */ export declare const OlapGeneralStatsResponse$inboundSchema: z.ZodType; /** @internal */ export type OlapGeneralStatsResponse$Outbound = { highestSale: number; floorPrice?: number | undefined; marketCap?: number | undefined; listed: number; items: number; owners: number; volume: number; }; /** @internal */ export declare const OlapGeneralStatsResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace OlapGeneralStatsResponse$ { /** @deprecated use `OlapGeneralStatsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OlapGeneralStatsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OlapGeneralStatsResponse$Outbound` instead. */ type Outbound = OlapGeneralStatsResponse$Outbound; } export declare function olapGeneralStatsResponseToJSON(olapGeneralStatsResponse: OlapGeneralStatsResponse): string; export declare function olapGeneralStatsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=olapgeneralstatsresponse.d.ts.map