forked from 1inch/mooniswap-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
288 lines (226 loc) Β· 6.3 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
type MooniswapFactory @entity {
# factory address
id: ID!
# pair info
pairCount: Int!
pairs: [Pair]!
# total volume
totalVolumeUSD: BigDecimal!
totalVolumeETH: BigDecimal!
# total liquidity
totalLiquidityUSD: BigDecimal!
totalLiquidityETH: BigDecimal!
# transactions
txCount: BigInt!
# as reference for new day datas
mostLiquidTokens: [TokenDayData!]!
}
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!
# transactions across all pairs
txCount: BigInt!
# liquidity across all pairs
totalLiquidity: BigDecimal!
# derived prices
derivedETH: BigDecimal
# address of weth exchange if exists
allPairs: [Pair!]
# saved for historical refernce of most liquid pairs
mostLiquidPairs: [PairDayData]!
}
type Pair @entity {
# pair address
id: ID!
factory: MooniswapFactory! @derivedFrom(field: "pairs")
# mirrored from the smart contract
token0: Token!
token1: Token!
reserve0: BigDecimal!
reserve1: BigDecimal!
totalSupply: BigDecimal!
# derived liquidity
reserveETH: BigDecimal!
reserveUSD: BigDecimal!
trackedReserveETH: BigDecimal! # used for separating per pair reserves and global
# Price in terms of the asset pair
token0Price: BigDecimal!
token1Price: BigDecimal!
# lifetime volume stats
volumeToken0: BigDecimal!
volumeToken1: BigDecimal!
volumeUSD: BigDecimal!
txCount: BigInt!
lpExtraFeeInToken0: BigDecimal!
lpExtraFeeInToken1: BigDecimal!
# creation stats
createdAtTimestamp: BigInt!
createdAtBlockNumber: BigInt!
# Fields used to help derived relationship
liquidityPositions: [LiquidityPosition!] @derivedFrom(field: "pair")
# transaction stats
mints: [Mint!] @derivedFrom(field: "pair")
burns: [Burn!] @derivedFrom(field: "pair")
swaps: [Swap!] @derivedFrom(field: "pair")
}
type User @entity {
id: ID!
liquidityPositions: [LiquidityPosition!] @derivedFrom(field: "user")
usdSwapped: BigDecimal!
}
type LiquidityPosition @entity {
id: ID!
user: User!
pair: Pair!
poolOwnership: BigDecimal
liquidityTokenBalance: BigDecimal!
}
type Transaction @entity {
id: ID! # txn hash
blockNumber: BigInt!
timestamp: BigInt!
mints: [Mint]!
burns: [Burn]!
swaps: [Swap]!
}
type Mint @entity {
# transaction hash + "-" + index in mints Transaction array
id: ID!
transaction: Transaction! @derivedFrom(field: "mints")
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
}
type Burn @entity {
# transaction hash + "-" + index in mints Transaction array
id: ID!
transaction: Transaction! @derivedFrom(field: "burns")
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
}
type Swap @entity {
# transaction hash + "-" + index in swaps Transaction array
id: ID!
transaction: Transaction! @derivedFrom(field: "swaps")
timestamp: BigInt! # need this to pull recent txns for specific token or pair
pair: Pair!
# populated from the Swap event
sender: Bytes!
srcAmount: BigDecimal!
destAmount: BigDecimal!
src: Bytes! # token address
dest: Bytes! # token address
referral: Bytes! # referral address
referralReward: BigDecimal!
lpExtraFeeInToken0: BigDecimal!
lpExtraFeeInToken1: BigDecimal!
logIndex: BigInt
# derived info
amountUSD: BigDecimal!
}
# stores for USD calculations
type Bundle @entity {
id: ID!
ethPrice: BigDecimal! # price of ETH usd
# daiPrice: BigDecimal! # price of ETH in DAI
}
# Data accumulated and condensed into day stats for all of Mooniswap
type MooniswapDayData @entity {
id: ID! # timestamp rounded to current day by dividing by 86400
date: Int!
dailyVolumeETH: BigDecimal!
dailyVolumeUSD: BigDecimal!
totalVolumeETH: BigDecimal! # volume just on eth -i.e. we dont double count volume
totalLiquidityETH: BigDecimal! # 2 * SUM(exchanges.ethLiquidity). Since tokenLiquiduity = ethLiquidity value, can just *2
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!
# daily top tokens in liquidity
maxStored: Int
mostLiquidTokens: [TokenDayData!]!
txCount: BigInt!
}
type PairHourData @entity {
id: ID!
hourStartUnix: Int! # unix timestamp for start of hour
pair: Pair!
# reserves
reserve0: BigDecimal!
reserve1: BigDecimal!
# derived liquidity
reserveUSD: BigDecimal!
# volume stats
hourlyVolumeToken0: BigDecimal!
hourlyVolumeToken1: BigDecimal!
hourlyVolumeUSD: BigDecimal!
hourlyTxns: BigInt!
}
# Data accumulated and condensed into day stats for each exchange
type PairDayData @entity {
id: ID!
date: Int!
pairAddress: Bytes!
token0: Token!
token1: Token!
# reserves
reserve0: BigDecimal!
reserve1: BigDecimal!
# derived liquidity
reserveUSD: BigDecimal!
# volume stats
dailyVolumeToken0: BigDecimal!
dailyVolumeToken1: 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!
# top pairs that this token is in by liquidity
maxStored: Int!
mostLiquidPairs: [PairDayData!]!
}