-
Notifications
You must be signed in to change notification settings - Fork 18
/
schema.graphql
408 lines (355 loc) · 9.07 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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
type Question @entity {
id: ID!
templateId: BigInt!
data: String!
title: String
outcomes: [String!]
category: String
language: String
arbitrator: Bytes!
openingTimestamp: BigInt!
timeout: BigInt!
currentAnswer: Bytes
currentAnswerBond: BigInt
currentAnswerTimestamp: BigInt
arbitrationRequestedTimestamp: BigInt
arbitrationRequestedBy: String
isPendingArbitration: Boolean!
arbitrationOccurred: Boolean!
answerFinalizedTimestamp: BigInt
indexedFixedProductMarketMakers: [FixedProductMarketMaker!]!
conditions: [Condition!]! @derivedFrom(field: "question")
answers: [Answer!] @derivedFrom(field: "question")
}
type Answer @entity {
id: ID!
timestamp: BigInt!
answer: Bytes!
bondAggregate: BigInt!
question: Question!
}
type ScalarQuestionLink @entity {
id: ID!
conditionQuestionId: Bytes!
realityEthQuestionId: Bytes!
question: Question
scalarLow: BigInt!
scalarHigh: BigInt!
}
type Category @entity {
id: ID!
numConditions: Int!
numOpenConditions: Int!
numClosedConditions: Int!
}
type Condition @entity {
id: ID!
oracle: Bytes!
questionId: Bytes!
question: Question
outcomeSlotCount: Int!
resolutionTimestamp: BigInt
payouts: [BigDecimal!]
scalarLow: BigInt
scalarHigh: BigInt
fixedProductMarketMakers: [FixedProductMarketMaker!]!
@derivedFrom(field: "conditions")
}
type FixedProductMarketMaker @entity {
id: ID!
creator: Bytes!
creationTimestamp: BigInt!
collateralToken: Bytes!
conditions: [Condition!]!
fee: BigInt!
collateralVolume: BigInt!
scaledCollateralVolume: BigDecimal!
usdVolume: BigDecimal!
outcomeTokenAmounts: [BigInt!]!
outcomeTokenMarginalPrices: [BigDecimal!]
outcomeSlotCount: Int
liquidityMeasure: BigInt!
scaledLiquidityMeasure: BigDecimal!
usdLiquidityMeasure: BigDecimal!
liquidityParameter: BigInt!
scaledLiquidityParameter: BigDecimal!
usdLiquidityParameter: BigDecimal!
lastActiveDay: BigInt!
lastActiveHour: BigInt!
collateralVolumeBeforeLastActiveDayByHour: [BigInt!]!
usdVolumeBeforeLastActiveDayByHour: [BigDecimal!]!
runningDailyVolume: BigInt!
scaledRunningDailyVolume: BigDecimal!
usdRunningDailyVolume: BigDecimal!
lastActiveDayAndRunningDailyVolume: BigInt!
lastActiveDayAndScaledRunningDailyVolume: BigInt!
runningDailyVolumeByHour: [BigInt!]!
usdRunningDailyVolumeByHour: [BigDecimal!]!
sort24HourVolume0: BigDecimal!
sort24HourVolume1: BigDecimal!
sort24HourVolume2: BigDecimal!
sort24HourVolume3: BigDecimal!
sort24HourVolume4: BigDecimal!
sort24HourVolume5: BigDecimal!
sort24HourVolume6: BigDecimal!
sort24HourVolume7: BigDecimal!
sort24HourVolume8: BigDecimal!
sort24HourVolume9: BigDecimal!
sort24HourVolume10: BigDecimal!
sort24HourVolume11: BigDecimal!
sort24HourVolume12: BigDecimal!
sort24HourVolume13: BigDecimal!
sort24HourVolume14: BigDecimal!
sort24HourVolume15: BigDecimal!
sort24HourVolume16: BigDecimal!
sort24HourVolume17: BigDecimal!
sort24HourVolume18: BigDecimal!
sort24HourVolume19: BigDecimal!
sort24HourVolume20: BigDecimal!
sort24HourVolume21: BigDecimal!
sort24HourVolume22: BigDecimal!
sort24HourVolume23: BigDecimal!
indexedOnQuestion: Boolean!
curatedByDxDao: Boolean!
# copy of conditions' content if it is a 1-large array
condition: Condition
# lifted from condition
oracle: Bytes
question: Question
scalarLow: BigInt
scalarHigh: BigInt
# lifted from condition's question
templateId: BigInt
data: String
title: String
outcomes: [String!]
category: String
language: String
arbitrator: Bytes
openingTimestamp: BigInt
timeout: BigInt
# pushed from condition & question if this fpmm one of the first
resolutionTimestamp: BigInt
payouts: [BigDecimal!]
currentAnswer: Bytes
currentAnswerBond: BigInt
currentAnswerTimestamp: BigInt
isPendingArbitration: Boolean
arbitrationOccurred: Boolean
answerFinalizedTimestamp: BigInt
poolMembers: [FpmmPoolMembership!] @derivedFrom(field: "pool")
participants: [FpmmParticipation!] @derivedFrom(field: "fpmm")
# Generalized TCR fields (Kleros Curate Contract for market verification)
submissionIDs: [KlerosSubmission!]!
klerosTCRregistered: Boolean!
curatedByDxDaoOrKleros: Boolean!
factory: String!
}
type FpmmPoolMembership @entity {
id: ID!
pool: FixedProductMarketMaker!
funder: Account!
amount: BigInt!
}
type FpmmParticipation @entity {
id: ID!
fpmm: FixedProductMarketMaker!
participant: Account!
# lifted from fpmm
creationTimestamp: BigInt!
collateralToken: Bytes!
fee: BigInt!
title: String
# lifted from fpmm's condition's question
category: String
language: String
arbitrator: Bytes
openingTimestamp: BigInt
timeout: BigInt
}
enum TradeType {
Buy
Sell
}
enum LiquidityType {
Add
Remove
}
enum TransactionType {
Buy
Sell
Add
Remove
}
enum FpmmType {
Trade
Liquidity
}
type FpmmTrade @entity {
id: ID!
fpmm: FixedProductMarketMaker!
# lifted from fpmm
title: String
collateralToken: Bytes!
outcomeTokenMarginalPrice: BigDecimal!
oldOutcomeTokenMarginalPrice: BigDecimal!
type: TradeType!
creator: Account!
creationTimestamp: BigInt!
collateralAmount: BigInt!
collateralAmountUSD: BigDecimal!
feeAmount: BigInt!
outcomeIndex: BigInt!
outcomeTokensTraded: BigInt!
transactionHash: Bytes!
}
type FpmmLiquidity @entity {
id: ID!
fpmm: FixedProductMarketMaker!
type: LiquidityType!
outcomeTokenAmounts: [BigInt!]
collateralTokenAmount: BigInt!
additionalLiquidityParameter: BigInt!
funder: Account!
sharesAmount: BigInt!
collateralRemovedFromFeePool: BigInt
creationTimestamp: BigInt!
transactionHash: Bytes!
additionalSharesCost: BigInt!
}
type FpmmTransaction @entity {
id: ID!
fpmm: FixedProductMarketMaker!
user: Account!
fpmmType: FpmmType!
transactionType: TransactionType!
collateralTokenAmount: BigInt!
sharesOrPoolTokenAmount: BigInt!
creationTimestamp: BigInt!
transactionHash: Bytes!
additionalSharesCost: BigInt
}
type Account @entity {
id: ID!
tradeNonce: BigInt!
fpmmPoolMemberships: [FpmmPoolMembership!] @derivedFrom(field: "funder")
fpmmParticipations: [FpmmParticipation!] @derivedFrom(field: "participant")
}
type Token @entity {
id: ID!
scale: BigInt!
ethPerToken: BigDecimal
liquidity: BigInt
usdPerToken: BigDecimal
}
type RegisteredToken @entity {
id: ID!
address: Bytes!
decimals: Int!
name: String!
symbol: String!
}
type TokenList @entity {
id: ID!
listId: BigInt!
listName: String!
tokens: [RegisteredToken!]
activeTokenCount: BigInt!
}
type UniswapPair @entity {
id: ID!
token0: Token!
token1: Token!
reserve0: BigInt!
reserve1: BigInt!
}
type Global @entity {
# ID is empty string, this is a singleton
id: ID!
numConditions: Int!
numOpenConditions: Int!
numClosedConditions: Int!
usdPerEth: BigDecimal
usdVolume: BigDecimal!
}
enum KlerosStatus {
"The item is not registered on the TCR and there are no pending requests."
Absent
"The item is registered and there are no pending requests."
Registered
"The item is not registered on the TCR, but there is a pending registration request."
RegistrationRequested
"The item is registered on the TCR, but there is a pending removal request. These are sometimes also called removal requests."
ClearingRequested
}
type KlerosSubmission @entity {
id: ID!
status: KlerosStatus!
listAddress: String!
market: FixedProductMarketMaker!
}
type _Schema_
@fulltext(
name: "marketSearch"
language: en
algorithm: rank
include: [
{ entity: "FixedProductMarketMaker", fields: [{ name: "title" }] }
]
)
# Staking rewards distribution factory
type StakingRewardsFactory @entity {
# factory address
id: ID!
initializedCampaignsCount: Int!
}
# Liquidity mining campaign
type LiquidityMiningCampaign @entity {
# campaign address
id: ID!
initialized: Boolean!
owner: Bytes!
startsAt: BigInt!
endsAt: BigInt!
duration: BigInt!
locked: Boolean!
fpmm: FixedProductMarketMaker!
rewardTokens: [Token!]!
rewardAmounts: [BigInt!]!
stakedAmount: BigInt!
deposits: [LMDeposit!]! @derivedFrom(field: "liquidityMiningCampaign")
withdrawals: [LMWithdrawal!]! @derivedFrom(field: "liquidityMiningCampaign")
claims: [LMClaim!]! @derivedFrom(field: "liquidityMiningCampaign")
recoveries: [LMRecovery!]! @derivedFrom(field: "liquidityMiningCampaign")
}
# Pool tokens depositing into liquidity mining contract
type LMDeposit @entity {
id: ID!
user: Bytes!
timestamp: BigInt!
liquidityMiningCampaign: LiquidityMiningCampaign!
amount: BigInt!
}
# Pool tokens withdrawing from liquidity mining contract
type LMWithdrawal @entity {
id: ID!
user: Bytes!
timestamp: BigInt!
liquidityMiningCampaign: LiquidityMiningCampaign!
amount: BigInt!
}
# Reward tokens claiming from liquidity mining contract
type LMClaim @entity {
id: ID!
user: Bytes!
timestamp: BigInt!
liquidityMiningCampaign: LiquidityMiningCampaign!
amounts: [BigInt!]!
}
# Reward tokens recovery from distribution owner
type LMRecovery @entity {
id: ID!
timestamp: BigInt!
liquidityMiningCampaign: LiquidityMiningCampaign!
amounts: [BigInt!]!
}