-
Notifications
You must be signed in to change notification settings - Fork 7
/
subgraph.template.yaml
486 lines (486 loc) · 15.8 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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
specVersion: 0.0.6
description: 0xSplits
repository: https://github.com/0xSplits/splits-subgraph
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: SplitMain
network: {{network}}
source:
address: {{{splitMainAddress}}}
abi: SplitMain
startBlock: {{splitStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Split
- Account
abis:
- name: SplitMain
file: ./abis/SplitMain.json
eventHandlers:
{{#ethereum}}
- event: CreateSplit(indexed address)
handler: handleCreateSplit
{{/ethereum}}
{{#polygon}}
- event: CreateSplit(indexed address,address[],uint32[],uint32,address)
handler: handleCreateSplit
{{/polygon}}
- event: InitiateControlTransfer(indexed address,indexed address)
handler: handleInitiateControlTransfer
- event: CancelControlTransfer(indexed address)
handler: handleCancelControlTransfer
- event: ControlTransfer(indexed address,indexed address,indexed address)
handler: handleControlTransfer
{{#ethereum}}
- event: UpdateSplit(indexed address)
handler: handleUpdateSplit
{{/ethereum}}
{{#polygon}}
- event: UpdateSplit(indexed address,address[],uint32[],uint32)
handler: handleUpdateSplit
{{/polygon}}
- event: DistributeETH(indexed address,uint256,indexed address)
handler: handleDistributeETH
- event: DistributeERC20(indexed address,indexed address,uint256,indexed address)
handler: handleDistributeERC20
- event: Withdrawal(indexed address,uint256,address[],uint256[])
handler: handleWithdrawal
{{#ethereum}}
callHandlers:
- function: createSplit(address[],uint32[],uint32,address)
handler: handleCreateSplitCall
- function: updateSplit(address,address[],uint32[],uint32)
handler: handleUpdateSplitCall
- function: updateAndDistributeETH(address,address[],uint32[],uint32,address)
handler: handleUpdateAndDistributeETHCall
- function: updateAndDistributeERC20(address,address,address[],uint32[],uint32,address)
handler: handleUpdateAndDistributeERC20Call
- function: distributeETH(address,address[],uint32[],uint32,address)
handler: handleDistributeETHCall
- function: distributeERC20(address,address,address[],uint32[],uint32,address)
handler: handleDistributeERC20Call
- function: withdraw(address,uint256,address[])
handler: handleWithdrawCall
{{/ethereum}}
file: ./src/mapping.ts
- kind: ethereum/contract
name: VestingModuleFactory
network: {{network}}
source:
address: {{{vestingFactoryAddress}}}
abi: VestingModuleFactory
startBlock: {{vestingStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- VestingModule
- CreateVestingModuleEvent
abis:
- name: VestingModuleFactory
file: ./abis/VestingModuleFactory.json
eventHandlers:
- event: CreateVestingModule(indexed address,indexed address,uint256)
handler: handleCreateVestingModule
file: ./src/vesting.mapping.ts
- kind: ethereum/contract
name: WaterfallModuleFactory
network: {{network}}
source:
address: {{{waterfallFactoryAddress}}}
abi: WaterfallModuleFactory
startBlock: {{waterfallStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- WaterfallModule
abis:
- name: WaterfallModuleFactory
file: ./abis/WaterfallModuleFactory.json
eventHandlers:
- event: CreateWaterfallModule(indexed address,address,address,address[],uint256[])
handler: handleCreateWaterfallModule
file: ./src/waterfall.mapping.ts
{{#ethereum}}
- kind: ethereum/contract
name: Chaos
network: {{network}}
source:
address: "0x8427e46826a520b1264B55f31fCB5DDFDc31E349"
abi: ChaosSplit
startBlock: 14891074
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- LiquidSplit
- Holder
abis:
- name: ChaosSplit
file: ./abis/ChaosSplit.json
- name: FullLiquidSplit
file: ./abis/FullLiquidSplit.json
eventHandlers:
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransferChaos721
file: ./src/liquid-split.mapping.ts
{{/ethereum}}
- kind: ethereum/contract
name: LiquidSplit
network: {{network}}
source:
abi: FullLiquidSplit
startBlock: {{liquidSplitStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- LiquidSplit
- Holder
abis:
- name: FullLiquidSplit
file: ./abis/FullLiquidSplit.json
eventHandlers:
- event: CreateLiquidSplit(indexed address)
handler: handleCreateLiquidSplit
file: ./src/liquid-split.mapping.ts
- kind: ethereum/contract
name: LiquidSplitFactory
network: {{network}}
source:
address: {{{liquidSplitFactoryAddress}}}
abi: LiquidSplitFactory
startBlock: {{liquidSplitStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- LiquidSplit
abis:
- name: FullLiquidSplit
file: ./abis/FullLiquidSplit.json
- name: LiquidSplitFactory
file: ./abis/LiquidSplitFactory.json
eventHandlers:
- event: CreateLS1155Clone(indexed address)
handler: handleCreateLiquidSplitClone
file: ./src/liquid-split.mapping.ts
- kind: ethereum/contract
name: Recoup
network: {{network}}
source:
address: {{{recoupAddress}}}
abi: Recoup
startBlock: {{recoupStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- WaterfallModule
- WaterfallTranche
- Split
abis:
- name: Recoup
file: ./abis/Recoup.json
eventHandlers:
- event: CreateRecoup(address)
handler: handleCreateRecoup
file: ./src/templates.mapping.ts
{{#swapper}}
- kind: ethereum/contract
name: UniV3OracleFactory
network: {{network}}
source:
address: {{{uniV3OracleFactoryAddress}}}
abi: UniV3OracleFactory
startBlock: {{uniV3OracleStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- UniswapV3TWAPOracle
- UniswapV3TWAPPairDetail
abis:
- name: UniV3OracleFactory
file: ./abis/UniV3OracleFactory.json
- name: UniV3Pool
file: ./abis/UniV3Pool.json
eventHandlers:
- event: CreateUniV3Oracle(indexed address,(address,bool,uint32,((address,address),(address,uint32))[]))
handler: handleCreateUniV3Oracle
file: ./src/oracle.mapping.ts
- kind: ethereum/contract
name: ChainlinkOracleFactory
network: {{network}}
source:
address: {{{chainlinkOracleFactoryAddress}}}
abi: ChainlinkOracleFactory
startBlock: {{chainlinkOracleStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- ChainlinkOracle
- ChainlinkOracleL2
- ChainlinkOraclePairDetail
abis:
- name: ChainlinkOracleFactory
file: ./abis/ChainlinkOracleFactory.json
- name: ChainlinkOracle
file: ./abis/ChainlinkOracle.json
eventHandlers:
- event: CreateChainlinkOracle(indexed address,(address,bool,((address,address),(bytes,bool))[]))
handler: handleCreateChainlinkOracle
file: ./src/chainlink-oracle.mapping.ts
- kind: ethereum/contract
name: SwapperFactory
network: {{network}}
source:
address: {{{swapperFactoryAddress}}}
abi: SwapperFactory
startBlock: {{swapperStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Swapper
abis:
- name: SwapperFactory
file: ./abis/SwapperFactory.json
eventHandlers:
- event: CreateSwapper(indexed address,(address,bool,address,address,address,uint32,((address,address),uint32)[]))
handler: handleCreateSwapper
file: ./src/swapper.mapping.ts
- kind: ethereum/contract
name: PassThroughWalletFactory
network: {{network}}
source:
address: {{{passThroughWalletFactoryAddress}}}
abi: PassThroughWalletFactory
startBlock: {{passThroughWalletStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- PassThroughWallet
abis:
- name: PassThroughWalletFactory
file: ./abis/PassThroughWalletFactory.json
eventHandlers:
- event: CreatePassThroughWallet(indexed address,(address,bool,address))
handler: handleCreatePassThroughWallet
file: ./src/pass-through-wallet.mapping.ts
- kind: ethereum/contract
name: DiversifierFactory
network: {{network}}
source:
address: {{{diversifierFactoryAddress}}}
abi: DiversifierFactory
startBlock: {{diversifierStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- PassThroughWallet
abis:
- name: DiversifierFactory
file: ./abis/DiversifierFactory.json
eventHandlers:
- event: CreateDiversifier(indexed address)
handler: handleCreateDiversifier
file: ./src/templates.mapping.ts
{{/swapper}}
templates:
- kind: ethereum/contract
name: VestingModule
network: {{network}}
source:
abi: VestingModule
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- VestingStream
abis:
- name: VestingModule
file: ./abis/VestingModule.json
eventHandlers:
- event: CreateVestingStream(indexed uint256,indexed address,uint256)
handler: handleCreateVestingStream
- event: ReleaseFromVestingStream(indexed uint256,uint256)
handler: handleReleaseFromVestingStream
file: ./src/vesting.mapping.ts
- kind: ethereum/contract
name: WaterfallModule
network: {{network}}
source:
abi: WaterfallModule
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- WaterfallTranche
abis:
- name: WaterfallModule
file: ./abis/WaterfallModule.json
eventHandlers:
- event: WaterfallFunds(address[],uint256[],uint256)
handler: handleWaterfallFunds
- event: RecoverNonWaterfallFunds(address,address,uint256)
handler: handleRecoverNonWaterfallFunds
file: ./src/waterfall.mapping.ts
- kind: ethereum/contract
name: LiquidSplit
network: {{network}}
source:
abi: FullLiquidSplit
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- LiquidSplit
- Holder
abis:
- name: FullLiquidSplit
file: ./abis/FullLiquidSplit.json
eventHandlers:
- event: TransferSingle(indexed address,indexed address,indexed address,uint256,uint256)
handler: handleTransferSingle1155
- event: TransferBatch(indexed address,indexed address,indexed address,uint256[],uint256[])
handler: handleTransferBatch1155
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransfer721
file: ./src/liquid-split.mapping.ts
- kind: ethereum/contract
name: UniV3Oracle
network: {{network}}
source:
abi: UniV3Oracle
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Oracle
- UniswapV3TWAPPairDetail
abis:
- name: UniV3Oracle
file: ./abis/UniV3Oracle.json
- name: UniV3Pool
file: ./abis/UniV3Pool.json
eventHandlers:
- event: SetDefaultPeriod(uint32)
handler: handleSetDefaultPeriod
- event: SetPairDetails(((address,address),(address,uint32))[])
handler: handleSetPairDetails
- event: SetPaused(bool)
handler: handleSetPaused
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
file: ./src/oracle.mapping.ts
- kind: ethereum/contract
name: ChainlinkOracle
network: {{network}}
source:
abi: ChainlinkOracle
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Oracle
- ChainlinkPairDetail
abis:
- name: ChainlinkOracle
file: ./abis/ChainlinkOracle.json
eventHandlers:
- event: SetPairDetails(((address,address),(bytes,bool))[])
handler: handleSetPairDetails
- event: SetPaused(bool)
handler: handleSetPaused
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
file: ./src/chainlink-oracle.mapping.ts
- kind: ethereum/contract
name: Swapper
network: {{network}}
source:
abi: Swapper
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Swapper
- SwapBalance
abis:
- name: Swapper
file: ./abis/Swapper.json
eventHandlers:
- event: SetBeneficiary(address)
handler: handleSetBeneficiary
- event: SetTokenToBeneficiary(address)
handler: handleSetTokenToBeneficiary
- event: SetOracle(address)
handler: handleSetOracle
- event: SetDefaultScaledOfferFactor(uint32)
handler: handleSetDefaultScaledOfferFactor
- event: SetPairScaledOfferFactors(((address,address),uint32)[])
handler: handleSetPairScaledOfferFactors
- event: SetPaused(bool)
handler: handleSetPaused
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
- event: ExecCalls((address,uint256,bytes)[])
handler: handleExecCalls
receipt: true
- event: Flash(indexed address,indexed address,((address,address),uint128,bytes)[],address,uint256[],uint256)
handler: handleFlash
file: ./src/swapper.mapping.ts
- kind: ethereum/contract
name: PassThroughWallet
network: {{network}}
source:
abi: PassThroughWallet
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- PassThroughWallet
- TokenRelease
abis:
- name: PassThroughWallet
file: ./abis/PassThroughWallet.json
eventHandlers:
- event: SetPassThrough(address)
handler: handleSetPassThrough
- event: SetPaused(bool)
handler: handleSetPaused
- event: OwnershipTransferred(indexed address,indexed address)
handler: handleOwnershipTransferred
- event: ExecCalls((address,uint256,bytes)[])
handler: handleExecCalls
- event: PassThrough(indexed address,address[],uint256[])
handler: handlePassThrough
file: ./src/pass-through-wallet.mapping.ts