Collection

type Collection = {
    collectionId: string;
    collectionName: string;
    collectionImage: string;
    collectionBanner: string;
    description: string;
    creator: UserAlias;
    slotId: string;
    maximum: number;
    minted: number;
    tags: string[];
    royaltyRecipient: UserAlias;
    status: CollectionStatus;
    createdAt: number;
    updatedAt: number;
    exampleExpressionValues: ExpressionValue[];
    type?: CollectionType;
    properties?: BasicAnyObject;
};
export type CollectionType = 'Identical' | 'Unique';
export type CollectionStatus = 'active' | 'inactive';

Last updated