From d121c8f2c5078be94bf17e34b54bf145dd3e2a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20P=C3=B6hland?= Date: Wed, 18 Sep 2024 17:39:18 +0200 Subject: [PATCH] update type --- src/types/nft.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/types/nft.ts b/src/types/nft.ts index 5b0282f..5673dfe 100644 --- a/src/types/nft.ts +++ b/src/types/nft.ts @@ -1,6 +1,7 @@ import type { GlobalOffers, ICollectionProfile, + ISocials, MetadataAttribute, } from './collection' @@ -118,10 +119,12 @@ export interface CollectionInfo { isVisible: boolean profile: string banner: string - collectionSize: number + socials?: ISocials + collectionSize?: number description?: string followCount?: number holdersCount?: number + volume?: number customConfig?: ICollectionProfile['customConfig'] }