-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
61 lines (55 loc) · 1.15 KB
/
schema.graphql
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
# events
# AssessReason
# any mainnet deployments yet or only sepolia
# matchstick tests- no
enum CookieJarType {
ERC20CookieJar6551
ERC721CookieJar6551
BaalCookieJar6551
ListCookieJar6551
OpenCookieJar6551
ZodiacERC20CookieJar
ZodiacERC721CookieJar
ZodiacBaalCookieJar
ZodiacListCookieJar
ZodiacOpenCookieJar
}
# SummonCookieJar (factory) + Setup (cookie jar)
# DonationReceived
type CookieJar @entity {
id: Bytes! # address
name: String!
# type: CookieJarType!
type: String!
description: String!
link: String!
cookieToken: Bytes!
cookieAmount: BigInt! # fixed amount
periodLength: BigInt! # time limit for claiming a cookie
owner: Bytes! # address
target: Bytes!
claims: [Claim!]! @derivedFrom(field: "jar")
}
# GiveCookie (on making claim)
type Claim @entity {
id: Bytes!
uuid: String!
claimer: Bytes! # address
receiver: Bytes! # address
reason: Reason! # or bytes?
jar: CookieJar!
amount: BigInt!
timestamp: BigInt!
}
type Reason @entity {
id: Bytes!
tag: String!
reason: String!
link: String!
}
type ReasonAssessment @entity {
id: Bytes!
claim: Claim!
assessor: Bytes!
assessment: Boolean!
}