Skip to content

Commit 5eb5055

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

File tree

13 files changed

+13
-3
lines changed

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,

kleros-sdk/config/v2-disputetemplate/curate/DisputeDetails.curate.jsonc renamed to kleros-sdk/config/v2-disputetemplate/curate/example/DisputeDetails.curate.jsonc

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/curate/DisputeTemplateInputs.curate.txt renamed to kleros-sdk/config/v2-disputetemplate/curate/example/DisputeTemplateInputs.curate.txt

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/curate/NewDispute.curate.jsonc renamed to kleros-sdk/config/v2-disputetemplate/curate/example/NewDispute.curate.jsonc

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/linguo/DisputeDetails.linguo.jsonc renamed to kleros-sdk/config/v2-disputetemplate/linguo/example/DisputeDetails.linguo.jsonc

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/linguo/DisputeTemplateInputs.linguo.txt renamed to kleros-sdk/config/v2-disputetemplate/linguo/example/DisputeTemplateInputs.linguo.txt

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/linguo/NewDispute.linguo.jsonc renamed to kleros-sdk/config/v2-disputetemplate/linguo/example/NewDispute.linguo.jsonc

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/poh/DisputeDetails.poh1.jsonc renamed to kleros-sdk/config/v2-disputetemplate/poh/example1-registration/DisputeDetails.poh1.jsonc

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/poh/DisputeTemplateInputs.poh1.txt renamed to kleros-sdk/config/v2-disputetemplate/poh/example1-registration/DisputeTemplateInputs.poh1.txt

File renamed without changes.

kleros-sdk/config/v2-disputetemplate/poh/NewDispute.poh1.jsonc renamed to kleros-sdk/config/v2-disputetemplate/poh/example1-registration/NewDispute.poh1.jsonc

File renamed without changes.

0 commit comments

Comments
 (0)