forked from moose-code/polymarket-indexer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.graphql
More file actions
547 lines (490 loc) · 13.9 KB
/
schema.graphql
File metadata and controls
547 lines (490 loc) · 13.9 KB
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
## ============================================================
## Phase 1A: Fee Module
## ============================================================
type FeeRefunded @index(fields: ["refundee", ["timestamp", "DESC"]]) {
id: ID!
orderHash: String! @index
tokenId: String! @index
timestamp: BigInt! @index
refundee: String! @index
feeRefunded: BigInt!
feeCharged: BigInt!
negRisk: Boolean!
}
## ============================================================
## Phase 1B: Sports Oracle
## ============================================================
type Game {
id: ID!
ancillaryData: String!
ordering: String!
state: String! @index
homeScore: BigInt!
awayScore: BigInt!
}
type Market {
id: ID!
gameId: String! @index
state: String! @index
marketType: String!
underdog: String!
line: BigInt!
payouts: [BigInt!]!
}
## ============================================================
## Phase 2A: Wallet
## ============================================================
type Wallet {
id: ID!
signer: String! @index
type: String!
balance: BigInt!
lastTransfer: BigInt!
createdAt: BigInt!
}
type GlobalUSDCBalance {
id: ID!
balance: BigInt!
}
## ============================================================
## Phase 2B: Orderbook
## ============================================================
type MarketData {
id: ID!
condition: String! @index
outcomeIndex: BigInt
marketName: String!
marketSlug: String! @index
outcomes: String!
description: String!
image: String!
startDate: String!
endDate: String!
}
type OrderFilledEvent
@index(fields: ["maker", ["timestamp", "DESC"]])
@index(fields: ["makerAssetId", ["timestamp", "DESC"]]) {
id: ID!
transactionHash: String!
timestamp: BigInt! @index
orderHash: String! @index
maker: String! @index
taker: String! @index
makerAssetId: String! @index
takerAssetId: String! @index
makerAmountFilled: BigInt!
takerAmountFilled: BigInt!
fee: BigInt!
}
type OrdersMatchedEvent {
id: ID!
timestamp: BigInt! @index
makerAssetID: BigInt!
takerAssetID: BigInt!
makerAmountFilled: BigInt!
takerAmountFilled: BigInt!
}
type Orderbook {
id: ID!
tradesQuantity: BigInt!
buysQuantity: BigInt!
sellsQuantity: BigInt!
collateralVolume: BigInt!
scaledCollateralVolume: BigDecimal!
collateralBuyVolume: BigInt!
scaledCollateralBuyVolume: BigDecimal!
collateralSellVolume: BigInt!
scaledCollateralSellVolume: BigDecimal!
}
type OrdersMatchedGlobal {
id: ID!
tradesQuantity: BigInt!
buysQuantity: BigInt!
sellsQuantity: BigInt!
collateralVolume: BigInt!
scaledCollateralVolume: BigDecimal!
collateralBuyVolume: BigInt!
scaledCollateralBuyVolume: BigDecimal!
collateralSellVolume: BigInt!
scaledCollateralSellVolume: BigDecimal!
}
## ============================================================
## Phase 3A: Open Interest
## ============================================================
type Condition {
id: ID!
positionIds: [BigInt!]!
payoutNumerators: [BigInt!]!
payoutDenominator: BigInt!
}
type NegRiskEvent {
id: ID!
feeBps: BigInt!
questionCount: BigInt!
}
type MarketOpenInterest {
id: ID!
amount: BigInt!
}
type GlobalOpenInterest {
id: ID!
amount: BigInt!
}
## ============================================================
## Phase 3B: Activity
## ============================================================
type Split
@index(fields: ["stakeholder", ["timestamp", "DESC"]])
@index(fields: ["condition", ["timestamp", "DESC"]]) {
id: ID!
timestamp: BigInt! @index
stakeholder: String! @index
condition: String! @index
amount: BigInt!
}
type Merge
@index(fields: ["stakeholder", ["timestamp", "DESC"]])
@index(fields: ["condition", ["timestamp", "DESC"]]) {
id: ID!
timestamp: BigInt! @index
stakeholder: String! @index
condition: String! @index
amount: BigInt!
}
type Redemption
@index(fields: ["redeemer", ["timestamp", "DESC"]])
@index(fields: ["condition", ["timestamp", "DESC"]]) {
id: ID!
timestamp: BigInt! @index
redeemer: String! @index
condition: String! @index
indexSets: [BigInt!]!
payout: BigInt!
}
type NegRiskConversion
@index(fields: ["stakeholder", ["timestamp", "DESC"]])
@index(fields: ["negRiskMarketId", ["timestamp", "DESC"]]) {
id: ID!
timestamp: BigInt! @index
stakeholder: String! @index
negRiskMarketId: String! @index
amount: BigInt!
indexSet: BigInt!
questionCount: BigInt!
}
type Position {
id: ID!
condition: String! @index
outcomeIndex: BigInt!
}
type FixedProductMarketMaker {
id: ID!
creator: String! @index
creationTimestamp: BigInt!
creationTransactionHash: String!
collateralToken: String!
conditionalTokenAddress: String!
conditions: [String!]!
fee: BigInt!
tradesQuantity: BigInt!
buysQuantity: BigInt!
sellsQuantity: BigInt!
liquidityAddQuantity: BigInt!
liquidityRemoveQuantity: BigInt!
collateralVolume: BigInt!
scaledCollateralVolume: BigDecimal!
collateralBuyVolume: BigInt!
scaledCollateralBuyVolume: BigDecimal!
collateralSellVolume: BigInt!
scaledCollateralSellVolume: BigDecimal!
feeVolume: BigInt!
scaledFeeVolume: BigDecimal!
liquidityParameter: BigInt!
scaledLiquidityParameter: BigDecimal!
outcomeTokenAmounts: [BigInt!]!
outcomeTokenPrices: [BigDecimal!]!
outcomeSlotCount: BigInt
lastActiveDay: BigInt!
totalSupply: BigInt!
}
## ============================================================
## Phase 4A: PnL
## ============================================================
type UserPosition @index(fields: ["user", "tokenId"]) {
id: ID!
user: String! @index
tokenId: BigInt! @index
amount: BigInt!
avgPrice: BigInt!
realizedPnl: BigInt!
totalBought: BigInt!
}
## ============================================================
## Phase 4B: FPMM
## ============================================================
type Collateral {
id: ID!
name: String!
symbol: String!
decimals: BigInt!
}
enum TransactionType {
Buy
Sell
}
type FpmmTransaction
@index(fields: ["market_id", ["timestamp", "DESC"]])
@index(fields: ["user", ["timestamp", "DESC"]]) {
id: ID!
type: TransactionType!
timestamp: BigInt! @index
market_id: String! @index
user: String! @index
tradeAmount: BigInt!
feeAmount: BigInt!
outcomeIndex: BigInt!
outcomeTokensAmount: BigInt!
}
type FpmmFundingAddition
@index(fields: ["fpmm_id", ["timestamp", "DESC"]])
@index(fields: ["funder", ["timestamp", "DESC"]]) {
id: ID!
timestamp: BigInt! @index
fpmm_id: String! @index
funder: String! @index
amountsAdded: [BigInt!]!
amountsRefunded: [BigInt!]!
sharesMinted: BigInt!
}
type FpmmFundingRemoval
@index(fields: ["fpmm_id", ["timestamp", "DESC"]])
@index(fields: ["funder", ["timestamp", "DESC"]]) {
id: ID!
timestamp: BigInt! @index
fpmm_id: String! @index
funder: String! @index
amountsRemoved: [BigInt!]!
collateralRemoved: BigInt!
sharesBurnt: BigInt!
}
type FpmmPoolMembership {
id: ID!
pool_id: String! @index
funder: String! @index
amount: BigInt!
}
## ============================================================
## Phase 5: Polymarket V2 (CTF Exchange V2, PolyUSD, Rewards)
## ============================================================
# ── V2 Market Metadata (enriched via Gamma API) ─────────────────────
type V2Market {
id: ID! # tokenId (decimal string)
question: String!
slug: String! @index
outcomes: String! # JSON array e.g. '["Yes","No"]'
outcomePrices: String! # JSON array e.g. '["0.6","0.4"]'
description: String!
image: String!
startDate: String!
endDate: String!
conditionId: String! @index
fills: [V2OrderFill!]! @derivedFrom(field: "market")
matches: [V2OrderMatch!]! @derivedFrom(field: "market")
}
# ── V2 Trading ──────────────────────────────────────────────────────
type V2OrderFill
@index(fields: ["maker", ["timestamp", "DESC"]])
@index(fields: ["tokenId", ["timestamp", "DESC"]])
{
id: ID!
orderHash: String! @index
maker: String! @index
taker: String! @index
side: Int! # 0=BUY, 1=SELL
tokenId: BigInt! @index # conditional token ID
market: V2Market # enriched from Gamma API
makerAmountFilled: BigInt!
takerAmountFilled: BigInt!
fee: BigInt!
builder: String! @index # builder code (bytes32)
metadata: String! # metadata (bytes32)
exchange: String! @index # source exchange address
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
txFrom: String! # transaction sender
}
type V2OrderMatch
@index(fields: ["takerOrderMaker", ["timestamp", "DESC"]])
{
id: ID!
takerOrderHash: String! @index
takerOrderMaker: String! @index
side: Int! # 0=BUY, 1=SELL
tokenId: BigInt! @index
market: V2Market # enriched from Gamma API
makerAmountFilled: BigInt!
takerAmountFilled: BigInt!
exchange: String! @index
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
}
type V2FeeEvent {
id: ID!
receiver: String! @index
amount: BigInt!
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
}
# ── V2 PolyUSD ──────────────────────────────────────────────────────
type V2PolyUSDTransfer
@index(fields: ["from", ["timestamp", "DESC"]])
@index(fields: ["to", ["timestamp", "DESC"]])
{
id: ID!
from: String! @index
to: String! @index
amount: BigInt!
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
}
type V2PolyUSDWrap
@index(fields: ["txFrom", ["timestamp", "DESC"]])
{
id: ID!
eventType: String! @index # "wrap" | "unwrap" | "wrap_negrisk_ctf" | "unwrap_negrisk_ctf"
caller: String! @index # msg.sender to pUSD (often an onramp contract)
asset: String! # underlying asset (USDC or USDC.e)
to: String! @index # recipient of the wrapped token
txFrom: String! @index # originating EOA that initiated the tx
amount: BigInt!
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
}
type V2PolyUSDAccount {
id: ID! # address
balance: BigInt!
totalWrapped: BigInt!
totalUnwrapped: BigInt!
}
# ── V2 Rewards ──────────────────────────────────────────────────────
type V2RewardDistribution
@index(fields: ["user", ["timestamp", "DESC"]])
{
id: ID!
user: String! @index
amount: BigInt!
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
}
type V2SponsoredMarket {
id: ID! # marketId (bytes32)
startTime: Int!
minSponsorDuration: Int!
minSponsorAmount: BigInt!
marketData: String!
closed: Boolean! @index
closedAt: Int
createdAt: Int! @index
createdAtBlock: Int!
}
type V2Sponsorship
@index(fields: ["sponsor", ["timestamp", "DESC"]])
@index(fields: ["market", ["timestamp", "DESC"]])
{
id: ID! # txHash-logIndex
market: V2SponsoredMarket!
sponsor: String! @index
amount: BigInt!
startTime: Int!
endTime: Int!
ratePerMinute: BigInt!
withdrawn: Boolean!
returnedAmount: BigInt
consumedAmount: BigInt
isEarlyWithdraw: Boolean
timestamp: Int! @index
blockNumber: Int!
}
# ── V2 Aggregate Stats ──────────────────────────────────────────────
type V2ExchangeStats {
id: ID! # exchange address
totalOrdersFilled: BigInt!
totalOrdersMatched: BigInt!
totalVolume: BigInt!
totalFees: BigInt!
totalBuilderFills: BigInt! # fills with non-zero builder code
}
type V2PolyUSDStats {
id: ID! # "polyusd"
totalSupply: BigInt!
totalWrapped: BigInt!
totalUnwrapped: BigInt!
totalTransfers: BigInt!
}
# ── V2 CTF Collateral Adapter (pUSD-backed position lifecycle) ──────
type V2CtfSplit
@index(fields: ["stakeholder", ["timestamp", "DESC"]])
@index(fields: ["conditionId", ["timestamp", "DESC"]])
{
id: ID! # chainId_block_logIdx
stakeholder: String! @index
collateralToken: String! # underlying collateral passed to adapter
parentCollectionId: String!
conditionId: String! @index
partition: [BigInt!]!
amount: BigInt!
txFrom: String! # originating EOA
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
isNegRisk: Boolean! # true if via NegRiskCtfCollateralAdapter
}
type V2CtfMerge
@index(fields: ["stakeholder", ["timestamp", "DESC"]])
@index(fields: ["conditionId", ["timestamp", "DESC"]])
{
id: ID!
stakeholder: String! @index
collateralToken: String!
parentCollectionId: String!
conditionId: String! @index
partition: [BigInt!]!
amount: BigInt!
txFrom: String!
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
isNegRisk: Boolean!
}
type V2CtfRedemption
@index(fields: ["redeemer", ["timestamp", "DESC"]])
@index(fields: ["conditionId", ["timestamp", "DESC"]])
{
id: ID!
redeemer: String! @index
collateralToken: String!
parentCollectionId: String!
conditionId: String! @index
indexSets: [BigInt!]!
payout: BigInt!
txFrom: String!
timestamp: Int! @index
blockNumber: Int!
transactionHash: String!
isNegRisk: Boolean!
}
type V2CtfAdapterStats {
id: ID! # adapter address
totalSplits: BigInt!
totalMerges: BigInt!
totalRedemptions: BigInt!
totalSplitVolume: BigInt!
totalMergeVolume: BigInt!
totalRedemptionPayout: BigInt!
}