-
Notifications
You must be signed in to change notification settings - Fork 0
/
exchange.graphql
479 lines (370 loc) · 9 KB
/
exchange.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
# User
type User @entity {
# Address
id: ID!
# Liquidity Positions
liquidityPositions: [LiquidityPosition!]! @derivedFrom(field: "user")
}
# Bundle
type Bundle @entity {
id: ID!
ethPrice: BigDecimal! # price of ETH usd
}
# Factory
type Factory @entity {
# Contract address
id: ID!
# Pair count
pairCount: BigInt!
# Volume USD
volumeUSD: BigDecimal!
# Volume ETH
volumeETH: BigDecimal!
# Untracked volume
untrackedVolumeUSD: BigDecimal!
# Liquidity USD
liquidityUSD: BigDecimal!
# Liquidity ETH
liquidityETH: BigDecimal!
# Transaction count
txCount: BigInt!
# Token count
tokenCount: BigInt!
# User count
userCount: BigInt!
# Pairs
pairs: [Pair!]! @derivedFrom(field: "factory")
# Tokens
tokens: [Token!]! @derivedFrom(field: "factory")
# Hour data
hourData: [HourData!]! @derivedFrom(field: "factory")
# Day data
dayData: [DayData!]! @derivedFrom(field: "factory")
}
# Hour Data
type HourData @entity {
# start of hour timestamp
id: ID!
# date
date: Int!
# factory
factory: Factory!
# volume
volumeETH: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolume: BigDecimal!
# liquidity
liquidityETH: BigDecimal!
liquidityUSD: BigDecimal!
# tx count
txCount: BigInt!
}
# Day Data
type DayData @entity {
# timestamp / 86400
id: ID!
# date
date: Int!
# factory
factory: Factory!
# volume
volumeETH: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolume: BigDecimal!
# liquidity
liquidityETH: BigDecimal!
liquidityUSD: BigDecimal!
# tx count
txCount: BigInt!
}
# Token
type Token @entity {
# token address
id: ID!
# factory
factory: Factory!
# 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!
selltxn: BigInt!
buytxn: BigInt!
# gain
oneDayGain: BigDecimal!
sevenDayGain: BigDecimal!
monthGain: BigDecimal!
# liquidity across all pairs
liquidity: BigDecimal!
derivedETH: BigDecimal!
# Token hour data
hourData: [TokenHourData!]! @derivedFrom(field: "token")
# Token day data
dayData: [TokenDayData!]! @derivedFrom(field: "token")
# Base pairs
basePairs: [Pair!]! @derivedFrom(field: "token0")
# Quote pairs
quotePairs: [Pair!]! @derivedFrom(field: "token1")
# Base pairs day data
basePairsDayData: [PairDayData!]! @derivedFrom(field: "token0")
# Quote pairs day data
quotePairsDayData: [PairDayData!]! @derivedFrom(field: "token1")
# Created at
timestamp: BigInt!
block: BigInt!
}
# Token hour data
type TokenHourData @entity {
# token id - hour start timestamp
id: ID!
# date - hour start timestamp
date: Int!
# token
token: Token!
# volume
volume: BigDecimal!
volumeETH: BigDecimal!
volumeUSD: BigDecimal!
buyVolume: BigDecimal!
sellVolume: BigDecimal!
# tx count
txCount: BigInt!
selltxn: BigInt!
buytxn: BigInt!
# liquidity
liquidity: BigDecimal!
liquidityETH: BigDecimal!
liquidityUSD: BigDecimal!
# price usd
priceUSD: BigDecimal!
}
# Token day data
type TokenDayData @entity {
# token id - day start timestamp
id: ID!
# date - day start timestamp
date: Int!
# token
token: Token!
# volume
volume: BigDecimal!
volumeETH: BigDecimal!
volumeUSD: BigDecimal!
buyVolume: BigDecimal!
sellVolume: BigDecimal!
# tx count
txCount: BigInt!
selltxn: BigInt!
buytxn: BigInt!
# liquidity
liquidity: BigDecimal!
liquidityETH: BigDecimal!
liquidityUSD: BigDecimal!
# price usd
priceUSD: BigDecimal!
}
# Pair
type Pair @entity {
# Contract address
id: ID!
# Factory
factory: Factory!
# Name
name: String!
# mirrored from the smart contract
token0: Token!
token1: Token!
reserve0: BigDecimal!
reserve1: BigDecimal!
totalSupply: BigDecimal!
# derived liquidity
reserveETH: BigDecimal!
reserveUSD: BigDecimal!
# used for separating per pair reserves and global
trackedReserveETH: BigDecimal!
# Price in terms of the asset pair
token0Price: BigDecimal!
token1Price: BigDecimal!
# lifetime volume stats
volumeToken0: BigDecimal!
volumeToken1: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
txCount: BigInt!
# Fields used to help derived relationship
# used to detect new exchanges
liquidityProviderCount: BigInt!
# lca: BigDecimal!
# lcad: BigDecimal!
# Liquidity positions
liquidityPositions: [LiquidityPosition!]! @derivedFrom(field: "pair")
# Liquidity position snapshots
liquidityPositionSnapshots: [LiquidityPositionSnapshot!]! @derivedFrom(field: "pair")
# Pair day data
dayData: [PairDayData!]! @derivedFrom(field: "pair")
# Pair hour data
hourData: [PairHourData!]! @derivedFrom(field: "pair")
# Transactions
mints: [Mint!]! @derivedFrom(field: "pair")
burns: [Burn!]! @derivedFrom(field: "pair")
swaps: [Swap!]! @derivedFrom(field: "pair")
# Created at
timestamp: BigInt!
block: BigInt!
}
# Pair hour data
type PairHourData @entity {
# pair.id - hour start timestamp
id: ID!
# date - hour start timestamp
date: Int!
# pair
pair: Pair!
# reserves
reserve0: BigDecimal!
reserve1: BigDecimal!
# derived liquidity
reserveUSD: BigDecimal!
# volume
volumeToken0: BigDecimal!
volumeToken1: BigDecimal!
# volume usd
volumeUSD: BigDecimal!
# tx count
txCount: BigInt!
}
# Pair day data
type PairDayData @entity {
# pair id - day start timestamp
id: ID!
# date - day start timestamp
date: Int!
# pair
pair: Pair!
# token0
token0: Token!
# token1
token1: Token!
# reserves
reserve0: BigDecimal!
reserve1: BigDecimal!
# total supply for LP historical returns
totalSupply: BigDecimal!
# derived liquidity
reserveUSD: BigDecimal!
# volume
volumeToken0: BigDecimal!
volumeToken1: BigDecimal!
# volume usd
volumeUSD: BigDecimal!
# tx count
txCount: BigInt!
}
# liquidity position
type LiquidityPosition @entity {
id: ID!
user: User!
pair: Pair!
liquidityTokenBalance: BigDecimal!
snapshots: [LiquidityPositionSnapshot]! @derivedFrom(field: "liquidityPosition")
block: Int!
timestamp: Int!
}
# saved over time for return calculations, gets created and never updated
type LiquidityPositionSnapshot @entity {
id: ID!
liquidityPosition: LiquidityPosition!
timestamp: Int! # saved for fast historical lookups
block: Int! # saved for fast historical lookups
user: User! # reference to user
pair: Pair! # reference to pair
token0PriceUSD: BigDecimal! # snapshot of token0 price
token1PriceUSD: BigDecimal! # snapshot of token1 price
reserve0: BigDecimal! # snapshot of pair token0 reserves
reserve1: BigDecimal! # snapshot of pair token1 reserves
reserveUSD: BigDecimal! # snapshot of pair reserves in USD
liquidityTokenTotalSupply: BigDecimal! # snapshot of pool token supply
# snapshot of users pool token balance
liquidityTokenBalance: BigDecimal!
}
# transaction
type Transaction @entity {
# transaction hash
id: ID!
blockNumber: BigInt!
timestamp: BigInt!
# This is not the reverse of Mint.transaction; it is only used to
# track incomplete mints (similar for burns and swaps)
mints: [Mint!]!
burns: [Burn!]!
swaps: [Swap!]!
}
# mint
type Mint @entity {
# transaction hash - index of mint in transaction mints array
id: ID!
transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the primary Transfer event
to: Bytes!
liquidity: BigDecimal!
# populated from the Mint event
sender: Bytes
amount0: BigDecimal
amount1: BigDecimal
logIndex: BigInt
# derived amount based on available prices of tokens
amountUSD: BigDecimal
# optional fee fields, if a Transfer event is fired in _mintFee
feeTo: Bytes
feeLiquidity: BigDecimal
}
# burn
type Burn @entity {
# transaction hash - index of burn in transaction burns array
id: ID!
transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the primary Transfer event
liquidity: BigDecimal!
# populated from the Burn event
sender: Bytes
amount0: BigDecimal
amount1: BigDecimal
to: Bytes
logIndex: BigInt
# derived amount based on available prices of tokens
amountUSD: BigDecimal
# mark uncomplete in ETH case
complete: Boolean!
# optional fee fields, if a Transfer event is fired in _mintFee
feeTo: Bytes
feeLiquidity: BigDecimal
}
# swap
type Swap @entity {
# transaction hash - index of swap in transaction swaps array
id: ID!
transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the Swap event
sender: Bytes!
amount0In: BigDecimal!
amount1In: BigDecimal!
amount0Out: BigDecimal!
amount1Out: BigDecimal!
to: Bytes!
logIndex: BigInt
# derived info
amountUSD: BigDecimal!
}