import { BigNumberLike } from "@rarible/types"; import { Blockchain } from "./Blockchain"; import { CollectionId } from "@rarible/types"; import { Creator } from "./Creator"; import { OwnershipId } from "@rarible/types"; import { UnionAddress } from "@rarible/types"; export type ItemOwnership = { id: OwnershipId; blockchain: Blockchain; collection?: CollectionId; owner: UnionAddress; value: BigNumberLike; createdAt: string; creators: Array; lazyValue: BigNumberLike; version?: number; };