-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.ts
81 lines (76 loc) · 2.07 KB
/
schema.ts
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { z } from "zod";
const moduleCreationArgSchema = z
.object({
name: z.string(),
description: z.string(),
type: z.string(),
example: z.any(),
displayType: z.union([z.string(), z.object({ type: z.string() })]),
optional: z.boolean().optional(),
})
.strict();
const moduleWriteFunctionArgSchema = z
.object({
name: z.string(),
description: z.string(),
type: z.string(),
displayType: z.union([z.string(), z.object({ type: z.string() })]),
optional: z.boolean().optional(),
})
.strict();
const moduleRoleSchema = z
.object({
id: z.string(),
name: z.string(),
criteria: z.string().nullable(),
hatAdminsFallback: z.boolean().optional(),
})
.strict();
const moduleWriteFunctionSchema = z
.object({
roles: z.array(z.string()),
functionName: z.string(),
label: z.string(),
description: z.string(),
primary: z.boolean().optional(),
args: z.array(moduleWriteFunctionArgSchema),
})
.strict();
export const moduleSchema = z
.object({
id: z.string(),
version: z.string(),
name: z.string(),
details: z.array(z.string()),
links: z.array(z.object({ label: z.string(), link: z.string() })),
parameters: z.array(
z.object({
label: z.string(),
functionName: z.string(),
displayType: z.union([z.string(), z.object({ type: z.string() })]),
}),
),
type: z.object({
eligibility: z.boolean(),
toggle: z.boolean(),
hatter: z.boolean(),
}),
tags: z.array(
z.object({
label: z.string(),
description: z.string(),
value: z.string(),
}),
),
implementationAddress: z.string().regex(/^0x[a-fA-F0-9]{40}$/),
deployments: z.array(z.object({ chainId: z.string(), block: z.string() })),
creationArgs: z.object({
useHatId: z.boolean(),
immutable: z.array(moduleCreationArgSchema),
mutable: z.array(moduleCreationArgSchema),
}),
customRoles: z.array(moduleRoleSchema),
writeFunctions: z.array(moduleWriteFunctionSchema),
abi: z.any(),
})
.strict();