-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
519 lines (423 loc) · 11.8 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
type Forge @entity {
id: ID! #address
forgeId: String! #Human Readable ID
}
type MarketFactory @entity {
id: ID! #ForgeId
address: String! #Market Factory ID
}
# @DONE: Add total value locked
# @TODO: And snapshot for it (priority: 2)
type YieldContract @entity {
#Forge ID + underlying asset + expiry
id: ID!
forgeId: String!
# Underlying Asset Token
underlyingAsset: Token!
# XYT - Future Yield Token
xyt: Token!
# OT - Ownership Token
ot: Token!
#Expiry of Yield Tokens
expiry: BigInt!
# Total mint transactions
mintTxCount: BigInt!
# Total redeem transactions
redeemTxCount: BigInt!
# Total interest settled transactions
interestSettledTxCount: BigInt!
# Volume
lockedVolume: BigDecimal!
mintVolume: BigDecimal!
redeemVolume: BigDecimal!
# Volume USD
lockedVolumeUSD: BigDecimal!
mintVolumeUSD: BigDecimal!
redeemVolumeUSD: BigDecimal
interestSettledVolume: BigDecimal!
yieldBearingAsset: Token!
}
type Token @entity {
# token address
id: ID!
# mirrored from the smart contract
symbol: String!
name: String!
decimals: BigInt!
# underlying information (for yield bearing token and pendle tokens only)
forgeId: String
underlyingAsset: String
# used for other stats like marketcap
totalSupply: BigInt!
# token specific volume (@note: No use?)
tradeVolume: BigDecimal!
tradeVolumeUSD: BigDecimal!
# (@note: No use?)
mintVolume: BigDecimal!
mintVolumeUSD: BigDecimal!
redeemVolume: BigDecimal!
redeemVolumeUSD: BigDecimal!
# transactions across all pairs
txCount: BigInt!
# liquidity across all pairs (markets)
totalLiquidity: BigDecimal!
type: String # yt | ot | yieldBearing | swapBase
}
type MintYieldToken @entity {
# transaction hash
id: ID!
blockNumber: BigInt!
timestamp: BigInt!
forgeId: String!
amountToTokenize: BigDecimal!
amountMinted: BigDecimal!
expiry: BigInt!
from: Bytes! # the EOA that initiated the txn
# Underlying Asset Token
underlyingAsset: Token!
yieldBearingAsset: Token!
xytAsset: Token!
otAsset: Token!
yieldContract: YieldContract!
mintedValueUSD: BigDecimal!
}
# @TODO: Stake and Unstake events
type RedeemYieldToken @entity {
# transaction hash
id: ID!
blockNumber: BigInt!
timestamp: BigInt!
forgeId: String!
amountToRedeem: BigDecimal!
amountRedeemed: BigDecimal!
expiry: BigInt!
from: Bytes! # the EOA that initiated the txn
# Underlying Asset Token
underlyingAsset: Token!
yieldBearingAsset: Token!
xytAsset: Token!
otAsset: Token!
yieldContract: YieldContract!
redeemedValueUSD: BigDecimal!
}
# @TODO: Modify entity name to Market or PendleMarket
# Add APR (Simple interest)
# 1. Interest from YT (interest rate from Aave)
# 2. Swap fee? -> Rolling 24h
# 3. APR from staking
#
# Hour and 24 hours (priority: 1)
# + open close high low
# + volumes
# + implied yield
# + users
type Pair @entity {
# pair address
id: ID!
# mirrored from the smart contract
token0: Token! #xyt Token
token1: Token!
reserve0: BigDecimal!
reserve1: BigDecimal!
totalSupply: BigDecimal!
token0WeightRaw: BigInt!
token1WeightRaw: BigInt!
# derived liquidity
reserveUSD: BigDecimal!
# Price in terms of the asset pair
# @TODO: This might be calculated wrongly
# Exchange rate between token0 and token1
token0Price: BigDecimal!
token1Price: BigDecimal!
# lifetime volume stats
volumeToken0: BigDecimal!
volumeToken1: BigDecimal!
volumeUSD: BigDecimal!
txCount: BigInt!
# Single add, removal?
feesToken0: BigDecimal!
feesToken1: BigDecimal!
feesUSD: BigDecimal!
# 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")
# mints: [Mint!]! @derivedFrom(field: "pair")
# burns: [Burn!]! @derivedFrom(field: "pair")
# swaps: [Swap!]! @derivedFrom(field: "pair")
expiry: BigInt!
lpPriceUSD: BigDecimal!
lpStaked: BigDecimal!
lpStakedUSD: BigDecimal!
pairHourData: [PairHourData!]! @derivedFrom(field: "pair")
liquidityMining: LiquidityMining
lpAPR: BigDecimal
yieldTokenHolderAddress: String
}
type Swap @entity {
# transaction hash
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!
from: Bytes! # the EOA that initiated the txn
inToken: Token!
outToken: Token!
inAmount: BigDecimal!
outAmount: BigDecimal!
to: Bytes!
logIndex: BigInt
feesCollected: BigDecimal!
feesCollectedUSD: BigDecimal!
# derived info
amountUSD: BigDecimal!
}
# @TODO: Check snapshot mechanism from uniswap
# Not now?
type User @entity {
id: ID!
liquidityPositions: [LiquidityPosition!] @derivedFrom(field: "user")
usdSwapped: BigDecimal!
}
type LiquidityMining @entity {
id: ID! # for v1, id will be LiqMining's address, for V2, it should be ERC20's address
lmAddress: String
}
type LiquidityMiningExpiry @entity {
id: ID!
marketAddress: Pair!
}
type LiquidityPosition @entity {
id: ID!
user: User!
pair: Pair!
liquidityTokenBalance: BigDecimal!
supplyOfPoolOwnedPercentage: BigDecimal! # the total of LP tokens owned/ LP token supply in percentage
}
# saved over time for return calculations
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
token0Amount: BigDecimal! #the amount of token0 gained/removed
token1Amount: BigDecimal! #the amount of token1 gained/removed
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
liquidityTokenBalance: BigDecimal! # snapshot of users pool token balance
liquidityTokenMoved: BigDecimal! # the amount of LP tokens gained/removed
type: String! # either 'add' or 'remove' to specify if adding or removing liquidity
}
type Transaction @entity {
id: ID! # txn hash
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)
lpMints: [MintLPToken]!
lpBurns: [BurnLPToken]!
swaps: [Swap]!
mintYieldTokens: [MintYieldToken]!
redeemYieldTokens: [RedeemYieldToken]!
}
type MintLPToken @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
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
}
type BurnLPToken @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
amount0: BigDecimal
amount1: BigDecimal
to: Bytes
logIndex: BigInt
# derived amount based on available prices of tokens
amountUSD: BigDecimal
# mark uncomplete in ETH case
needsComplete: Boolean!
# optional fee fields, if a Transfer event is fired in _mintFee
feeTo: Bytes
feeLiquidity: BigDecimal
}
# @TODO: Add Settings from protocols?
type PendleData @entity {
id: ID!
protocolSwapFee: BigDecimal!
swapFee: BigDecimal!
exitFee: BigDecimal!
}
# @TODO & Note: this schema definition of LiquidityPool is wrong. Relation with pair should be 1-N instead of 1-1
type LiquidityPool @entity {
# transaction hash
id: ID!
# transaction: Transaction!
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
type: String! # Join or Exit only
# populated from the LiquidityPool event
from: Bytes! # the EOA that initiated the txn
inToken0: Token!
inToken1: Token!
inAmount0: BigDecimal!
inAmount1: BigDecimal!
feesCollected: BigDecimal!
swapFeesCollectedUSD: BigDecimal!
swapVolumeUSD: BigDecimal!
lpAmount: BigDecimal!
# @TODO: Add TVL - (total value locked)
# derived info
amountUSD: BigDecimal!
}
############## SNAPSHOT DATA ######################
type PairHourData @entity {
id: ID!
hourStartUnix: Int!
pair: Pair!
# reserves
totalSupply: BigDecimal!
reserve0: BigDecimal!
reserve1: BigDecimal!
marketWorthUSD: BigDecimal!
# volume stats
hourlyVolumeToken0: BigDecimal!
hourlyVolumeToken1: BigDecimal!
hourlyVolumeUSD: BigDecimal!
hourlyTxns: BigInt!
# price
yieldTokenPrice_open: BigDecimal!
yieldTokenPrice_close: BigDecimal!
yieldTokenPrice_high: BigDecimal!
yieldTokenPrice_low: BigDecimal!
lpTokenPrice: BigDecimal!
baseTokenPrice: BigDecimal!
yieldBearingAssetPrice: BigDecimal!
# Statistics
impliedYield: BigDecimal!
}
type PairDailyData @entity {
id: ID!
dayStartUnix: Int!
pair: Pair!
# reserves
totalSupply: BigDecimal!
reserve0: BigDecimal!
reserve1: BigDecimal!
marketWorthUSD: BigDecimal!
# volume stats
dailyVolumeToken0: BigDecimal!
dailyVolumeToken1: BigDecimal!
dailyVolumeUSD: BigDecimal!
dailyTxns: BigInt!
# price
yieldTokenPrice_open: BigDecimal!
yieldTokenPrice_close: BigDecimal!
yieldTokenPrice_high: BigDecimal!
yieldTokenPrice_low: BigDecimal!
lpTokenPrice: BigDecimal!
baseTokenPrice: BigDecimal!
yieldBearingAssetPrice: BigDecimal!
# Statistics
impliedYield: BigDecimal!
}
############## THIRD PARTY PACKAGE ################
type UniswapPool @entity {
id: ID!
poolAddress: String!
token0Address: String!
token1Address: String!
hasBeenUsed: Boolean!
}
type UniswapTokenPrice @entity {
id: ID!
price: BigDecimal!
}
type SushiswapPair @entity {
id: ID! # OT Address
otToken: Token!
baseToken: Token!
marketWorthUSD: BigDecimal
baseTokenBalance: BigDecimal
baseTokenPrice: BigDecimal
otBalance: BigDecimal
otPrice: BigDecimal
totalTradingUSD: BigDecimal!
totalStaked: BigInt
totalReward: BigInt
lpPrice: BigDecimal
isOtToken0: Boolean!
aprPercentage: BigDecimal
updatedAt: BigInt
}
type SushiswapPairHourData @entity {
id: ID!
hourStartUnix: Int!
otAddress: String!
tradingVolumeUSD: BigDecimal!
}
type UserMarketData @entity {
id: ID!
user: User!
market: Pair!
lpHolding: BigInt!
recordedUSDValue: BigDecimal!
capitalProvided: BigDecimal!
capitalWithdrawn: BigDecimal!
yieldClaimedUsd: BigDecimal!
yieldClaimedRaw: BigDecimal!
pendleRewardReceivedRaw: BigDecimal!
pendleRewardReceivedUSD: BigDecimal!
}
type LpTransferEvent @entity {
id: ID! # txn hash
from: String!
to: String!
market: String!
lpPrice: BigDecimal!
amount: BigInt!
timestamp: BigInt!
block: BigInt!
}
############## DEBUG ############################
type DebugLog @entity {
# The instance with id "0" is the root of the entity set. It stores the number of the instances (using for generating the id-s)
id: ID!
message: String!
type: String!
length: BigInt
}