forked from debtdao/subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.yaml
272 lines (272 loc) · 9.42 KB
/
subgraph.yaml
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
specVersion: 0.0.4
schema:
file: ./schema.graphql
dataSources:
- name: LineFactory
kind: ethereum/contract
network: mainnet
source:
abi: LineFactory
address: "0xe725e25961e04E685A573B1587F8297aC233cD07"
startBlock: 16596721
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/line-factory.ts
entities:
- DeploySecuredLineEvent
abis:
- name: LineFactory
file: ./abis/LineFactory.json
eventHandlers:
- event: DeployedSecuredLine(indexed address,indexed address,indexed
address,address,uint8)
handler: handleDeploySecuredLine
- name: ModuleFactory
kind: ethereum/contract
network: mainnet
source:
abi: ModuleFactory
address: "0xa968954770Af47881309d99E36d61C725082B48E"
startBlock: 16596721
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/line-factory.ts
entities:
- DeploySpigotEvent
- DeploySecuredLineEvent
abis:
- name: ModuleFactory
file: ./abis/ModuleFactory.json
eventHandlers:
- event: DeployedSpigot(indexed address,indexed address,address)
handler: handleDeploySpigot
- event: DeployedEscrow(indexed address,indexed uint32,indexed address,address)
handler: handleDeployEscrow
# TODO: uncomment if want to use Chainlink Feed Registry
# - name: FeedRegistry
# kind: ethereum/contract
# network: mainnet
# source:
# abi: FeedRegistry
# address: "0x47Fb2585D2C56Fe188D0E6ec628a38b74fCeeeDf"
# startBlock: 12864088
# mapping:
# kind: ethereum/events
# apiVersion: 0.0.6
# language: wasm/assemblyscript
# file: ./src/feed-registry.ts
# entities:
# - Token
# - SupportedToken
# - Oracle
# abis:
# - name: FeedRegistry
# file: ./abis/FeedRegistry/FeedRegistry.json
# - name: ERC20
# file: ./abis/Prices/ERC20.json
# eventHandlers:
# - event: FeedConfirmed(indexed address,indexed address,indexed
# address,address,uint16,address)
# handler: handleAddSupportedToken
templates:
- name: SecuredLine
kind: ethereum/contract
network: mainnet
source:
abi: SecuredLine
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/line-of-credit.ts
entities:
- Borrower
- Lender
- Credit
- LineOfCredit
- Escrow
- Spigot
- SpigotController
- MutualUpgradeRegistered
- AddCreditEvent
- BorrowEvent
- ClosePositionEvent
- DefaultEvent
- IncreaseCreditEvent
- InterestAccruedEvent
- LiquidateEvent
- SetRatesEvent
- RepayInterestEvent
- RepayPrincipalEvent
- UpdateLineStatusEvent
- WithdrawProfitEvent
- WithdrawDepositEvent
abis:
- name: SecuredLine
file: ./abis/SecuredLine.json
- name: Oracle
file: ./abis/Oracle.json
- name: Spigot
file: ./abis/Spigot.json
- name: Escrow
file: ./abis/Escrow.json
- name: ERC20
file: ./abis/Prices/ERC20.json
- name: CreditLib
file: ./abis/CreditLib.json
- name: CurveRegistry
file: ./abis/Prices/Curve/Registry.json
- name: CurvePoolRegistry
file: ./abis/Prices/Curve/PoolRegistry.json
- name: CalculationsCurve
file: ./abis/Prices/Calculations/Curve.json
- name: YearnLens
file: ./abis/Prices/YearnLens.json
- name: ChainLinkContract
file: ./abis/Prices/ChainLink.json
- name: UniswapRouter
file: ./abis/Prices/Uniswap/Router.json
- name: UniswapFactory
file: ./abis/Prices/Uniswap/Factory.json
- name: UniswapPair
file: ./abis/Prices/Uniswap/Pair.json
- name: SushiSwapRouter
file: ./abis/Prices/SushiSwap/Router.json
- name: SushiSwapFactory
file: ./abis/Prices/SushiSwap/Factory.json
- name: SushiSwapPair
file: ./abis/Prices/SushiSwap/Pair.json
- name: CalculationsSushiSwap
file: ./abis/Prices/Calculations/SushiSwap.json
eventHandlers:
- event: DeployLine(indexed address,indexed address,indexed address)
handler: handleDeployLine
- event: UpdateStatus(indexed uint256)
handler: handleUpdateStatus
- event: AddCredit(indexed address,indexed address,indexed uint256,bytes32)
handler: handleAddCredit
- event: IncreaseCredit(indexed bytes32,indexed uint256)
handler: handleIncreaseCredit
- event: Borrow(indexed bytes32,indexed uint256)
handler: handleBorrow
- event: CloseCreditPosition(indexed bytes32)
handler: handleCloseCredit
- event: Default(indexed bytes32)
handler: handleDefault
- event: MutualConsentRegistered(bytes32,address)
handler: handleMutualConsentRegistered
- event: MutualConsentRevoked(bytes32)
handler: handleRevokeConsent
- event: MutualConsentAccepted(bytes32)
handler: handleRevokeConsent
- event: InterestAccrued(indexed bytes32,indexed uint256)
handler: handleInterestAccrued
- event: RepayInterest(indexed bytes32,indexed uint256)
handler: handleRepayInterest
- event: RepayPrincipal(indexed bytes32,indexed uint256)
handler: handleRepayPrincipal
- event: WithdrawDeposit(indexed bytes32,indexed uint256)
handler: handleWithdrawDeposit
- event: WithdrawProfit(indexed bytes32,indexed uint256)
handler: handleWithdrawProfit
- event: SetRates(indexed bytes32,indexed uint128,indexed uint128)
handler: handleSetRates
- event: TradeSpigotRevenue(indexed address,uint256,indexed address,indexed
uint256)
handler: handleTradeRevenue
- event: Liquidate(indexed bytes32,indexed uint256,indexed address,address)
handler: handleLiquidate
- event: ReservesChanged(indexed address,indexed int256,uint256)
handler: handleReservesChanged
- name: Spigot
kind: ethereum/contract
network: mainnet
source:
abi: Spigot
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/spigot.ts
entities:
- Spigot
abis:
- name: Spigot
file: ./abis/Spigot.json
- name: Oracle
file: ./abis/Oracle.json
- name: ERC20
file: ./abis/Prices/ERC20.json
- name: CurveRegistry
file: ./abis/Prices/Curve/Registry.json
- name: CurvePoolRegistry
file: ./abis/Prices/Curve/PoolRegistry.json
- name: CalculationsCurve
file: ./abis/Prices/Calculations/Curve.json
- name: YearnLens
file: ./abis/Prices/YearnLens.json
- name: ChainLinkContract
file: ./abis/Prices/ChainLink.json
- name: UniswapRouter
file: ./abis/Prices/Uniswap/Router.json
- name: UniswapFactory
file: ./abis/Prices/Uniswap/Factory.json
- name: UniswapPair
file: ./abis/Prices/Uniswap/Pair.json
- name: SushiSwapRouter
file: ./abis/Prices/SushiSwap/Router.json
- name: SushiSwapFactory
file: ./abis/Prices/SushiSwap/Factory.json
- name: SushiSwapPair
file: ./abis/Prices/SushiSwap/Pair.json
- name: CalculationsSushiSwap
file: ./abis/Prices/Calculations/SushiSwap.json
eventHandlers:
- event: AddSpigot(indexed address,uint256,bytes4,bytes4)
handler: handleAddSpigot
- event: ClaimOwnerTokens(indexed address,indexed uint256,address)
handler: handleClaimOwnerTokens
- event: ClaimOperatorTokens(indexed address,indexed uint256,address)
handler: handleClaimOperatorTokens
- event: RemoveSpigot(indexed address,address)
handler: handleRemoveSpigot
- event: ClaimRevenue(indexed address,indexed uint256,uint256,address)
handler: handleClaimRevenue
- event: UpdateOwner(indexed address)
handler: handleUpdateOwner
- event: UpdateOperator(indexed address)
handler: handleUpdateOperator
- event: UpdateWhitelistFunction(indexed bytes4,indexed bool)
handler: handleWhitelistFunction
- event: UpdateOwnerSplit(indexed address,indexed uint8)
handler: handleUpdateOwnerSplit
- name: Escrow
kind: ethereum/contract
network: mainnet
source:
abi: Escrow
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/escrow.ts
entities:
- Escrow
abis:
- name: Escrow
file: ./abis/Escrow.json
- name: Oracle
file: ./abis/Oracle.json
- name: ERC20
file: ./abis/Prices/ERC20.json
eventHandlers:
- event: EnableCollateral(indexed address)
handler: handleEnableCollateral
- event: AddCollateral(indexed address,indexed uint256)
handler: handleAddCollateral
- event: RemoveCollateral(indexed address,indexed uint256)
handler: handleRemoveCollateral