import { Blockchain } from "./Blockchain"; import { CollectionId } from "@rarible/types"; import { ItemId } from "@rarible/types"; import { Platform } from "./Platform"; import { UnionAddress } from "@rarible/types"; export type OwnershipSearchFilter = { blockchains?: Array; owners?: Array; collections?: Array; items?: Array; beforeDate?: string; afterDate?: string; sellPriceFrom?: number; sellPriceTo?: number; sellCurrency?: string; sellPlatforms?: Array; };