-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
28 lines (25 loc) · 825 Bytes
/
constants.ts
File metadata and controls
28 lines (25 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import TicketFactory from "./abis/factory.json";
export const contracts: Contracts = {
factory: {
bytecode: TicketFactory.bytecode,
abi: TicketFactory.abi,
},
};
export const categories = [
{ value: "gig", label: "Gig" },
{ value: "festival", label: "Festival" },
{ value: "exhibition", label: "Exhibition" },
{ value: "talk", label: "Talk" },
{ value: "clubnight", label: "Clubnight" },
{ value: "instructional", label: "Instructional" },
{ value: "cinema", label: "Cinema" },
{ value: "theatre", label: "Theatre" },
{ value: "other", label: "Other" },
];
export const genres = [
{ value: "history", label: "History" },
{ value: "abstract", label: "Abstract" },
{ value: "comedy", label: "Comedy" },
{ value: "acoustic", label: "Acoustic" },
{ value: "other", label: "Other" },
];