You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The address of the party that sent this piece of evidence."
38
-
party: Bytes!
39
-
"The URI of the evidence file."
40
-
URI: String!
41
-
"This is the <number>th evidence submitted (starting at 0) for <request>."
42
-
number: BigInt!
43
-
"When was this evidence posted"
44
-
timestamp: BigInt!
45
-
"Tx hash of the evidence submission"
46
-
txHash: Bytes!
47
-
"Name of the evidence"
48
-
name: String
49
-
"Title of the evidence"
50
-
title: String
51
-
"Description of the evidence"
52
-
description: String
53
-
"URI of the attached file"
54
-
fileURI: String
55
-
"File extension of the attached file"
56
-
fileTypeExtension: String
57
-
}
58
-
59
21
typeArbitrator@entity {
60
22
"The address of the arbitrator"
61
23
id: ID!
@@ -167,12 +129,6 @@ type Request @entity {
167
129
deposit: BigInt!
168
130
"The outcome of the dispute, if any. Note that unsuccessful appeal fundings can invert the arbitrator ruling (so this may differ from the ruling given by the arbitrator)."
169
131
disputeOutcome: Ruling!
170
-
"Tracks each round of a dispute in the form rounds[roundID]."
171
-
rounds: [Round!]!@derivedFrom(field: "request")
172
-
"The evidence group for this request."
173
-
evidenceGroup: EvidenceGroup!
174
-
"The total number of rounds on this request."
175
-
numberOfRounds: BigInt!
176
132
"Whether it was requested to add or remove the item to/from the list."
177
133
requestType: Status!
178
134
"The item this request belongs to."
@@ -190,58 +146,3 @@ type Request @entity {
190
146
"The hash of the transaction that solved this request."
191
147
resolutionTx: Bytes
192
148
}
193
-
194
-
typeRound@entity {
195
-
id: ID!
196
-
"The total amount of appeal fees contributed to the requester in this round."
197
-
amountPaidRequester: BigInt!
198
-
"The total amount of appeal fees contributed to the challenger in this round."
199
-
amountPaidChallenger: BigInt!
200
-
"Whether the requester is fully funded."
201
-
hasPaidRequester: Boolean!
202
-
"Whether the challenger is fully funded."
203
-
hasPaidChallenger: Boolean!
204
-
"When was the last contribution for requester (hack for curate bot)"
205
-
lastFundedRequester: BigInt!
206
-
"When was the last contribution for challenger (hack for curate bot)"
207
-
lastFundedChallenger: BigInt!
208
-
"Sum of reimbursable fees and stake rewards available to the parties that made contributions to the side that ultimately wins a dispute."
209
-
feeRewards: BigInt!
210
-
"The request to which this round belongs."
211
-
request: Request!
212
-
"The time the appeal period starts, if in the appeal period."
213
-
appealPeriodStart: BigInt!
214
-
"The time the appeal period ends, if in the appeal period."
215
-
appealPeriodEnd: BigInt!
216
-
"The time the round received the ruling."
217
-
rulingTime: BigInt!
218
-
"The ruling given by the arbitrator."
219
-
ruling: Ruling!
220
-
"The tx hash of the moment appealing became possible"
221
-
txHashAppealPossible: Bytes
222
-
"The tx hash of the moment the round was appealed"
0 commit comments