@@ -27,8 +27,12 @@ dataSources:
27
27
abis : &abis
28
28
- name : ClmManagerFactory
29
29
file : ./abis/beefy/clm/ClmManagerFactory.json
30
+ - name : ClmManager
31
+ file : ./abis/beefy/clm/ClmManager.json
30
32
- name : RewardPoolFactory
31
33
file : ./abis/beefy/clm/RewardPoolFactory.json
34
+ - name : RewardPool
35
+ file : ./abis/beefy/clm/RewardPool.json
32
36
- name : ClassicVaultFactory
33
37
file : ./abis/beefy/classic/ClassicVaultFactory.json
34
38
- name : ClassicVault
@@ -103,6 +107,53 @@ dataSources:
103
107
handler : handleClassicBoostCreated
104
108
105
109
templates :
110
+ - name : ClmManager
111
+ kind : ethereum/contract
112
+ network : {{network}}
113
+ source :
114
+ abi : ClmManager
115
+ mapping :
116
+ kind : ethereum/events
117
+ apiVersion : 0.0.7 # 0xgraph's version
118
+ language : wasm/assemblyscript
119
+ file : ./src/clm/mapping/manager.ts
120
+ entities : *clmEntities
121
+ abis : *abis
122
+ eventHandlers :
123
+ - event : Initialized(uint8)
124
+ handler : handleClmManagerInitialized
125
+
126
+ - name : ClmRewardPool
127
+ kind : ethereum/contract
128
+ network : {{network}}
129
+ source :
130
+ abi : RewardPool
131
+ mapping :
132
+ kind : ethereum/events
133
+ apiVersion : 0.0.7 # 0xgraph's version
134
+ language : wasm/assemblyscript
135
+ file : ./src/clm/mapping/reward-pool.ts
136
+ entities : *clmEntities
137
+ abis : *abis
138
+ eventHandlers :
139
+ - event : Initialized(uint8)
140
+ handler : handleRewardPoolInitialized
141
+
142
+ - name : ClassicVault
143
+ kind : ethereum/contract
144
+ network : {{network}}
145
+ source :
146
+ abi : ClassicVault
147
+ mapping :
148
+ kind : ethereum/events
149
+ apiVersion : 0.0.7 # 0xgraph's version
150
+ language : wasm/assemblyscript
151
+ file : ./src/classic/mapping/vault.ts
152
+ entities : *classicEntities
153
+ abis : *abis
154
+ eventHandlers :
155
+ - event : Initialized(uint8)
156
+ handler : handleClassicVaultInitialized
106
157
107
158
- name : BeefyERC20Product
108
159
kind : ethereum/contract
0 commit comments