-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
225 lines (156 loc) · 3.85 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
enum EventType {
SUPPLY
BORROW
COLLATERAL
ACCRUE_INTEREST
}
type MorphoFeeRecipient @entity {
"Empty bytes"
id: Bytes!
feeRecipient: User!
}
type MorphoTx @entity {
id: Bytes!
type: EventType!
user: User!
market: Market!
shares: BigInt!
assets: BigInt!
timestamp: BigInt!
# Additionals informations
txHash: Bytes!
txIndex: BigInt!
logIndex: BigInt!
blockNumber: BigInt!
}
type User @entity {
id: Bytes!
morphoTxs: [MorphoTx!]! @derivedFrom(field: "user")
positions: [Position!]! @derivedFrom(field: "user")
metaMorphoFeeRecipients: [MorphoFeeRecipient!]!
@derivedFrom(field: "feeRecipient")
metaMorphoPositions: [MetaMorphoPosition!]! @derivedFrom(field: "user")
metaMorphoTxs: [MetaMorphoTx!]! @derivedFrom(field: "user")
}
type Market @entity {
id: Bytes!
loanToken: Bytes!
collateralToken: Bytes!
totalSupplyShares: BigInt!
totalSupplyAssets: BigInt!
totalBorrowShares: BigInt!
totalBorrowAssets: BigInt!
totalCollateral: BigInt!
totalSupplyPoints: BigInt!
totalBorrowPoints: BigInt!
totalCollateralPoints: BigInt!
lastUpdate: BigInt!
morphoTxs: [MorphoTx!]! @derivedFrom(field: "market")
positions: [Position!]! @derivedFrom(field: "market")
}
type MarketSnapshot @entity {
"{market id}-{timestamp}"
id: String!
market: Market!
totalSupplyShares: BigInt!
totalSupplyAssets: BigInt!
totalBorrowShares: BigInt!
totalBorrowAssets: BigInt!
totalCollateral: BigInt!
totalSupplyPoints: BigInt!
totalBorrowPoints: BigInt!
totalCollateralPoints: BigInt!
previousSnapshot: MarketSnapshot
timestamp: BigInt!
blockNumber: BigInt!
}
type Position @entity {
"concat of the user address and the market id"
id: Bytes!
user: User!
market: Market!
supplyShares: BigInt!
borrowShares: BigInt!
collateral: BigInt!
supplyPoints: BigInt!
borrowPoints: BigInt!
collateralPoints: BigInt!
lastUpdate: BigInt!
ofMetaMorpho: MetaMorpho
}
type PositionSnapshot @entity {
"{user address}{market id}-{timestamp}"
id: String!
position: Position!
user: User!
marketSnapshot: MarketSnapshot!
supplyShares: BigInt!
borrowShares: BigInt!
collateral: BigInt!
supplyPoints: BigInt!
borrowPoints: BigInt!
collateralPoints: BigInt!
ofMetaMorpho: MetaMorpho
previousSnapshot: PositionSnapshot
timestamp: BigInt!
blockNumber: BigInt!
}
type MetaMorpho @entity {
id: Bytes!
# address of the asset supplied by the user to the metaMorpho
asset: Bytes!
totalShares: BigInt!
totalAssets: BigInt!
feeRecipient: User
totalPoints: BigInt!
lastUpdate: BigInt!
metaMorphoTxs: [MetaMorphoTx!]! @derivedFrom(field: "metaMorpho")
positions: [MetaMorphoPosition!]! @derivedFrom(field: "metaMorpho")
bluePositions: [Position!]! @derivedFrom(field: "ofMetaMorpho")
}
type MetaMorphoSnapshot @entity {
"{metaMorpho id}-{timestamp}"
id: String!
metaMorpho: MetaMorpho!
totalShares: BigInt!
totalAssets: BigInt!
feeRecipient: User
totalPoints: BigInt!
previousSnapshot: MetaMorphoSnapshot
timestamp: BigInt!
blockNumber: BigInt!
}
type MetaMorphoPosition @entity {
id: Bytes!
metaMorpho: MetaMorpho!
user: User!
shares: BigInt!
supplyPoints: BigInt!
lastUpdate: BigInt!
metaMorphoTxs: [MetaMorphoTx!]! @derivedFrom(field: "position")
}
type MetaMorphoPositionSnapshot @entity {
"{user address}{metaMorpho id}-{timestamp}"
id: String!
metaMorphoSnapshot: MetaMorphoSnapshot!
user: User!
shares: BigInt!
supplyPoints: BigInt!
previousSnapshot: MetaMorphoPositionSnapshot
timestamp: BigInt!
blockNumber: BigInt!
}
type MetaMorphoTx @entity {
id: Bytes!
metaMorpho: MetaMorpho!
user: User!
position: MetaMorphoPosition!
shares: BigInt!
assets: BigInt!
timestamp: BigInt!
# Additionals informations
txHash: Bytes!
txIndex: BigInt!
logIndex: BigInt!
blockNumber: BigInt!
}