@@ -78,10 +78,25 @@ contract DisputeKitSybilResistant is BaseDisputeKit, IEvidence {
78
78
// * Events * //
79
79
// ************************************* //
80
80
81
+ /// @dev To be emitted when a dispute is created.
82
+ /// @param _coreDisputeID The identifier of the dispute in the Arbitrator contract.
83
+ /// @param _numberOfChoices The number of choices available in the dispute.
84
+ /// @param _extraData The extra data for the dispute.
81
85
event DisputeCreation (uint256 indexed _coreDisputeID , uint256 _numberOfChoices , bytes _extraData );
82
86
83
- event CommitCast (uint256 indexed _coreDisputeID , uint256 [] _voteIDs , bytes32 _commit );
84
-
87
+ /// @dev To be emitted when a vote commitment is cast.
88
+ /// @param _coreDisputeID The identifier of the dispute in the Arbitrator contract.
89
+ /// @param _juror The address of the juror casting the vote commitment.
90
+ /// @param _voteIDs The identifiers of the votes in the dispute.
91
+ /// @param _commit The commitment of the juror.
92
+ event CommitCast (uint256 indexed _coreDisputeID , address indexed _juror , uint256 [] _voteIDs , bytes32 _commit );
93
+
94
+ /// @dev To be emitted when a funding contribution is made.
95
+ /// @param _coreDisputeID The identifier of the dispute in the Arbitrator contract.
96
+ /// @param _coreRoundID The identifier of the round in the Arbitrator contract.
97
+ /// @param _choice The choice that is being funded.
98
+ /// @param _contributor The address of the contributor.
99
+ /// @param _amount The amount contributed.
85
100
event Contribution (
86
101
uint256 indexed _coreDisputeID ,
87
102
uint256 indexed _coreRoundID ,
@@ -90,6 +105,12 @@ contract DisputeKitSybilResistant is BaseDisputeKit, IEvidence {
90
105
uint256 _amount
91
106
);
92
107
108
+ /// @dev To be emitted when the contributed funds are withdrawn.
109
+ /// @param _coreDisputeID The identifier of the dispute in the Arbitrator contract.
110
+ /// @param _coreRoundID The identifier of the round in the Arbitrator contract.
111
+ /// @param _choice The choice that is being funded.
112
+ /// @param _contributor The address of the contributor.
113
+ /// @param _amount The amount withdrawn.
93
114
event Withdrawal (
94
115
uint256 indexed _coreDisputeID ,
95
116
uint256 indexed _coreRoundID ,
@@ -98,6 +119,10 @@ contract DisputeKitSybilResistant is BaseDisputeKit, IEvidence {
98
119
uint256 _amount
99
120
);
100
121
122
+ /// @dev To be emitted when a choice is fully funded for an appeal.
123
+ /// @param _coreDisputeID The identifier of the dispute in the Arbitrator contract.
124
+ /// @param _coreRoundID The identifier of the round in the Arbitrator contract.
125
+ /// @param _choice The choice that is being funded.
101
126
event ChoiceFunded (uint256 indexed _coreDisputeID , uint256 indexed _coreRoundID , uint256 indexed _choice );
102
127
103
128
// ************************************* //
@@ -220,7 +245,7 @@ contract DisputeKitSybilResistant is BaseDisputeKit, IEvidence {
220
245
round.votes[_voteIDs[i]].commit = _commit;
221
246
}
222
247
round.totalCommitted += _voteIDs.length ;
223
- emit CommitCast (_coreDisputeID, _voteIDs, _commit);
248
+ emit CommitCast (_coreDisputeID, msg . sender , _voteIDs, _commit);
224
249
}
225
250
226
251
/// @dev Sets the caller's choices for the specified votes.
@@ -278,7 +303,7 @@ contract DisputeKitSybilResistant is BaseDisputeKit, IEvidence {
278
303
round.tied = false ;
279
304
}
280
305
}
281
- emit Justification (_coreDisputeID, msg .sender , _choice, _justification);
306
+ emit VoteCast (_coreDisputeID, msg .sender , _voteIDs , _choice, _justification);
282
307
}
283
308
284
309
/// @dev Manages contributions, and appeals a dispute if at least two choices are fully funded.
0 commit comments