Minor update

This commit is contained in:
Shriya Tyagi 2023-05-04 03:14:15 +05:30
parent 2fb087f3ec
commit d28f099cf3
2 changed files with 1 additions and 11 deletions

View File

@ -19,7 +19,7 @@ contract Helpers is DSMath, Basic {
* @param to The address to send the bridged assets to.
* @param asset The address of token to be bridged.
* @param delegate Address that can revert or forceLocal on destination.
* @param amount The amount to transfer.
* @param amount The amount to transfer + relayer fee.
* @param slippage Maximum amount of slippage the user will accept in BPS.
* @param relayerFee Relayer fee paid in origin native asset.
* @param callData Encoded calldata to send.

View File

@ -4,16 +4,6 @@ pragma solidity ^0.7.0;
interface IConnext {
// ============ BRIDGE ==============
function xcall(
uint32 _destination,
address _to,
address _asset,
address _delegate,
uint256 _amount,
uint256 _slippage,
bytes calldata _callData
) external payable returns (bytes32);
function xcall(
uint32 _destination,
address _to,