ProjectResponse
Type Alias: ProjectResponse
type ProjectResponse = {
createdAt: Date;
description: string | null;
discord: string | null;
id: string;
image: string | null;
name: string;
offchainAllocationEndpoint: string | null;
offers: | {
endTime: Date;
metadata: {
backgroundColor: ...;
backgroundImage: ...;
colorMode: ...;
description: ...;
image: ...;
title: string;
url: ...;
};
startTime: Date;
status: "DRAFT" | "ACTIVE" | "CLOSED";
} & {
distributors: {
id: ...;
status: ...;
}[];
id: string;
}[]
| null;
roles: {
createdAt: Date;
id: string;
role: "ADMIN" | "BUILDER" | "VIEWER";
updatedAt: Date;
}[];
telegram: string | null;
twitter: string | null;
updatedAt: Date;
website: string | null;
};Properties
createdAt?
description?
discord?
id
image?
name
offchainAllocationEndpoint?
offers?
roles
Name
Type
telegram?
twitter?
updatedAt
website?
Last updated