From 7f4914ff45c2bebfa22f2fd952ab69a7615c72e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20P=C3=B6hland?= Date: Wed, 18 Sep 2024 17:59:01 +0200 Subject: [PATCH] continue --- src/types/collection.ts | 3 +-- src/types/nft.ts | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/collection.ts b/src/types/collection.ts index b88d586..11cf716 100644 --- a/src/types/collection.ts +++ b/src/types/collection.ts @@ -908,8 +908,7 @@ export type CollectionStatsDoc = { halfYear: TradingDataSummary year: TradingDataSummary } - // applied after db call - collectionInfo?: CollectionInfo + collectionInfo: CollectionInfo id: string } diff --git a/src/types/nft.ts b/src/types/nft.ts index 5673dfe..eacf35c 100644 --- a/src/types/nft.ts +++ b/src/types/nft.ts @@ -125,6 +125,7 @@ export interface CollectionInfo { followCount?: number holdersCount?: number volume?: number + owner?: string customConfig?: ICollectionProfile['customConfig'] }