Skip to content

Commit 5eb5055

Browse files
committed
refactor: example folder
1 parent 3ada1e7 commit 5eb5055

13 files changed

+13
-3
lines changed

contracts/src/arbitration/IArbitrableV2.sol

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,26 @@ interface IArbitrableV2 {
3333
* @param _templateUri IPFS path to the dispute template starting with '/ipfs/'. Should not be used with _templateId.
3434
*/
3535
event DisputeRequest(
36-
IArbitrorV2 indexed _arbitrator,
36+
IArbitratorV2 indexed _arbitrator,
3737
uint256 indexed _arbitrableDisputeID,
3838
uint256 _externalDisputeID,
3939
uint256 _templateId,
4040
string _templateUri
4141
);
4242

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+
*/
4353
event CrossChainDisputeRequest(
44-
IArbitrorV2 indexed _arbitrator,
45-
uint256 indexed _arbitrableChainId,
54+
IArbitratorV2 indexed _arbitrator,
55+
uint256 _arbitrableChainId,
4656
address indexed _arbitrable,
4757
uint256 indexed _arbitrableDisputeID,
4858
uint256 _externalDisputeID,

0 commit comments

Comments
 (0)