You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// @dev To be emitted when a dispute is received from the IForeignGateway.
17
+
/// @param _arbitrator The arbitrator of the contract.
18
+
/// @param _arbitrableChainId The chain identifier where the Arbitrable contract is deployed.
19
+
/// @param _arbitrable The address of the Arbitrable contract.
20
+
/// @param _arbitrableDisputeID The identifier of the dispute in the Arbitrable contract.
21
+
/// @param _externalDisputeID An identifier created outside Kleros by the protocol requesting arbitration.
22
+
/// @param _templateId The identifier of the dispute template. Should not be used with _templateUri.
23
+
/// @param _templateUri IPFS path to the dispute template starting with '/ipfs/'. Should not be used with _templateId.
24
+
event CrossChainDisputeIncoming(
25
+
IArbitratorV2 indexed_arbitrator,
26
+
uint256_arbitrableChainId,
27
+
addressindexed_arbitrable,
28
+
uint256indexed_arbitrableDisputeID,
29
+
uint256_externalDisputeID,
30
+
uint256_templateId,
31
+
string_templateUri
32
+
);
33
+
16
34
/// @dev Provide the same parameters as on the foreignChain while creating a dispute. Providing incorrect parameters will create a different hash than on the foreignChain and will not affect the actual dispute/arbitrable's ruling.
0 commit comments