import { AssetType } from "./AssetType"; import { BigNumberLike } from "@rarible/types"; import { UnionAddress } from "@rarible/types"; export type ItemLastSale = { date: string; seller?: UnionAddress; buyer?: UnionAddress; value: BigNumberLike; currency: AssetType; price: BigNumberLike; };