forked from 0xSplits/splits-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.template.yaml
242 lines (242 loc) · 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
specVersion: 0.0.2
description: 0xSplits
repository: https://github.com/0xSplits/splits-subgraph
schema:
file: ./schema.graphql
dataSources:
{{#ethereum}}
- kind: ethereum/contract
name: Chaos
network: {{network}}
source:
address: "0x8427e46826a520b1264B55f31fCB5DDFDc31E349"
abi: ChaosSplit
startBlock: 14891074
mapping:
kind: ethereum/events
apiVersion: 0.0.6
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: SplitMain
network: {{network}}
source:
address: {{{splitMainAddress}}}
abi: SplitMain
startBlock: {{splitStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
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
{{/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.6
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.6
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
- kind: ethereum/contract
name: LiquidSplit
network: {{network}}
source:
abi: FullLiquidSplit
startBlock: {{liquidSplitStartBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
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.6
language: wasm/assemblyscript
entities:
- LiquidSplit
abis:
- name: FullLiquidSplit
file: ./abis/FullLiquidSplit.json
- name: LiquidSplitFactory
file: ./abis/LiquidSplitFactory.json
eventHandlers:
- event: CreateLS1155(indexed address)
handler: handleCreateLiquidSplitFromFactory
- event: CreateLS1155Clone(indexed address)
handler: handleCreateLiquidSplitClone
file: ./src/liquid-split.mapping.ts
templates:
- kind: ethereum/contract
name: VestingModule
network: {{network}}
source:
abi: VestingModule
mapping:
kind: ethereum/events
apiVersion: 0.0.6
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.6
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.6
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