-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
349 lines (303 loc) · 7.49 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
"""
This entity represents a gOHM token holder that has delegated their voting power to an address.
"""
type VoteDelegator @entity {
"""
Record ID.
Format: token holder address
"""
id: Bytes!
"""
Address of the owner/delegator.
"""
address: Bytes!
"""
Delegatee record.
Null if the votes have not been delegated.
"""
delegatee: Voter
}
"""
This entity represents a voter that has received delegations and can cast votes.
"""
type Voter @entity {
"""
Record ID.
Format: voter address
"""
id: Bytes!
"""
Voter address.
"""
address: Bytes!
"""
Latest voting power snapshot.
"""
latestVotingPowerSnapshot: VoterVotingPowerSnapshot
# Related entities
proposalsCreated: [ProposalCreated!] @derivedFrom(field: "proposer")
votesCasted: [VoteCast!] @derivedFrom(field: "voter")
votingPowerSnapshots: [VoterVotingPowerSnapshot!] @derivedFrom(field: "voter")
"""
Addresses that have delegated their voting power to this voter.
"""
delegators: [VoteDelegator!] @derivedFrom(field: "delegatee")
}
"""
This entity represents a snapshot of a voter's voting power.
"""
type VoterVotingPowerSnapshot @entity(immutable: true) {
"""
Record ID.
Format: `{voter}{blockNumber}{logIndex}`
"""
id: Bytes!
"""
Voter address.
"""
voter: Voter!
"""
Voting power, the sum of all delegations.
"""
votingPower: BigDecimal!
"""
Block number of the snapshot.
"""
blockNumber: BigInt!
"""
Timestamp of the snapshot.
"""
blockTimestamp: BigInt!
# Related records
event: DelegateVotesChanged @derivedFrom(field: "snapshot")
}
type NewAdmin @entity(immutable: true) {
id: Bytes!
oldAdmin: Bytes! # address
newAdmin: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type NewImplementation @entity(immutable: true) {
id: Bytes!
oldImplementation: Bytes! # address
newImplementation: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type NewPendingAdmin @entity(immutable: true) {
id: Bytes!
oldPendingAdmin: Bytes! # address
newPendingAdmin: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ProposalCanceled @entity(immutable: true) {
"""
Record ID.
A proposal can only be cancelled once, so the record ID can be the proposal ID and not have any clashes.
Format: `{proposalId}`
"""
id: String!
proposalId: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
proposal: ProposalCreated!
}
type ProposalCreated @entity(immutable: true) {
"""
Record ID.
Format: `{proposalId}`
"""
id: String!
proposalId: BigInt! # uint256
proposer: Voter!
targets: [Bytes!]! # address[]
values: [BigInt!]! # uint256[]
signatures: [String!]! # string[]
calldatas: [Bytes!]! # bytes[]
startBlock: BigInt! # uint256
description: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
cancelled: ProposalCanceled @derivedFrom(field: "proposal")
executed: ProposalExecuted @derivedFrom(field: "proposal")
queued: ProposalQueued @derivedFrom(field: "proposal")
vetoed: ProposalVetoed @derivedFrom(field: "proposal")
votingStarted: ProposalVotingStarted @derivedFrom(field: "proposal")
votes: [VoteCast!] @derivedFrom(field: "proposal")
}
type ProposalExecuted @entity(immutable: true) {
"""
Record ID.
A proposal can only be executed once, so the record ID can be the proposal ID and not have any clashes.
Format: `{proposalId}`
"""
id: String!
proposalId: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
proposal: ProposalCreated!
}
type ProposalQueued @entity(immutable: true) {
"""
Record ID.
A proposal can only be queued once, so the record ID can be the proposal ID and not have any clashes.
Format: `{proposalId}`
"""
id: String!
proposalId: BigInt! # uint256
eta: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
proposal: ProposalCreated!
}
type ProposalThresholdSet @entity(immutable: true) {
id: Bytes!
oldProposalThreshold: BigInt! # uint256
newProposalThreshold: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ProposalVetoed @entity(immutable: true) {
"""
Record ID.
A proposal can only be vetoed once, so the record ID can be the proposal ID and not have any clashes.
Format: `{proposalId}`
"""
id: String!
proposalId: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
proposal: ProposalCreated!
}
type ProposalVotingStarted @entity(immutable: true) {
"""
Record ID.
A proposal can only have voting started once, so the record ID can be the proposal ID and not have any clashes.
Format: `{proposalId}`
"""
id: String!
proposalId: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
proposal: ProposalCreated!
}
type VetoGuardianSet @entity(immutable: true) {
id: Bytes!
oldGuardian: Bytes! # address
newGuardian: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type VoteCast @entity(immutable: true) {
"""
Record ID.
Format: `{proposalId}-{voter}-{transactionHash}-{logIndex}`
"""
id: String!
voter: Voter!
proposalId: BigInt! # uint256
support: Int! # uint8
votes: BigDecimal!
reason: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
proposal: ProposalCreated!
}
type VotingDelaySet @entity(immutable: true) {
id: Bytes!
oldVotingDelay: BigInt! # uint256
newVotingDelay: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type VotingPeriodSet @entity(immutable: true) {
id: Bytes!
oldVotingPeriod: BigInt! # uint256
newVotingPeriod: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type WhitelistAccountExpirationSet @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
expiration: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type WhitelistGuardianSet @entity(immutable: true) {
id: Bytes!
oldGuardian: Bytes! # address
newGuardian: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type DelegateChanged @entity(immutable: true) {
"""
Record ID.
Format: `{delegator}{blockNumber}{logIndex}`
"""
id: Bytes!
"""
Address delegating voting power.
"""
delegator: VoteDelegator!
"""
The previous delegatee.
"""
previousDelegatee: Voter
"""
The new delegatee.
"""
newDelegatee: Voter
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
"""
This entity records the event emitted when the voting power delegated to a delegatee changes.
Due to a limitation in the emitted event, it is not possible to determine the delegator.
"""
type DelegateVotesChanged @entity(immutable: true) {
"""
Record ID.
Format: `{delegatee}{blockNumber}{logIndex}`
"""
id: Bytes!
"""
Address receiving delegated voting power.
"""
delegatee: Voter!
"""
Previous voting power contributed by the delegator.
"""
previousBalance: BigDecimal!
"""
New voting power contributed by the delegator.
"""
newBalance: BigDecimal!
"""
Voting power snapshot record.
"""
snapshot: VoterVotingPowerSnapshot!
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}