forked from l0c4t0r/visor-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.yaml
356 lines (356 loc) · 12 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
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
specVersion: 0.0.2
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: VisrToken
network: mainnet
source:
address: "0xF938424F7210f31dF2Aee3011291b658f872e91e"
abi: ERC20
startBlock: 12025310
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- VisrToken
- VisrTokenDayData
- VisrDistribution
- Visor
abis:
- name: ERC20
file: ./abis/ERC20.json
- name: UniswapV3Pool
file: ./abis/UniswapV3Pool.json
eventHandlers:
- event: Transfer(indexed address,indexed address,uint256)
handler: handleTransfer
file: ./src/mappings/visrToken.ts
- kind: ethereum/contract
name: VisorFactory
network: mainnet
source:
address: "0xae03233307865623aaef76da9ade669b86e6f20a"
abi: VisorFactory
startBlock: 12013637
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- Factory
- Visor
- VisorTemplate
- User
- OwnerOperator
abis:
- name: VisorFactory
file: ./abis/VisorFactory.json
- name: Visor
file: ./abis/Visor.json
eventHandlers:
- event: Approval(indexed address,indexed address,indexed uint256)
handler: handleApproval
- event: ApprovalForAll(indexed address,indexed address,bool)
handler: handleApprovalForAll
- event: InstanceAdded(address)
handler: handleInstanceAdded
- event: InstanceRemoved(address)
handler: handleInstanceRemoved
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
- event: TemplateActive(indexed bytes32,indexed address)
handler: handleTemplateActive
- event: TemplateAdded(indexed bytes32,indexed address)
handler: handleTemplateAdded
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransfer
file: ./src/mappings/visorFactory.ts
- kind: ethereum/contract
name: Hypervisor
network: mainnet
source:
address: "0xF178d88D2F6F97CA32F92b465987068e1Cce41c5"
abi: Hypervisor
startBlock: 12108493
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- Hypervisor
- StakedToken
- RewardToken
abis:
- name: Hypervisor
file: ./abis/Hypervisor.json
- name: ERC20
file: ./abis/ERC20.json
eventHandlers:
- event: BonusTokenRegistered(address)
handler: handleBonusTokenRegistered
- event: HypervisorCreated(address,address)
handler: handleHypervisorCreated
- event: HypervisorFunded(uint256,uint256)
handler: handleHypervisorFunded
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
- event: RewardClaimed(address,address,address,uint256)
handler: handleRewardClaimed
- event: Staked(address,uint256)
handler: handleStaked
- event: Unstaked(address,uint256)
handler: handleUnstaked
- event: VaultFactoryRegistered(address)
handler: handleVaultFactoryRegistered
- event: VaultFactoryRemoved(address)
handler: handleVaultFactoryRemoved
file: ./src/mappings/hypervisor.ts
- kind: ethereum/contract
name: USDC-Hypervisor
network: mainnet
source:
address: "0x96C105E9e9eAb36eb8e2f851A5dabFbBd397c085"
abi: Hypervisor
startBlock: 12108420
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- Hypervisor
- StakedToken
- RewardToken
abis:
- name: Hypervisor
file: ./abis/Hypervisor.json
- name: ERC20
file: ./abis/ERC20.json
eventHandlers:
- event: BonusTokenRegistered(address)
handler: handleBonusTokenRegistered
- event: HypervisorCreated(address,address)
handler: handleHypervisorCreated
- event: HypervisorFunded(uint256,uint256)
handler: handleHypervisorFunded
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
- event: RewardClaimed(address,address,address,uint256)
handler: handleRewardClaimed
- event: Staked(address,uint256)
handler: handleStaked
- event: Unstaked(address,uint256)
handler: handleUnstaked
- event: VaultFactoryRegistered(address)
handler: handleVaultFactoryRegistered
- event: VaultFactoryRemoved(address)
handler: handleVaultFactoryRemoved
file: ./src/mappings/hypervisor.ts
- kind: ethereum/contract
name: USDT-Hypervisor
network: mainnet
source:
address: "0xEBaE3CB14CE6C2F26B40b747fd92cCaf03B98659"
abi: Hypervisor
startBlock: 12108439
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- Hypervisor
- StakedToken
- RewardToken
abis:
- name: Hypervisor
file: ./abis/Hypervisor.json
- name: ERC20
file: ./abis/ERC20.json
eventHandlers:
- event: BonusTokenRegistered(address)
handler: handleBonusTokenRegistered
- event: HypervisorCreated(address,address)
handler: handleHypervisorCreated
- event: HypervisorFunded(uint256,uint256)
handler: handleHypervisorFunded
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
- event: RewardClaimed(address,address,address,uint256)
handler: handleRewardClaimed
- event: Staked(address,uint256)
handler: handleStaked
- event: Unstaked(address,uint256)
handler: handleUnstaked
- event: VaultFactoryRegistered(address)
handler: handleVaultFactoryRegistered
- event: VaultFactoryRemoved(address)
handler: handleVaultFactoryRemoved
file: ./src/mappings/hypervisor.ts
- kind: ethereum/contract
name: VISR-ETH-Hypervisor
network: mainnet
source:
address: "0x64fcDD0DE44f4bd04c039B0664FB95EF033D4efb"
abi: Hypervisor
startBlock: 12108528
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- Hypervisor
- StakedToken
- RewardToken
abis:
- name: Hypervisor
file: ./abis/Hypervisor.json
- name: ERC20
file: ./abis/ERC20.json
eventHandlers:
- event: BonusTokenRegistered(address)
handler: handleBonusTokenRegistered
- event: HypervisorCreated(address,address)
handler: handleHypervisorCreated
- event: HypervisorFunded(uint256,uint256)
handler: handleHypervisorFunded
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
- event: RewardClaimed(address,address,address,uint256)
handler: handleRewardClaimed
- event: Staked(address,uint256)
handler: handleStaked
- event: Unstaked(address,uint256)
handler: handleUnstaked
- event: VaultFactoryRegistered(address)
handler: handleVaultFactoryRegistered
- event: VaultFactoryRemoved(address)
handler: handleVaultFactoryRemoved
file: ./src/mappings/hypervisor.ts
- kind: ethereum/contract
name: UniswapV3HypervisorFactory
network: mainnet
source:
address: "0xd12fa3E3B60CFb96a735aB57a071F0f324860929"
abi: UniswapV3HypervisorFactory
startBlock: 12767944
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/mappings/uniswapV3/hypervisorFactory.ts
entities:
- UniswapV3HypervisorFactory
- UniswapV3Hypervisor
abis:
- name: UniswapV3HypervisorFactory
file: ./abis/UniswapV3HypervisorFactory.json
- name: UniswapV3Hypervisor
file: ./abis/UniswapV3Hypervisor.json
- name: ERC20
file: ./abis/ERC20.json
- name: ERC20NameBytes
file: ./abis/ERC20NameBytes.json
- name: ERC20SymbolBytes
file: ./abis/ERC20SymbolBytes.json
- name: UniswapV3Pool
file: ./abis/UniswapV3Pool.json
eventHandlers:
- event: HypervisorCreated(address,address,uint24,address,uint256)
handler: handleHypervisorCreated
- kind: ethereum/contract
name: UniswapV3HypervisorFactoryBeta2
network: mainnet
source:
address: "0xC878c38F0Df509a833D10De892e1Cf7D361e3A67"
abi: UniswapV3HypervisorFactory
startBlock: 12615883
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/mappings/uniswapV3/hypervisorFactory.ts
entities:
- UniswapV3HypervisorFactory
- UniswapV3Hypervisor
abis:
- name: UniswapV3HypervisorFactory
file: ./abis/UniswapV3HypervisorFactory.json
- name: UniswapV3Hypervisor
file: ./abis/UniswapV3Hypervisor.json
- name: ERC20
file: ./abis/ERC20.json
- name: ERC20NameBytes
file: ./abis/ERC20NameBytes.json
- name: ERC20SymbolBytes
file: ./abis/ERC20SymbolBytes.json
- name: UniswapV3Pool
file: ./abis/UniswapV3Pool.json
eventHandlers:
- event: HypervisorCreated(address,address,uint24,address,uint256)
handler: handleHypervisorCreated
- kind: ethereum/contract
name: UniswapV3HypervisorFactoryBeta1
network: mainnet
source:
address: "0x0AC51Fb63D1915a77aB7a7Bb53B031407584dD4C"
abi: UniswapV3HypervisorFactory
startBlock: 12590273
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/mappings/uniswapV3/hypervisorFactory.ts
entities:
- UniswapV3HypervisorFactory
- UniswapV3Hypervisor
abis:
- name: UniswapV3HypervisorFactory
file: ./abis/UniswapV3HypervisorFactory.json
- name: UniswapV3Hypervisor
file: ./abis/UniswapV3Hypervisor.json
- name: ERC20
file: ./abis/ERC20.json
- name: ERC20NameBytes
file: ./abis/ERC20NameBytes.json
- name: ERC20SymbolBytes
file: ./abis/ERC20SymbolBytes.json
- name: UniswapV3Pool
file: ./abis/UniswapV3Pool.json
eventHandlers:
- event: HypervisorCreated(address,address,uint24,address,uint256)
handler: handleHypervisorCreated
templates:
- name: UniswapV3Hypervisor
kind: ethereum/contract
network: mainnet
source:
abi: UniswapV3Hypervisor
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/mappings/uniswapV3/hypervisor.ts
entities:
- UniswapV3Hypervisor
- UniswapV3Deposit
- UniswapV3Rebalance
- UniswapV3Withdraw
- UniswapV3HypervisorShares
abis:
- name: UniswapV3Hypervisor
file: ./abis/UniswapV3Hypervisor.json
- name: UniswapV3Pool
file: ./abis/UniswapV3Pool.json
eventHandlers:
- event: Deposit(indexed address,indexed address,uint256,uint256,uint256)
handler: handleDeposit
- event: Withdraw(indexed address,indexed address,uint256,uint256,uint256)
handler: handleWithdraw
- event: Rebalance(int24,uint256,uint256,uint256,uint256,uint256)
handler: handleRebalance
callHandlers:
- function: setDepositMax(uint256,uint256)
handler: handleSetDepositMax
- function: setMaxTotalSupply(uint256)
handler: handleSetMaxTotalSupply