@@ -144,6 +144,7 @@ abstract contract AuthForwarderXReceiver is IXReceiver, Ownable2Step {
144144 * @param _amount - The amount of funds received in this transfer
145145 * @param _asset - The asset of the funds received in this transfer
146146 * @param _callData - The data to be prepared and forwarded
147+ * @return the success status of the forwardFunctionCall
147148 */
148149 function xReceive (
149150 bytes32 _transferId ,
@@ -199,6 +200,7 @@ abstract contract AuthForwarderXReceiver is IXReceiver, Ownable2Step {
199200 * @param _data - The data to be prepared
200201 * @param _amount - The amount of funds received in this transfer
201202 * @param _asset - The asset of the funds received in this transfer
203+ * @return The result of the forward Function call
202204 */
203205 function prepareAndForward (
204206 bytes32 _transferId ,
@@ -229,6 +231,7 @@ abstract contract AuthForwarderXReceiver is IXReceiver, Ownable2Step {
229231 * @param _data - The data to be prepared
230232 * @param _amount - The amount of funds received in this transfer
231233 * @param _asset - The asset of the funds received in this transfer
234+ * @return encoded data
232235 */
233236 function _prepare (
234237 bytes32 _transferId ,
@@ -249,6 +252,7 @@ abstract contract AuthForwarderXReceiver is IXReceiver, Ownable2Step {
249252 * @param _transferId - The transfer ID of the transfer that triggered this call
250253 * @param _amount - The amount of funds received in this transfer
251254 * @param _asset - The asset of the funds received in this transfer
255+ * @return the result of the call
252256 */
253257 function _forwardFunctionCall (
254258 bytes memory _preparedData ,
0 commit comments