-
Notifications
You must be signed in to change notification settings - Fork 4
/
subgraph.template.yaml
366 lines (347 loc) · 11.4 KB
/
subgraph.template.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
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
specVersion: 1.0.0
description: Beefy Finance Automated Liquidity Manager Subgraph
repository: https://github.com/beefyfinance/cowcentrated-subgraph
schema:
file: ./schema.graphql
indexerHints:
prune: auto # we have our own snapshotting mechanism
dataSources:
- kind: ethereum/contract
name: ClmManagerFactory
network: {{network}}
source:
address: "{{clmManagerFactoryAddress}}"
abi: ClmManagerFactory
startBlock: {{clmManagerFactoryStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/clm/mapping/manager-factory.ts
entities: &clmEntities
- ClmHarvestEvent
- CLM
- ClmPosition
- ClmPositionInteraction
- ClmSnapshot
- ClmManager
- ClmManagerCollectionEvent
- ClmRewardPool
- ClmStrategy
- ClockTick
- Investor
- Protocol
- Token
- Transaction
abis: &abis
- name: ClmManagerFactory
file: ./abis/beefy/clm/ClmManagerFactory.json
- name: ClmManager
file: ./abis/beefy/clm/ClmManager.json
- name: ClmStrategyFactory
file: ./abis/beefy/clm/ClmStrategyFactory.json
- name: ClmStrategy
file: ./abis/beefy/clm/ClmStrategy.json
- name: RewardPoolFactory
file: ./abis/beefy/clm/RewardPoolFactory.json
- name: RewardPool
file: ./abis/beefy/clm/RewardPool.json
- name: ClassicVaultFactory
file: ./abis/beefy/classic/ClassicVaultFactory.json
- name: ClassicVault
file: ./abis/beefy/classic/ClassicVault.json
- name: ClassicStrategyFactory
file: ./abis/beefy/classic/ClassicStrategyFactory.json
- name: ClassicStrategy
file: ./abis/beefy/classic/ClassicStrategy.json
- name: ClassicBoostFactory
file: ./abis/beefy/classic/ClassicBoostFactory.json
- name: ClassicBoost
file: ./abis/beefy/classic/ClassicBoost.json
- name: IERC20
file: ./abis/IERC20/IERC20.json
- name: Multicall3
file: ./abis/multicall/Multicall3.json
eventHandlers:
- event: ProxyCreated(address)
handler: handleClmManagerCreated
- kind: ethereum/contract
name: ClmStrategyFactory
network: {{network}}
source:
address: "{{clmStrategyFactoryAddress}}"
abi: ClmStrategyFactory
startBlock: {{clmStrategyFactoryStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/clm/mapping/strategy-factory.ts
entities: *clmEntities
abis: *abis
eventHandlers:
- event: GlobalPause(bool)
handler: handleClmStrategyGlobalPause
- kind: ethereum/contract
name: RewardPoolFactory
network: {{network}}
source:
address: "{{rewardPoolFactoryAddress}}"
abi: RewardPoolFactory
startBlock: {{rewardPoolFactoryStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/reward-pool/mapping/reward-pool-factory.ts
entities: *clmEntities
abis: *abis
eventHandlers:
- event: ProxyCreated(string,address)
handler: handleRewardPoolCreated
- kind: ethereum/contract
name: Clock
network: {{network}}
source:
address: "{{clmManagerFactoryAddress}}"
abi: ClmManagerFactory
startBlock: {{clmManagerFactoryStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/common/mapping/clock.ts
entities: *clmEntities
abis: *abis
blockHandlers:
- handler: handleClockTick
filter:
kind: polling
every: {{clockTickBlocks}}
- kind: ethereum/contract
name: ClassicVaultFactory
network: {{network}}
source:
address: "{{beefyClassicVaultFactoryAddress}}"
abi: ClassicVaultFactory
startBlock: {{beefyClassicVaultFactoryStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/vault-and-strategy-factory.ts
entities: &classicEntities
- Classic
- ClassicBoost
- ClassicHarvestEvent
- ClassicPosition
- ClassicPositionInteraction
- ClassicSnapshot
- ClassicStrategy
- ClassicVault
- ClockTick
- Investor
- Protocol
- Token
- Transaction
abis: *abis
eventHandlers:
- event: ProxyCreated(address)
handler: handleClassicVaultOrStrategyCreated
- kind: ethereum/contract
name: ClassicStrategyFactory
network: {{network}}
source:
address: "{{beefyClassicStrategyFactoryAddress}}"
abi: ClassicStrategyFactory
startBlock: {{beefyClassicStrategyFactoryStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/strategy-factory.ts
entities: *classicEntities
abis: *abis
eventHandlers:
- event: ProxyCreated(string,address)
handler: handleClassicStrategyCreated
- kind: ethereum/contract
name: ClassicBoostFactory
network: {{network}}
source:
address: "{{beefyClassicBoostFactoryAddress}}"
abi: ClassicBoostFactory
startBlock: {{beefyClassicBoostFactoryStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/boost-factory.ts
entities: *classicEntities
abis: *abis
eventHandlers:
- event: BoostDeployed(indexed address)
handler: handleClassicBoostCreated
templates:
- name: ClmManager
kind: ethereum/contract
network: {{network}}
source:
abi: ClmManager
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/clm/mapping/manager.ts
entities: *clmEntities
abis: *abis
eventHandlers:
- event: Initialized(uint8)
handler: handleClmManagerInitialized
- event: Transfer(indexed address,indexed address,uint256)
handler: handleClmManagerTransfer
- name: ClmStrategy
kind: ethereum/contract
network: {{network}}
source:
abi: ClmStrategy
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/clm/mapping/strategy.ts
entities: *clmEntities
abis: *abis
eventHandlers:
- event: Initialized(uint8)
handler: handleClmStrategyInitialized
- event: Paused(address)
handler: handleClmStrategyPaused
- event: Unpaused(address)
handler: handleClmStrategyUnpaused
- event: Harvest(uint256,uint256)
handler: handleClmStrategyHarvestAmounts
- event: HarvestRewards(uint256)
handler: handleClmStrategyHarvestRewards
- event: ClaimedFees(uint256,uint256,uint256,uint256)
handler: handleClmStrategyClaimedFees
- event: ClaimedRewards(uint256)
handler: handleClmStrategyClaimedRewards
- name: RewardPool
kind: ethereum/contract
network: {{network}}
source:
abi: RewardPool
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/reward-pool/mapping/reward-pool.ts
entities: *clmEntities
abis: *abis
eventHandlers:
- event: Initialized(uint8)
handler: handleRewardPoolInitialized
- name: ClmRewardPool
kind: ethereum/contract
network: {{network}}
source:
abi: RewardPool
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/clm/mapping/reward-pool.ts
entities: *clmEntities
abis: *abis
eventHandlers:
- event: Transfer(indexed address,indexed address,uint256)
handler: handleClmRewardPoolTransfer
- event: RewardPaid(indexed address,indexed address,uint256)
handler: handleClmRewardPoolRewardPaid
- event: AddReward(address)
handler: handleClmRewardPoolAddReward
- event: RemoveReward(address,address)
handler: handleClmRewardPoolRemoveReward
- name: ClassicRewardPool
kind: ethereum/contract
network: {{network}}
source:
abi: RewardPool
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/reward-pool.ts
entities: *clmEntities
abis: *abis
eventHandlers:
- event: Transfer(indexed address,indexed address,uint256)
handler: handleClassicRewardPoolTransfer
- event: RewardPaid(indexed address,indexed address,uint256)
handler: handleClassicRewardPoolRewardPaid
- event: AddReward(address)
handler: handleClassicRewardPoolAddReward
- event: RemoveReward(address,address)
handler: handleClassicRewardPoolRemoveReward
- name: ClassicVault
kind: ethereum/contract
network: {{network}}
source:
abi: ClassicVault
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/vault.ts
entities: *classicEntities
abis: *abis
eventHandlers:
- event: Initialized(uint8)
handler: handleClassicVaultInitialized
- event: UpgradeStrat(address)
handler: handleClassicVaultUpgradeStrategy
- event: Transfer(indexed address,indexed address,uint256)
handler: handleClassicVaultTransfer
- name: ClassicStrategy
kind: ethereum/contract
network: {{network}}
source:
abi: ClassicStrategy
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/strategy.ts
entities: *classicEntities
abis: *abis
eventHandlers:
- event: Initialized(uint8)
handler: handleClassicStrategyInitialized
- event: Paused(address)
handler: handleClassicStrategyPaused
- event: Unpaused(address)
handler: handleClassicStrategyUnpaused
- event: StratHarvest(indexed address,uint256,uint256)
handler: handleClassicStrategyHarvest
- name: ClassicBoost
kind: ethereum/contract
network: {{network}}
source:
abi: ClassicBoost
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/boost.ts
entities: *classicEntities
abis: *abis
eventHandlers:
- event: Initialized(uint8)
handler: handleClassicBoostInitialized
- event: Staked(indexed address,uint256)
handler: handleClassicBoostStaked
- event: Withdrawn(indexed address,uint256)
handler: handleClassicBoostWithdrawn
- event: RewardPaid(indexed address,uint256)
handler: handleClassicBoostRewardPaid