Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
borispoehland committed Sep 18, 2024
1 parent e88719a commit fed57dc
Showing 1 changed file with 3 additions and 28 deletions.
31 changes: 3 additions & 28 deletions src/types/collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,7 @@ export interface IMintInfo {
}

export interface IMintInfoExtended extends IMintInfo {
collectionInfo: {
name: string
isVerified: boolean
profile: string
banner: string
volume: number
}
collectionInfo: CollectionInfo
}

export interface CollectionCreatorInfo extends CreatorProfile {
Expand Down Expand Up @@ -785,16 +779,7 @@ export type GetCollectionMintInfo = {
hasMetadata: boolean
mediaType: string
mintStages: MintStage[]
collectionInfo: {
name: string
isVerified: boolean
description?: string
socials?: ISocials
profile: string
banner: string
owner: string
isVisible: boolean
}
collectionInfo: CollectionInfo
creatorInfo: CreatorProfile
}

Expand Down Expand Up @@ -924,17 +909,7 @@ export type CollectionStatsDoc = {
year: TradingDataSummary
}
// applied after db call
collectionInfo?: {
name?: string
banner?: string
description?: string
isVerified: boolean
isVisible: boolean
profile?: string
holdersCount?: number
collectionSize?: number
followCount?: number
}
collectionInfo?: CollectionInfo
id: string
}

Expand Down

0 comments on commit fed57dc

Please sign in to comment.