-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.template.yaml
340 lines (322 loc) · 10.5 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
specVersion: 1.0.0
description: Beefy Finance L2 LXP Liquidity Subgraph
repository: https://github.com/beefyfinance/l2-lxp-liquidity-subgraph
schema:
file: ./schema.graphql
indexerHints:
# we want to be able to issue time-travel queries for historical data
prune: {{indexerHintPrune}}
dataSources:
{{#clmManagerFactoryAddress}}
- kind: ethereum/contract
name: ClmManagerFactory
network: {{network}}
source:
address: "{{clmManagerFactoryAddress}}"
abi: ClmManagerFactory
startBlock: {{clmManagerFactoryStartBlock}}
mapping: &clmManagerFactoryMapping
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/clm/mapping/manager-factory.ts
entities: &clmEntities
- Token
- Account
- TokenBalance
abis: &clmAbis
- name: ClmManagerFactory
file: ./abis/beefy/clm/ClmManagerFactory.json
- name: ClmManager
file: ./abis/beefy/clm/ClmManager.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: ClassicBoostFactory
file: ./abis/beefy/classic/ClassicBoostFactory.json
- name: IERC20
file: ./abis/IERC20/IERC20.json
eventHandlers:
- event: ProxyCreated(address)
handler: handleClmManagerCreated
{{/clmManagerFactoryAddress}}
{{#clmManagerFactoryAddress_2}}
- kind: ethereum/contract
name: ClmManagerFactory2
network: {{network}}
source:
address: "{{clmManagerFactoryAddress_2}}"
abi: ClmManagerFactory
startBlock: {{clmManagerFactoryStartBlock_2}}
mapping: *clmManagerFactoryMapping
{{/clmManagerFactoryAddress_2}}
{{#rewardPoolFactoryAddress}}
- kind: ethereum/contract
name: RewardPoolFactory
network: {{network}}
source:
address: "{{rewardPoolFactoryAddress}}"
abi: RewardPoolFactory
startBlock: {{rewardPoolFactoryStartBlock}}
mapping: &rewardPoolFactoryMapping
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/clm/mapping/reward-pool-factory.ts
entities: *clmEntities
abis: *clmAbis
eventHandlers:
- event: ProxyCreated(string,address)
handler: handleRewardPoolCreated
{{/rewardPoolFactoryAddress}}
{{#rewardPoolFactoryAddress_2}}
- kind: ethereum/contract
name: RewardPoolFactory2
network: {{network}}
source:
address: "{{rewardPoolFactoryAddress_2}}"
abi: RewardPoolFactory
startBlock: {{rewardPoolFactoryStartBlock_2}}
mapping: *rewardPoolFactoryMapping
{{/rewardPoolFactoryAddress_2}}
{{#beefyClassicVaultFactoryAddress}}
- kind: ethereum/contract
name: ClassicVaultFactory
network: {{network}}
source:
address: "{{beefyClassicVaultFactoryAddress}}"
abi: ClassicVaultFactory
startBlock: {{beefyClassicVaultFactoryStartBlock}}
mapping: &classicVaultFactoryMapping
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
- ClassicPosition
- ClassicVault
- Investor
- Token
- Transaction
abis: &classicAbis
- name: ClmManagerFactory
file: ./abis/beefy/clm/ClmManagerFactory.json
- name: ClmManager
file: ./abis/beefy/clm/ClmManager.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: ClassicBoostFactory
file: ./abis/beefy/classic/ClassicBoostFactory.json
- name: IERC20
file: ./abis/IERC20/IERC20.json
eventHandlers:
- event: ProxyCreated(address)
handler: handleClassicVaultOrStrategyCreated
{{/beefyClassicVaultFactoryAddress}}
{{#beefyClassicVaultFactoryAddress_2}}
- kind: ethereum/contract
name: ClassicVaultFactory2
network: {{network}}
source:
address: "{{beefyClassicVaultFactoryAddress_2}}"
abi: ClassicVaultFactory
startBlock: {{beefyClassicVaultFactoryStartBlock_2}}
mapping: *classicVaultFactoryMapping
{{/beefyClassicVaultFactoryAddress_2}}
{{#beefyClassicBoostFactoryAddress}}
- kind: ethereum/contract
name: ClassicBoostFactory
network: {{network}}
source:
address: "{{beefyClassicBoostFactoryAddress}}"
abi: ClassicBoostFactory
startBlock: {{beefyClassicBoostFactoryStartBlock}}
mapping: &classicBoostFactoryMapping
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/boost-factory.ts
entities: *classicEntities
abis: *classicAbis
eventHandlers:
- event: BoostDeployed(indexed address)
handler: handleClassicBoostCreated
{{/beefyClassicBoostFactoryAddress}}
{{#beefyClassicBoostFactoryAddress_2}}
- kind: ethereum/contract
name: ClassicBoostFactory2
network: {{network}}
source:
address: "{{beefyClassicBoostFactoryAddress_2}}"
abi: ClassicBoostFactory
startBlock: {{beefyClassicBoostFactoryStartBlock_2}}
mapping: *classicBoostFactoryMapping
{{/beefyClassicBoostFactoryAddress_2}}
{{#beefyContractDeployerAddress}}
- kind: ethereum/contract
name: ContractDeployer
network: {{network}}
source:
address: "{{beefyContractDeployerAddress}}"
abi: ContractDeployer
startBlock: {{beefyContractDeployerStartBlock}}
mapping: &contractDeployerMapping
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/common/mapping/contract-deployer.ts
entities: &contractDeployerEntities
- Token
- Account
- TokenBalance
abis: &contractDeployerAbis
- name: ContractDeployer
file: ./abis/beefy/ContractDeployer.json
- name: IERC20
file: ./abis/IERC20/IERC20.json
- name: Initializable
file: ./abis/beefy/Initializable.json
eventHandlers:
- event: ContractDeployed(indexed bytes32,address)
handler: handleContractDeployedWithDeployer
{{/beefyContractDeployerAddress}}
{{#beefyContractDeployerAddress_2}}
- kind: ethereum/contract
name: ContractDeployer2
network: {{network}}
source:
address: "{{beefyContractDeployerAddress_2}}"
abi: ContractDeployer
startBlock: {{beefyContractDeployerStartBlock_2}}
mapping: *contractDeployerMapping
{{/beefyContractDeployerAddress_2}}
{{#firstBlock}}
- kind: ethereum/contract
name: ConfigBinder
network: {{network}}
source:
address: "{{burnAddress}}"
abi: IERC20
startBlock: {{firstBlock}}
endBlock: {{firstBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/classic/mapping/config-binder.ts
entities:
- Classic
- ClassicBoost
- ClassicPosition
- ClassicVault
- Investor
- Token
- Transaction
abis:
- name: IERC20
file: ./abis/IERC20/IERC20.json
blockHandlers:
- handler: bindOldProducts
# this is a trick to avoid a bug in the indexer that makes all indexing extra slow
# it must be removed once the bug is fixed
filter:
kind: polling
every: 1
{{/firstBlock}}
templates:
{{#clmManagerFactoryAddress}}
- 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: *clmAbis
eventHandlers:
- event: Initialized(uint8)
handler: handleClmManagerInitialized
{{/clmManagerFactoryAddress}}
{{#rewardPoolFactoryAddress}}
- 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: *clmAbis
eventHandlers:
- event: Initialized(uint8)
handler: handleRewardPoolInitialized
{{/rewardPoolFactoryAddress}}
{{#beefyClassicVaultFactoryAddress}}
- 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: *classicAbis
eventHandlers:
- event: {{vaultInitializedEvent}}
handler: handleClassicVaultInitialized
{{/beefyClassicVaultFactoryAddress}}
{{#beefyContractDeployerAddress}}
- name: ContractDeployerInitializable
kind: ethereum/contract
network: {{network}}
source:
abi: Initializable
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/common/mapping/contract-deployer-initializable.ts
entities: *contractDeployerEntities
abis: *contractDeployerAbis
eventHandlers:
- event: Initialized(uint8)
handler: handleContractDeployedInitializableInitialized
{{/beefyContractDeployerAddress}}
- name: BeefyERC20Product
kind: ethereum/contract
network: {{network}}
source:
abi: IERC20
mapping:
kind: ethereum/events
apiVersion: 0.0.7 # 0xgraph's version
language: wasm/assemblyscript
file: ./src/common/mapping/erc20.ts
entities: *classicEntities
abis: *classicAbis
eventHandlers:
- event: Transfer(indexed address,indexed address,uint256)
handler: handleProductTransfer