Skip to content

Commit 3ada1e7

Browse files
authored
docs: CrossChainDisputeRequest event
1 parent a8d6b21 commit 3ada1e7

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

contracts/src/arbitration/IArbitrableV2.sol

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,18 @@ interface IArbitrableV2 {
3232
* @param _templateId The ID of the dispute template. Should not be used with _templateUri.
3333
* @param _templateUri IPFS path to the dispute template starting with '/ipfs/'. Should not be used with _templateId.
3434
*/
35-
event NewDisputeRequest(
36-
IArbitrableV2 indexed _arbitrator,
35+
event DisputeRequest(
36+
IArbitrorV2 indexed _arbitrator,
37+
uint256 indexed _arbitrableDisputeID,
38+
uint256 _externalDisputeID,
39+
uint256 _templateId,
40+
string _templateUri
41+
);
42+
43+
event CrossChainDisputeRequest(
44+
IArbitrorV2 indexed _arbitrator,
45+
uint256 indexed _arbitrableChainId,
46+
address indexed _arbitrable,
3747
uint256 indexed _arbitrableDisputeID,
3848
uint256 _externalDisputeID,
3949
uint256 _templateId,

0 commit comments

Comments
 (0)