-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
232 lines (211 loc) · 5.55 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
type Reserve @entity {
id: ID! # Rserve asset address
lTokenInterestIndex: BigInt!
lastUpdateTimestamp: Int!
isPaused: Boolean!
isActivated: Boolean!
reserveHistory: [ReserveHistory!]! @derivedFrom(field: "reserve")
deposit: [Deposit!]! @derivedFrom(field: "reserve")
withdraw: [Withdraw!]! @derivedFrom(field: "reserve")
borrow: [Borrow!]! @derivedFrom(field: "reserve")
repay: [Repay!]! @derivedFrom(field: "reserve")
lToken: LToken! @derivedFrom(field: "reserve")
dToken: DToken! @derivedFrom(field: "reserve")
lTokenUserBalance: LTokenUserBalance! @derivedFrom(field: "reserve")
dTokenUserBalance: DTokenUserBalance! @derivedFrom(field: "reserve")
incentivePool: IncentivePool! @derivedFrom(field: "reserve")
depositAPY: BigInt!
borrowAPY: BigInt!
totalBorrow: BigInt!
totalDeposit: BigInt!
lTokenUserBalanceCount: Int!
dTokenUserBalanceCount: Int!
}
type ReserveHistory @entity {
id: ID! # txHash
timestamp: Int!
reserve: Reserve!
lTokenInterestIndex: BigInt!
depositAPY: BigInt!
borrowAPY: BigInt!
totalBorrow: BigInt!
totalDeposit: BigInt!
}
type LToken @entity {
id: ID! # LToken Contract Address
reserve: Reserve!
lTokenUserBalance: [LTokenUserBalance!]! @derivedFrom(field: "lToken")
lTokenMint: [LTokenMint!]! @derivedFrom(field: "lToken")
lTokenBurn: [LTokenBurn!]! @derivedFrom(field: "lToken")
}
# Transfer, Mint, Burn
type LTokenUserBalance @entity {
id: ID! # User Address + LToken Address
lToken: LToken!
user: User!
reserve: Reserve!
balance: BigInt!
lastUpdatedTimestamp: Int!
}
type DToken @entity {
id: ID! # DToken Contract Address
reserve: Reserve!
dTokenUserBalance: [DTokenUserBalance!]! @derivedFrom(field: "dToken")
}
# Mint, Burn
type DTokenUserBalance @entity {
id: ID! # User Address + DToken Address
dToken: DToken!
reserve: Reserve!
user: User!
balance: BigInt!
lastUpdatedTimestamp: Int!
}
type User @entity {
id: ID! # Account address
lTokenBalance: [LTokenUserBalance!]! @derivedFrom(field: "user")
lTokenMint: [LTokenMint!]! @derivedFrom(field: "account")
lTokenBurn: [LTokenBurn!]! @derivedFrom(field: "account")
dTokenBalance: [DTokenUserBalance!]! @derivedFrom(field: "user")
managingAssetBondToken: [AssetBondToken!]!
@derivedFrom(field: "collateralServiceProvider")
owningAssetBondToken: [AssetBondToken!]! @derivedFrom(field: "borrower")
signedAssetBondToken: [AssetBondToken!]! @derivedFrom(field: "signer")
deposit: [Deposit!]! @derivedFrom(field: "account")
withdraw: [Withdraw!]! @derivedFrom(field: "account")
borrow: [Borrow!]! @derivedFrom(field: "borrower")
managingBorrow: [Borrow!]! @derivedFrom(field: "collateralServiceProvider")
repay: [Repay!]! @derivedFrom(field: "borrower")
stakingPoolStake: [StakingPoolStake!]! @derivedFrom(field: "user")
stakingPoolWithdraw: [StakingPoolWithdraw!]! @derivedFrom(field: "user")
stakingPoolMigrate: [StakingPoolMigrate!]! @derivedFrom(field: "user")
stakingPoolClaim: [StakingPoolClaim!]! @derivedFrom(field: "user")
staker: [StakingPoolStaker!]! @derivedFrom(field: "user")
isCouncil: Boolean!
isCollateralServiceProvider: Boolean!
}
type AssetBondToken @entity {
id: ID! # unique TokenID
state: Int
signer: User
borrower: User
collateralServiceProvider: User
principal: BigInt
debtCeiling: BigInt
couponRate: BigInt
interestRate: BigInt
delinquencyRate: BigInt
loanStartTimestamp: Int
collateralizeTimestamp: Int
maturityTimestamp: Int
liquidationTimestamp: Int
ipfsHash: String
signerOpinionHash: String
reserve: Reserve!
}
type Deposit @entity {
id: ID! # Tx Hash
reserve: Reserve!
account: User!
amount: BigInt!
timestamp: Int!
}
type Withdraw @entity {
id: ID! # Tx Hash
reserve: Reserve!
account: User!
to: User!
amount: BigInt!
timestamp: Int!
}
type Borrow @entity {
id: ID! # Tx Hash
reserve: Reserve!
collateralServiceProvider: User!
borrower: User!
tokenId: String!
borrowAPY: BigInt!
amount: BigInt!
timestamp: Int!
}
type Repay @entity {
id: ID! # Tx Hash
reserve: Reserve!
borrower: User!
tokenId: String!
userDTokenBalance: BigInt!
feeOnCollateralServiceProvider: BigInt!
timestamp: Int!
}
type LTokenMint @entity {
id: ID!
lToken: LToken!
account: User!
amount: BigInt!
index: BigInt!
timestamp: Int!
}
type LTokenBurn @entity {
id: ID!
lToken: LToken!
account: User!
receiver: User!
amount: BigInt!
index: BigInt!
timestamp: Int!
}
type StakingPool @entity {
id: ID!
stake: [StakingPoolStake!]! @derivedFrom(field: "stakingPool")
withdraw: [StakingPoolWithdraw!]! @derivedFrom(field: "stakingPool")
migrate: [StakingPoolMigrate!]! @derivedFrom(field: "stakingPool")
claim: [StakingPoolClaim!]! @derivedFrom(field: "stakingPool")
staker: [StakingPoolStaker!]! @derivedFrom(field: "stakingPool")
}
type StakingPoolStaker @entity {
id: ID!
user: User!
stakingPool: StakingPool!
amount: BigInt!
round: Int!
}
type StakingPoolStake @entity {
id: ID!
user: User!
amount: BigInt!
stakingPool: StakingPool!
round: Int!
timestamp: Int!
}
type StakingPoolWithdraw @entity {
id: ID!
user: User!
stakingPool: StakingPool!
amount: BigInt!
round: Int!
timestamp: Int!
}
type StakingPoolMigrate @entity {
id: ID!
user: User!
stakingPool: StakingPool!
amount: BigInt!
round: Int!
timestamp: Int!
}
type StakingPoolClaim @entity {
id: ID!
user: User!
stakingPool: StakingPool!
round: Int!
amount: BigInt!
timestamp: Int!
}
type IncentivePool @entity {
id: ID!
reserve: Reserve!
}
type Tokenizer @entity {
id: ID!
reserve: Reserve!
}