-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathv2.template.yaml
222 lines (222 loc) Β· 8.28 KB
/
v2.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
{{ #v2 }}
{{ #jbETHERC20ProjectPayerDeployer }}
- kind: ethereum/contract
name: JBETHERC20ProjectPayerDeployer2
network: {{network}}
source:
abi: JBETHERC20ProjectPayerDeployer2
address: '{{address}}'
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- ETHERC20ProjectPayer
- DeployETHERC20ProjectPayerEvent
abis:
- name: JBETHERC20ProjectPayerDeployer2
file: ./abis/v2/JBETHERC20ProjectPayerDeployer.json
- name: JBETHERC20ProjectPayer
file: ./abis/shared/JBETHERC20ProjectPayer.json
eventHandlers:
- event: DeployProjectPayer(indexed address,uint256,address,bool,string,bytes,bool,address,address,address)
handler: handleDeployProjectPayer
file: ./src/mappings/v2/jbETHERC20ProjectPayerDeployer.ts
{{ /jbETHERC20ProjectPayerDeployer }}
{{ #jbETHERC20SplitsPayerDeployer }}
- kind: ethereum/contract
name: JBETHERC20SplitsPayerDeployer2
network: {{network}}
source:
abi: JBETHERC20SplitsPayerDeployer
address: '{{address}}'
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- ETHERC20SplitsPayer
- DeployETHERC20SplitsPayerEvent
abis:
- name: JBETHERC20SplitsPayerDeployer
file: ./abis/v2/JBETHERC20SplitsPayerDeployer.json
eventHandlers:
- event: DeploySplitsPayer(indexed address,uint256,uint256,uint256,address,uint256,address,bool,string,bytes,bool,address,address)
handler: handleDeploySplitsPayer
file: ./src/mappings/v2/jbETHERC20SplitsPayerDeployer.ts
{{ /jbETHERC20SplitsPayerDeployer }}
{{ #jbController }}
- kind: ethereum/contract
name: JBController2
network: {{network}}
source:
abi: JBController2
address: '{{address}}'
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- DistributeReservedTokensEvent
- DistributeToReservedTokenSplitEvent
- MintTokensEvent
- ConfigureEvent
- Project
- SetFundAccessConstraintsEvent
abis:
- name: JBController2
file: ./abis/v2/JBController.json
eventHandlers:
- event: LaunchProject(uint256,uint256,string,address)
handler: handleLaunchProject
- event: MintTokens(indexed address,indexed uint256,uint256,uint256,string,uint256,address)
handler: handleMintTokens
- event: DistributeReservedTokens(indexed uint256,indexed uint256,indexed uint256,address,uint256,uint256,string,address)
handler: handleDistributeReservedTokens
- event: DistributeToReservedTokenSplit(indexed uint256,indexed uint256,indexed uint256,(bool,bool,uint256,uint256,address,uint256,address),uint256,address)
handler: handleDistributeToReservedTokenSplit
- event: ReconfigureFundingCycles(uint256,uint256,string,address)
handler: handleReconfigureFundingCycles
- event: SetFundAccessConstraints(indexed uint256,indexed uint256,indexed uint256,(address,address,uint256,uint256,uint256,uint256),address)
handler: handleSetFundAccessConstraints
file: ./src/mappings/v2/jbController.ts
{{ /jbController }}
{{ #jbTokenStore }}
- kind: ethereum/contract
name: JBTokenStore2
network: {{network}}
source:
abi: JBTokenStore2
address: '{{address}}'
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- DeployedERC20Event
- Participant
- Project
- ProjectEvent
- ProtocolV2Log
abis:
- name: JBTokenStore2
file: ./abis/v2/JBTokenStore.json
eventHandlers:
- event: Burn(indexed address,indexed uint256,uint256,uint256,uint256,bool,address)
handler: handleBurn
- event: Claim(indexed address,indexed uint256,uint256,uint256,address)
handler: handleClaim
- event: Issue(indexed uint256,indexed address,string,string,address)
handler: handleIssue
- event: Mint(indexed address,indexed uint256,uint256,bool,bool,address)
handler: handleMint
- event: Transfer(indexed address,indexed uint256,indexed address,uint256,address)
handler: handleTransfer
file: ./src/mappings/v2/jbTokenStore.ts
{{ /jbTokenStore }}
{{ #jbProjects }}
- kind: ethereum/contract
name: JBProjects
network: {{network}}
source:
abi: JBProjects
address: '{{address}}'
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- Project
- ProjectCreateEvent
- ProjectEvent
- ProtocolV2Log
abis:
- name: JBProjects
file: ./abis/v2/JBProjects.json
eventHandlers:
- event: Create(indexed uint256,indexed address,(string,uint256),address)
handler: handleCreate
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransferOwnership
- event: SetMetadata(indexed uint256,(string,uint256),address)
handler: handleSetMetadata
file: ./src/mappings/v2/jbProjects.ts
{{ /jbProjects }}
{{ #jbFundingCycleStore }}
- kind: ethereum/contract
name: JBFundingCycleStore2
network: {{network}}
source:
abi: JBFundingCycleStore2
address: '{{address}}'
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- ConfigureEvent
- InitEvent
abis:
- name: JBController2
file: ./abis/v2/JBController.json
- name: JBFundingCycleStore2
file: ./abis/v2/JBFundingCycleStore.json
eventHandlers:
- event: Configure(indexed uint256,indexed uint256,(uint256,uint256,uint256,address),uint256,uint256,address)
handler: handleConfigure
- event: Init(indexed uint256,indexed uint256,indexed uint256)
handler: handleInit
file: ./src/mappings/v2/jbFundingCycleStore.ts
{{ /jbFundingCycleStore }}
{{ #jbETHPaymentTerminal }}
- kind: ethereum/contract
name: JBETHPaymentTerminal2
network: {{network}}
source:
abi: JBETHPaymentTerminal2
address: '{{address}}'
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- DistributePayoutsEvent
- DistributeToPayoutSplitEvent
- Participant
- PayEvent
- Project
- ProtocolV2Log
- RedeemEvent
- UseAllowanceEvent
abis:
- name: JBETHPaymentTerminal2
file: ./abis/v2/JBETHPaymentTerminal.json
- name: JBPrices2
file: ./abis/v2/JBPrices.json
- name: JBPrices3
file: ./abis/v3/JBPrices.json
eventHandlers:
- event: Pay(indexed uint256,indexed uint256,indexed uint256,address,address,uint256,uint256,string,bytes,address)
handler: handlePay
- event: RedeemTokens(indexed uint256,indexed uint256,indexed uint256,address,address,uint256,uint256,string,bytes,address)
handler: handleRedeemTokens
- event: AddToBalance(indexed uint256,uint256,uint256,string,bytes,address)
handler: handleAddToBalance
- event: DistributePayouts(indexed uint256,indexed uint256,indexed uint256,address,uint256,uint256,uint256,uint256,string,address)
handler: handleDistributePayouts
- event: UseAllowance(indexed uint256,indexed uint256,indexed uint256,address,uint256,uint256,uint256,string,address)
handler: handleUseAllowance
- event: DistributeToPayoutSplit(indexed uint256,indexed uint256,indexed uint256,(bool,bool,uint256,uint256,address,uint256,address),uint256,address)
handler: handleDistributeToPayoutSplit
- event: ProcessFee(indexed uint256,indexed uint256,indexed bool,address,address)
handler: handleProcessFee
file: ./src/mappings/v2/jbETHPaymentTerminal.ts
{{ /jbETHPaymentTerminal }}
{{ /v2 }}