@@ -33,16 +33,26 @@ interface IArbitrableV2 {
33
33
* @param _templateUri IPFS path to the dispute template starting with '/ipfs/'. Should not be used with _templateId.
34
34
*/
35
35
event DisputeRequest (
36
- IArbitrorV2 indexed _arbitrator ,
36
+ IArbitratorV2 indexed _arbitrator ,
37
37
uint256 indexed _arbitrableDisputeID ,
38
38
uint256 _externalDisputeID ,
39
39
uint256 _templateId ,
40
40
string _templateUri
41
41
);
42
42
43
+ /**
44
+ * @dev To be emitted when a dispute is created to link the correct meta-evidence to the disputeID.
45
+ * @param _arbitrator The arbitrator of the contract.
46
+ * @param _arbitrableChainId The chain ID of the Arbitrable contract.
47
+ * @param _arbitrable The address of the Arbitrable contract.
48
+ * @param _arbitrableDisputeID The ID of the dispute in the Arbitrable contract.
49
+ * @param _externalDisputeID An identifier created outside Kleros by the protocol requesting arbitration.
50
+ * @param _templateId The ID of the dispute template. Should not be used with _templateUri.
51
+ * @param _templateUri IPFS path to the dispute template starting with '/ipfs/'. Should not be used with _templateId.
52
+ */
43
53
event CrossChainDisputeRequest (
44
- IArbitrorV2 indexed _arbitrator ,
45
- uint256 indexed _arbitrableChainId ,
54
+ IArbitratorV2 indexed _arbitrator ,
55
+ uint256 _arbitrableChainId ,
46
56
address indexed _arbitrable ,
47
57
uint256 indexed _arbitrableDisputeID ,
48
58
uint256 _externalDisputeID ,
0 commit comments