export type ItemType = { id: string, contract: string, tokenId: string, creators: Array<{ account: string, value: string }>, supply: string, lazySupply: string, owners: Array, royalties: Array<{ account: string, value: string }>, date: string, deleted: boolean, } export type TezosOrder = { hash: string } export type GetNftOwnershipByIdResponse = { id: string, contract: string, tokenId: string, owner: string, creators: Array<{ account: string, value: string }>, lazySupply: string, date: string, value: string, lazyValue: string, } export type Collection = { id: string, owner: string, type: string, name: string, features: [], "supports_lazy_mint": boolean, minters: string[] }