import { OlapCurrencyAmount } from "./OlapCurrencyAmount"; import { OlapCurrencyAmountWithChange } from "./OlapCurrencyAmountWithChange"; export type OlapCollectionLeaderboardEntry = { id: string; volumeUsd: OlapCurrencyAmountWithChange; volumeNative: OlapCurrencyAmount; itemsBought: number; floorPrice?: OlapCurrencyAmountWithChange; listed: number; totalItemSupply: number; ownersCount: number; };