@@ -105,43 +105,10 @@ contract HomeGateway is IHomeGateway {
105
105
// ************************************* //
106
106
107
107
/// @inheritdoc IHomeGateway
108
- function relayCreateDispute (
109
- uint256 _foreignChainID ,
110
- bytes32 _foreignBlockHash ,
111
- uint256 _foreignDisputeID ,
112
- uint256 _choices ,
113
- bytes calldata _extraData ,
114
- address _arbitrable
115
- ) external payable override {
108
+ function relayCreateDispute (RelayCreateDisputeParams memory _params ) external payable override {
116
109
require (feeToken == NATIVE_CURRENCY, "Fees paid in ERC20 only " );
117
- require (_foreignChainID == foreignChainID, "Foreign chain ID not supported " );
118
-
119
- bytes32 disputeHash = keccak256 (
120
- abi.encodePacked (
121
- _foreignChainID,
122
- _foreignBlockHash,
123
- "createDispute " ,
124
- _foreignDisputeID,
125
- _choices,
126
- _extraData,
127
- _arbitrable
128
- )
129
- );
130
- RelayedData storage relayedData = disputeHashtoRelayedData[disputeHash];
131
- require (relayedData.relayer == address (0 ), "Dispute already relayed " );
132
-
133
- uint256 disputeID = arbitrator.createDispute {value: msg .value }(_choices, _extraData);
134
- disputeIDtoHash[disputeID] = disputeHash;
135
- disputeHashtoID[disputeHash] = disputeID;
136
- relayedData.relayer = msg .sender ;
137
-
138
- emit Dispute (arbitrator, disputeID, 0 , 0 );
139
- }
140
-
110
+ require (_params.foreignChainID == foreignChainID, "Foreign chain ID not supported " );
141
111
142
- /// @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.
143
- /// @param _params The parameters of the dispute, see `RelayCreateDisputeParams`.
144
- function relayCreateDispute (RelayCreateDisputeParams memory _params ) external payable override {
145
112
bytes32 disputeHash = keccak256 (
146
113
abi.encodePacked (
147
114
"createDispute " ,
@@ -153,14 +120,9 @@ contract HomeGateway is IHomeGateway {
153
120
_params.extraData
154
121
)
155
122
);
156
- require (_params.foreignChainID == foreignChainID, "Foreign chain ID not supported " );
157
-
158
123
RelayedData storage relayedData = disputeHashtoRelayedData[disputeHash];
159
124
require (relayedData.relayer == address (0 ), "Dispute already relayed " );
160
125
161
- relayedData.arbitrationCost = arbitrator.arbitrationCost (_params.extraData);
162
- require (msg .value >= relayedData.arbitrationCost, "Not enough arbitration cost paid " );
163
-
164
126
uint256 disputeID = arbitrator.createDispute {value: msg .value }(_params.choices, _params.extraData);
165
127
disputeIDtoHash[disputeID] = disputeHash;
166
128
disputeHashtoID[disputeHash] = disputeID;
@@ -180,27 +142,19 @@ contract HomeGateway is IHomeGateway {
180
142
}
181
143
182
144
/// @inheritdoc IHomeGateway
183
- function relayCreateDispute (
184
- uint256 _foreignChainID ,
185
- bytes32 _foreignBlockHash ,
186
- uint256 _foreignDisputeID ,
187
- uint256 _choices ,
188
- bytes calldata _extraData ,
189
- address _arbitrable ,
190
- uint256 _feeAmount
191
- ) external {
145
+ function relayCreateDispute (RelayCreateDisputeParams memory _params , uint256 _feeAmount ) external {
192
146
require (feeToken != NATIVE_CURRENCY, "Fees paid in native currency only " );
193
- require (_foreignChainID == foreignChainID, "Foreign chain ID not supported " );
147
+ require (_params.foreignChainID == foreignChainID, "Foreign chain ID not supported " );
194
148
195
149
bytes32 disputeHash = keccak256 (
196
150
abi.encodePacked (
197
- _foreignChainID,
198
- _foreignBlockHash,
199
151
"createDispute " ,
200
- _foreignDisputeID,
201
- _choices,
202
- _extraData,
203
- _arbitrable
152
+ _params.foreignBlockHash,
153
+ _params.foreignChainID,
154
+ _params.foreignArbitrable,
155
+ _params.foreignDisputeID,
156
+ _params.choices,
157
+ _params.extraData
204
158
)
205
159
);
206
160
RelayedData storage relayedData = disputeHashtoRelayedData[disputeHash];
@@ -209,12 +163,22 @@ contract HomeGateway is IHomeGateway {
209
163
require (feeToken.safeTransferFrom (msg .sender , address (this ), _feeAmount), "Transfer failed " );
210
164
require (feeToken.increaseAllowance (address (arbitrator), _feeAmount), "Allowance increase failed " );
211
165
212
- uint256 disputeID = arbitrator.createDispute (_choices, _extraData , feeToken, _feeAmount);
166
+ uint256 disputeID = arbitrator.createDispute (_params.choices, _params.extraData , feeToken, _feeAmount);
213
167
disputeIDtoHash[disputeID] = disputeHash;
214
168
disputeHashtoID[disputeHash] = disputeID;
215
169
relayedData.relayer = msg .sender ;
216
170
217
- emit Dispute (arbitrator, disputeID, 0 , 0 );
171
+ emit DisputeRequest (arbitrator, disputeID, _params.externalDisputeID, _params.templateId, _params.templateUri);
172
+
173
+ emit CrossChainDisputeIncoming (
174
+ arbitrator,
175
+ _params.foreignChainID,
176
+ _params.foreignArbitrable,
177
+ _params.foreignDisputeID,
178
+ _params.externalDisputeID,
179
+ _params.templateId,
180
+ _params.templateUri
181
+ );
218
182
}
219
183
220
184
/// @inheritdoc IArbitrableV2
0 commit comments