-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.graphql
664 lines (498 loc) · 12.1 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
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
type Bundle @entity {
id: ID!
# price of AVAX usd
avaxPriceUSD: BigDecimal!
}
type LBFactory @entity {
# Contract address
id: ID!
# Pair count
pairCount: BigInt!
# Volume USD
volumeUSD: BigDecimal!
# Volume AVAX
volumeAVAX: BigDecimal!
# Untracked volume
untrackedVolumeUSD: BigDecimal!
# tvl USD
totalValueLockedUSD: BigDecimal!
# tvl AVAX
totalValueLockedAVAX: BigDecimal!
# Transaction count
txCount: BigInt!
# Token count
tokenCount: BigInt!
# User count
userCount: BigInt!
# flashloan fee
flashloanFee: BigInt!
# pairs not used in trade routing
ignoredLbPairs: [LBPair!]!
feesUSD: BigDecimal!
feesAVAX: BigDecimal!
# Pairs
lbPairs: [LBPair!]! @derivedFrom(field: "factory")
# Tokens
tokens: [Token!]! @derivedFrom(field: "factory")
# Hour data
hourData: [TraderJoeHourData!]! @derivedFrom(field: "factory")
# Day data
dayData: [TraderJoeDayData!]! @derivedFrom(field: "factory")
}
type TraderJoeHourData @entity {
# timestamp / 3600
id: ID!
# date - hour start timestamp
date: Int!
# factory
factory: LBFactory!
# volume
volumeAVAX: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
# TVL
totalValueLockedAVAX: BigDecimal!
totalValueLockedUSD: BigDecimal!
feesUSD: BigDecimal!
# tx count
txCount: BigInt!
}
type TraderJoeDayData @entity {
# timestamp / 86400
id: ID!
# date
date: Int!
# factory
factory: LBFactory!
# volume
volumeAVAX: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
# TVL
totalValueLockedAVAX: BigDecimal!
totalValueLockedUSD: BigDecimal!
feesUSD: BigDecimal!
# tx count
txCount: BigInt!
}
type Token @entity {
# token address
id: ID!
# factory
factory: LBFactory!
# mirrored from the smart contract
symbol: String!
name: String!
decimals: BigInt!
# used for other stats like marketcap
totalSupply: BigInt!
# token specific volume
volume: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
# transactions across all pairs
txCount: BigInt!
# TVL across all pairs
totalValueLocked: BigDecimal!
totalValueLockedUSD: BigDecimal!
derivedAVAX: BigDecimal!
feesUSD: BigDecimal!
# Token hour data
hourData: [TokenHourData!]! @derivedFrom(field: "token")
# Token day data
dayData: [TokenDayData!]! @derivedFrom(field: "token")
# Base pairs
basePairs: [LBPair!]! @derivedFrom(field: "tokenX")
# Quote pairs
quotePairs: [LBPair!]! @derivedFrom(field: "tokenY")
# Base pairs hour data
basePairsHourData: [LBPairHourData!]! @derivedFrom(field: "tokenX")
# Quote pairs hour data
quotePairsHourData: [LBPairHourData!]! @derivedFrom(field: "tokenY")
# Base pairs day data
basePairsDayData: [LBPairDayData!]! @derivedFrom(field: "tokenX")
# Quote pairs day data
quotePairsDayData: [LBPairDayData!]! @derivedFrom(field: "tokenY")
}
type TokenHourData @entity {
# timestamp / 3600
id: ID!
# date - hour start timestamp
date: Int!
# token
token: Token!
# volume
volume: BigDecimal!
volumeAVAX: BigDecimal!
volumeUSD: BigDecimal!
# tx count
txCount: BigInt!
# TVL
totalValueLocked: BigDecimal!
totalValueLockedAVAX: BigDecimal!
totalValueLockedUSD: BigDecimal!
# price usd
priceUSD: BigDecimal!
feesUSD: BigDecimal!
# opening price USD
open: BigDecimal!
# high price USD
high: BigDecimal!
# low price USD
low: BigDecimal!
# close price USD
close: BigDecimal!
}
type TokenDayData @entity {
# timestamp / 86400
id: ID!
# date - day start timestamp
date: Int!
# token
token: Token!
# volume
volume: BigDecimal!
volumeAVAX: BigDecimal!
volumeUSD: BigDecimal!
# tx count
txCount: BigInt!
# TVL
totalValueLocked: BigDecimal!
totalValueLockedAVAX: BigDecimal!
totalValueLockedUSD: BigDecimal!
# price usd
priceUSD: BigDecimal!
feesUSD: BigDecimal!
# opening price USD
open: BigDecimal!
# high price USD
high: BigDecimal!
# low price USD
low: BigDecimal!
# close price USD
close: BigDecimal!
}
type SJoeDayData @entity {
# Timestmap / 86400
id: ID!
# date - day start timestamp
date: Int!
amountX: BigDecimal!
amountY: BigDecimal!
collectedAVAX: BigDecimal!
collectedUSD: BigDecimal!
}
type LBPair @entity {
# Contract address
id: ID!
# Factory
factory: LBFactory!
# Name
name: String!
# Base Fee
baseFeePct: BigDecimal!
# mirrored from the smart contract
tokenX: Token!
tokenY: Token!
binStep: BigInt!
activeId: BigInt!
reserveX: BigDecimal!
reserveY: BigDecimal!
# tvl
totalValueLockedAVAX: BigDecimal!
totalValueLockedUSD: BigDecimal!
# Price in terms of the asset pair
tokenXPrice: BigDecimal!
tokenYPrice: BigDecimal!
# Price in terms of USDC
tokenXPriceUSD: BigDecimal!
tokenYPriceUSD: BigDecimal!
# lifetime volume stats
volumeTokenX: BigDecimal!
volumeTokenY: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
txCount: BigInt!
feesTokenX: BigDecimal!
feesTokenY: BigDecimal!
feesUSD: BigDecimal! # swap fees
# Fields used to help derived relationship
# used to detect new exchanges
liquidityProviderCount: BigInt!
bins: [Bin!]! @derivedFrom(field: "lbPair")
liquidityPositions: [LiquidityPosition!]! @derivedFrom(field: "lbPair")
dayData: [LBPairDayData!]! @derivedFrom(field: "lbPair")
hourData: [LBPairHourData!]! @derivedFrom(field: "lbPair")
# Transactions
mints: [Mint!]! @derivedFrom(field: "lbPair")
burns: [Burn!]! @derivedFrom(field: "lbPair")
swaps: [Swap!]! @derivedFrom(field: "lbPair")
flashed: [Flash!]! @derivedFrom(field: "lbPair")
collects: [Collect!]! @derivedFrom(field: "lbPair")
transfers: [Transfer!]! @derivedFrom(field: "lbPair")
# Created at
timestamp: BigInt!
block: BigInt!
}
type LBPairParameterSet @entity {
# LBPair address
id: ID!
sender: Bytes!
lbPair: LBPair!
binStep: BigInt!
baseFactor: BigInt!
filterPeriod: BigInt!
decayPeriod: BigInt!
reductionFactor: BigInt!
variableFeeControl: BigInt!
protocolShare: BigInt!
protocolSharePct: BigDecimal!
maxVolatilityAccumulated: BigInt!
}
type Bin @entity {
id: ID! # lbPair address + # + binId
lbPair: LBPair!
priceX: BigDecimal!
priceY: BigDecimal!
totalSupply: BigInt!
reserveX: BigDecimal!
reserveY: BigDecimal!
binId: BigInt!
liquidityProviders: [String!]!
liquidityProviderCount: BigInt!
}
type User @entity {
# Address
id: ID!
# Approval for All
lbTokenApprovals: [Bytes!]!
# Liquidity Positions
liquidityPositions: [LiquidityPosition!]! @derivedFrom(field: "user")
# fees collected by user for providing liquidity
collects: [Collect!]! @derivedFrom(field: "recipient")
}
type LBPairDayData @entity {
# timestamp / 86400
id: ID!
# date - day start timestamp
date: Int!
# pair
lbPair: LBPair!
tokenX: Token!
tokenY: Token!
# reserves
reserveX: BigDecimal!
reserveY: BigDecimal!
# tvl at end of day
totalValueLockedUSD: BigDecimal!
# volume
volumeTokenX: BigDecimal!
volumeTokenY: BigDecimal!
# volume usd
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
# tx count
txCount: BigInt!
# swap fees
feesUSD: BigDecimal!
}
type LBPairHourData @entity {
# timestamp / 3600
id: ID!
# date - hour start timestamp
date: Int!
# pair
lbPair: LBPair!
tokenX: Token!
tokenY: Token!
# reserves
reserveX: BigDecimal!
reserveY: BigDecimal!
# tvl at end of hour
totalValueLockedUSD: BigDecimal!
# volume
volumeTokenX: BigDecimal!
volumeTokenY: BigDecimal!
# volume usd
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
# tx count
txCount: BigInt!
# swap fees
feesUSD: BigDecimal!
}
type LiquidityPosition @entity {
# lbPair address + user address
id: ID!
user: User!
lbPair: LBPair!
# user's bins liquidities
userBinLiquidities: [UserBinLiquidity!]!
@derivedFrom(field: "liquidityPosition")
binsCount: BigInt!
# block info
block: Int!
timestamp: Int!
}
type UserBinLiquidity @entity {
# lbPair address + user + binId
id: ID!
# lbPair address + user address
liquidityPosition: LiquidityPosition!
# lbPair address + binId
lbPairBinId: Bin!
lbPair: LBPair!
user: User!
binId: BigInt!
liquidity: BigInt!
block: Int!
timestamp: Int!
}
type UserFeesData @entity {
# {lbPairAddress}-{userAddress}
id: ID!
user: User!
lbPair: LBPair!
accruedFeesX: BigDecimal!
accruedFeesY: BigDecimal!
accruedFeesL: BigDecimal!
collectedFeesX: BigDecimal!
collectedFeesY: BigDecimal!
}
type UserFeesHourData @entity {
# {lbPairAddress}-{userAddress}-{hourId}
id: ID!
# hour start timestamp
date: Int!
user: User!
lbPair: LBPair!
accruedFeesX: BigDecimal!
accruedFeesY: BigDecimal!
accruedFeesL: BigDecimal!
collectedFeesX: BigDecimal!
collectedFeesY: BigDecimal!
}
type Transaction @entity {
# transaction hash
id: ID!
# block info
blockNumber: Int!
timestamp: Int!
mints: [Mint!]! @derivedFrom(field: "transaction")
burns: [Burn!]! @derivedFrom(field: "transaction")
swaps: [Swap!]! @derivedFrom(field: "transaction")
flashed: [Flash!]! @derivedFrom(field: "transaction")
collects: [Collect!]! @derivedFrom(field: "transaction")
transfers: [Transfer!]! @derivedFrom(field: "transaction")
}
type Mint @entity {
# transaction hash + "#" + index in mints Transaction array
id: ID!
transaction: Transaction!
timestamp: Int! # need this to pull recent txns for specific token or pair
# pair
lbPair: LBPair!
# populated from the primary Transfer event
lbTokenAmount: BigInt!
# populated from the Mint event
sender: Bytes!
recipient: Bytes!
origin: Bytes!
amountX: BigDecimal!
amountY: BigDecimal!
# derived amount based on available prices of tokens
amountUSD: BigDecimal!
logIndex: BigInt!
}
type Burn @entity {
# transaction hash + "#" + index in burns Transaction array
id: ID!
transaction: Transaction!
timestamp: Int! # need this to pull recent txns for specific token or pair
# pair
lbPair: LBPair!
# populated from the primary Transfer event
lbTokenAmount: BigInt!
# populated from the Mint event
sender: Bytes!
recipient: Bytes!
origin: Bytes!
amountX: BigDecimal!
amountY: BigDecimal!
# derived amount based on available prices of tokens
amountUSD: BigDecimal!
logIndex: BigInt!
}
type Swap @entity {
# transaction hash + "#" + index in swaps Transaction array
id: ID!
transaction: Transaction!
timestamp: Int! # need this to pull recent txns for specific token or pair
# pair
lbPair: LBPair!
# populated from the Swap event
sender: Bytes!
recipient: Bytes!
origin: Bytes!
activeId: BigInt!
amountXIn: BigDecimal!
amountYIn: BigDecimal!
amountXOut: BigDecimal!
amountYOut: BigDecimal!
amountUSD: BigDecimal!
feesTokenX: BigDecimal!
feesTokenY: BigDecimal!
feesUSD: BigDecimal!
logIndex: BigInt!
}
type Flash @entity {
# transaction hash + "#" + index in Flash Transaction array
id: ID!
transaction: Transaction!
timestamp: Int! # need this to pull recent txns for specific token or pair
# pair
lbPair: LBPair!
# populated from the FlashLoan event
sender: Bytes!
origin: Bytes!
recipient: Bytes!
token: Token!
amount: BigDecimal!
amountUSD: BigDecimal!
fees: BigDecimal!
feesUSD: BigDecimal!
logIndex: BigInt!
}
type Collect @entity {
# transaction hash + "#" + index in collect Transaction array
id: ID!
transaction: Transaction!
timestamp: Int!
lbPair: LBPair!
amountX: BigDecimal!
amountY: BigDecimal!
recipient: User!
origin: Bytes!
collectedAVAX: BigDecimal!
collectedUSD: BigDecimal!
logIndex: BigInt!
}
# indexes both TransferSingle and TransferBatch events
type Transfer @entity {
# transaction hash + "#" + index in transfer Transaction array + "#" + (optional: TransferBatch index)
id: ID!
transaction: Transaction!
timestamp: Int!
isBatch: Boolean!
batchIndex: Int # optional only for TransferBatch event
isMint: Boolean!
isBurn: Boolean!
lbPair: LBPair!
binId: BigInt!
amount: BigInt!
sender: Bytes!
from: Bytes!
to: Bytes!
origin: Bytes!
logIndex: BigInt!
}