import { OlapCurrencyAmount } from "./OlapCurrencyAmount"; import { OlapCurrencyAmountWithChange } from "./OlapCurrencyAmountWithChange"; import { OlapIntegerNumberWithChange } from "./OlapIntegerNumberWithChange"; export type OlapTrendingCollectionEntry = { id: string; numberOfSales: OlapIntegerNumberWithChange; volumeUsd: OlapCurrencyAmountWithChange; volumeNative: OlapCurrencyAmount; floorPrice?: OlapCurrencyAmount; };