Type Alias LootexCollection

LootexCollection: {
    bannerImageUrl: string | null;
    bestCollectionOffer: {
        bestSeaportOrder: LootexOrder;
        hasBestCollectionOrder: boolean;
        priceSymbol: string | null;
    } | null;
    bestOffer?: number;
    chainId: string;
    chainShortName: string;
    contractAddress: `0x${string}`;
    contractType: "ERC721" | "ERC1155";
    creatorFee: string;
    creatorFeeAddress: `0x${string}` | null;
    currentListing: number;
    currentOffer: number;
    description: string | null;
    externalLinks: ExternalLink[] | null;
    featured: CollectionFeaturedAsset[];
    featuredImageUrl: string | null;
    featuredVideoUrl: string | null;
    floorPrice: number;
    id: string;
    isCampaign202408Featured?: boolean;
    isCreatorFee: boolean;
    isDrop?: boolean;
    isGoldVerified: boolean;
    isLike?: boolean;
    isMinting: boolean;
    isRarity?: boolean;
    isSensitive: boolean;
    isVerified: boolean;
    likes: number;
    logoImageUrl: string | null;
    name: string;
    officialAddress: `0x${string}` | string | null;
    orderInfo?: {
        bestOffer: number;
        currentListing: number;
        floorPrice: number;
        totalVolume: number;
    };
    ownerAddress: `0x${string}`;
    priceSymbol: string;
    serviceFee: string;
    slug: string;
    totalItems: number;
    totalListing: number;
    totalOffer: number;
    totalOwners: number;
    totalTradingCount: string;
    totalVolume: number;
}