-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
417 lines (347 loc) Β· 10.2 KB
/
schema.graphql
File metadata and controls
417 lines (347 loc) Β· 10.2 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
type PulsarFactory @entity {
# factory address
id: ID!
# pair info
pairCount: Int!
# total volume
totalVolumeUSD: BigDecimal!
totalVolumeETH: BigDecimal!
# untracked values - less confident USD scores
untrackedVolumeUSD: BigDecimal!
# total liquidity
totalLiquidityUSD: BigDecimal!
totalLiquidityETH: BigDecimal!
# transactions
txCount: BigInt!
}
type Token @entity {
# token address
id: ID!
# mirrored from the smart contract
symbol: String!
name: String!
decimals: BigInt!
# used for other stats like marketcap
totalSupply: BigInt!
# token specific volume
tradeVolume: BigDecimal!
tradeVolumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
# transactions across all pairs
txCount: BigInt!
# liquidity across all pairs
totalLiquidity: BigDecimal!
# derived prices
derivedETH: BigDecimal!
# derived fields
tokenDayData: [TokenDayData!]! @derivedFrom(field: "token")
pairDayDataBase: [PairDayData!]! @derivedFrom(field: "tokenA")
pairDayDataQuote: [PairDayData!]! @derivedFrom(field: "tokenB")
pairBase: [Pair!]! @derivedFrom(field: "tokenA")
pairQuote: [Pair!]! @derivedFrom(field: "tokenB")
}
type Order @entity {
# pair address
id: ID!
# order details
user: User!
orderId: BigDecimal!
submitBlock: BigDecimal!
expirationBlock: BigDecimal!
saleRate: BigDecimal!
sellAmount: BigDecimal!
buyAmount: BigDecimal!
sellToken: Token!
buyToken: Token!
}
type Pair @entity {
# pair address
id: ID!
# mirrored from the smart contract
tokenA: Token!
tokenB: Token!
reserveA: BigDecimal!
reserveB: BigDecimal!
totalSupply: BigDecimal!
ordersAmount: BigDecimal!
lastVirtualOrderBlock: BigDecimal!
tokenASalesRate: BigDecimal!
tokenBSalesRate: BigDecimal!
orderPoolARewardFactor: BigDecimal!
orderPoolBRewardFactor: BigDecimal!
# derived liquidity
reserveETH: BigDecimal!
reserveUSD: BigDecimal!
# used for separating per pair reserves and global
trackedReserveETH: BigDecimal!
# Price in terms of the asset pair
tokenAPrice: BigDecimal!
tokenBPrice: BigDecimal!
# lifetime volume stats
volumeTokenA: BigDecimal!
volumeTokenB: BigDecimal!
volumeUSD: BigDecimal!
untrackedVolumeUSD: BigDecimal!
txCount: BigInt!
# creation stats
createdAtTimestamp: BigInt!
createdAtBlockNumber: BigInt!
# Fields used to help derived relationship
liquidityProviderCount: BigInt! # used to detect new exchanges
# derived fields
pairHourData: [PairHourData!]! @derivedFrom(field: "pair")
liquidityPositions: [LiquidityPosition!]! @derivedFrom(field: "pair")
liquidityPositionSnapshots: [LiquidityPositionSnapshot!]!
@derivedFrom(field: "pair")
initialmints: [InitialMint!]! @derivedFrom(field: "pair")
mints: [Mint!]! @derivedFrom(field: "pair")
burns: [Burn!]! @derivedFrom(field: "pair")
instantswaps: [InstantSwap!]! @derivedFrom(field: "pair")
termswaps: [TermSwap!]! @derivedFrom(field: "pair")
withdraworder: [WithdrawOrder!]! @derivedFrom(field: "pair")
cancelorder: [CancelOrder!]! @derivedFrom(field: "pair")
}
type User @entity {
id: ID!
orders: [Order!]! @derivedFrom(field: "user")
liquidityPositions: [LiquidityPosition!]! @derivedFrom(field: "user")
usdSwapped: BigDecimal!
}
type LiquidityPosition @entity {
id: ID!
user: User!
pair: Pair!
liquidityTokenBalance: BigDecimal!
}
# 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
tokenAPriceUSD: BigDecimal! # snapshot of tokenA price
tokenBPriceUSD: BigDecimal! # snapshot of tokenB price
reserveA: BigDecimal! # snapshot of pair tokenA reserves
reserveB: BigDecimal! # snapshot of pair tokenB reserves
reserveUSD: BigDecimal! # snapshot of pair reserves in USD
liquidityTokenTotalSupply: BigDecimal! # snapshot of pool token supply
liquidityTokenBalance: BigDecimal! # snapshot of users pool token balance
}
type Transaction @entity {
id: ID! # txn hash
blockNumber: BigInt!
timestamp: BigInt!
transactionHash: Bytes!
# This is not the reverse of Mint.transaction; it is only used to
# track incomplete mints (similar for burns and swaps)
initialmints: [InitialMint!]!
mints: [Mint!]!
burns: [Burn!]!
instantswaps: [InstantSwap!]!
termswaps: [TermSwap!]!
withdraworder: [WithdrawOrder!]!
cancelorder: [CancelOrder!]!
}
type InitialMint @entity {
# transaction hash + "-" + index in mints Transaction 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 InitialMint event
sender: Bytes!
amountA: BigDecimal!
amountB: 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!
}
type Mint @entity {
# transaction hash + "-" + index in mints Transaction 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!
amountA: BigDecimal!
amountB: 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!
}
type Burn @entity {
# transaction hash + "-" + index in mints Transaction 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!
amountA: BigDecimal!
amountB: BigDecimal!
to: Bytes!
logIndex: BigInt!
# derived amount based on available prices of tokens
amountUSD: BigDecimal!
# mark uncompleted in ETH case
needsComplete: Boolean!
# optional fee fields, if a Transfer event is fired in _mintFee
feeTo: Bytes!
feeLiquidity: BigDecimal!
}
type InstantSwap @entity {
# transaction hash + "-" + index in swaps Transaction array
id: ID!
transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the InstantSwap event
sender: Bytes!
from: Bytes! # the EOA that initiated the txn
amountAIn: BigDecimal!
amountBIn: BigDecimal!
amountAOut: BigDecimal!
amountBOut: BigDecimal!
to: Bytes!
logIndex: BigInt!
# derived info
amountUSD: BigDecimal!
}
type TermSwap @entity {
# transaction hash + "-" + index in swaps Transaction array
id: ID!
transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the TermSwap event
sender: Bytes!
from: Bytes! # the EOA that initiated the txn
amountAIn: BigDecimal!
amountBIn: BigDecimal!
numberOBI: BigDecimal!
orderId: BigDecimal!
logIndex: BigInt!
# derived info
amountUSD: BigDecimal!
}
type CancelOrder @entity {
# transaction hash + "-" + index in cancel Transaction array
id: ID!
transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the CancelOrder event
sender: Bytes!
from: Bytes! # the EOA that initiated the txn
orderId: BigDecimal!
unsoldAmount: BigDecimal!
purchasedAmount: BigDecimal!
to: Bytes!
logIndex: BigInt!
# derived info
amountUSD: BigDecimal!
}
type WithdrawOrder @entity {
# transaction hash + "-" + index in withdraw Transaction array
id: ID!
transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the WithdrawOrder event
sender: Bytes!
from: Bytes! # the EOA that initiated the txn
orderId: BigDecimal!
proceeds: BigDecimal!
to: Bytes!
logIndex: BigInt!
# derived info
amountUSD: BigDecimal!
}
# stores for USD calculations
type Bundle @entity {
id: ID!
ethPrice: BigDecimal! # price of ETH usd
}
# Data accumulated and condensed into day stats for all of Pulsar
type PulsarDayData @entity {
id: ID! # timestamp rounded to current day by dividing by 86400
date: Int!
dailyVolumeETH: BigDecimal!
dailyVolumeUSD: BigDecimal!
dailyVolumeUntracked: BigDecimal!
totalVolumeETH: BigDecimal!
totalLiquidityETH: BigDecimal!
totalVolumeUSD: BigDecimal! # Accumulate at each trade, not just calculated off whatever totalVolume is. making it more accurate as it is a live conversion
totalLiquidityUSD: BigDecimal!
txCount: BigInt!
}
type PairHourData @entity {
id: ID!
hourStartUnix: Int! # unix timestamp for start of hour
pair: Pair!
# reserves
reserveA: BigDecimal!
reserveB: BigDecimal!
# total supply for LP historical returns
totalSupply: BigDecimal!
# derived liquidity
reserveUSD: BigDecimal!
# volume stats
hourlyVolumeTokenA: BigDecimal!
hourlyVolumeTokenB: BigDecimal!
hourlyVolumeUSD: BigDecimal!
hourlyTxns: BigInt!
}
# Data accumulated and condensed into day stats for each exchange
type PairDayData @entity {
id: ID!
date: Int!
pairAddress: Bytes!
tokenA: Token!
tokenB: Token!
# reserves
reserveA: BigDecimal!
reserveB: BigDecimal!
# total supply for LP historical returns
totalSupply: BigDecimal!
# derived liquidity
reserveUSD: BigDecimal!
# volume stats
dailyVolumeTokenA: BigDecimal!
dailyVolumeTokenB: BigDecimal!
dailyVolumeUSD: BigDecimal!
dailyTxns: BigInt!
}
type TokenDayData @entity {
id: ID!
date: Int!
token: Token!
# volume stats
dailyVolumeToken: BigDecimal!
dailyVolumeETH: BigDecimal!
dailyVolumeUSD: BigDecimal!
dailyTxns: BigInt!
# liquidity stats
totalLiquidityToken: BigDecimal!
totalLiquidityETH: BigDecimal!
totalLiquidityUSD: BigDecimal!
# price stats
priceUSD: BigDecimal!
}