@@ -34,7 +34,8 @@ dataSources:
34
34
- name : DisputeKitClassic
35
35
file : ../../contracts/deployments/_PLACEHOLDER_/DisputeKitClassicNeo.json
36
36
- name : KlerosCore
37
- file : ../../contracts/deployments/_PLACEHOLDER_/KlerosCoreNeo.json
37
+ # FIX: temporarily point to the abi with event addition.
38
+ file : ./abi-migrations/KlerosCoreNeo.json
38
39
eventHandlers :
39
40
- event : AppealDecision(indexed uint256,indexed address)
40
41
handler : handleAppealDecision
@@ -45,6 +46,9 @@ dataSources:
45
46
handler : handleDraw
46
47
- event : NewPeriod(indexed uint256,uint8)
47
48
handler : handleNewPeriod
49
+ - event : CourtCreated(indexed uint96,indexed uint96,bool,uint256,uint256,uint256,uint256,uint256[4],uint256[])
50
+ handler : handleCourtCreated
51
+ # FIX: This is support for old signature
48
52
- event : CourtCreated(indexed uint256,indexed uint96,bool,uint256,uint256,uint256,uint256,uint256[4],uint256[])
49
53
handler : handleCourtCreated
50
54
- event : CourtModified(indexed uint96,bool,uint256,uint256,uint256,uint256,uint256[4])
@@ -140,7 +144,7 @@ dataSources:
140
144
file : ../../contracts/deployments/_PLACEHOLDER_/DisputeKitClassicNeo.json
141
145
- name : KlerosCore
142
146
# FIX: temporarily point to abi with event addition
143
- file : ./abi-migrations/KlerosCore .json
147
+ file : ./abi-migrations/KlerosCoreNeo .json
144
148
eventHandlers :
145
149
- event : DisputeCreation(indexed uint256,uint256,bytes)
146
150
handler : handleDisputeCreation
@@ -191,16 +195,16 @@ dataSources:
191
195
- JurorTokensPerCourt
192
196
abis :
193
197
- name : SortitionModule
194
- file : ../../contracts/deployments/_PLACEHOLDER_/SortitionModuleNeo.json
198
+ # FIX: temporarily point to abi with event addition
199
+ file : ./abi-migrations/SortitionModuleNeo.json
195
200
eventHandlers :
196
- - event : StakeDelayedAlreadyTransferredDeposited(indexed address,uint256,uint256)
197
- handler : handleStakeDelayedAlreadyTransferredDeposited
198
- - event : StakeDelayedAlreadyTransferredWithdrawn(indexed address,indexed uint96,uint256)
199
- handler : handleStakeDelayedAlreadyTransferredWithdrawn
200
- - event : StakeDelayedNotTransferred(indexed address,uint256,uint256)
201
- handler : handleStakeDelayedNotTransferred
201
+ - event : StakeDelayed(indexed address,indexed uint96,uint256)
202
+ handler : handleStakeDelayed
202
203
- event : StakeLocked(indexed address,uint256,bool)
203
204
handler : handleStakeLocked
204
205
- event : StakeSet(indexed address,uint256,uint256,uint256)
205
206
handler : handleStakeSet
207
+ # FIX: old stake set signature
208
+ - event : StakeSet(indexed address,uint256,uint256)
209
+ handler : handleStakeSet
206
210
file : ./src/SortitionModule.ts
0 commit comments