Calls

This section contains a full API reference of all public functions & events related to making and tracking xchain calls.

Events

XCalled

event XCalled(bytes32 transferId, uint256 nonce, bytes32 messageHash, struct TransferInfo params, address asset, uint256 amount, address local)

Emitted when xcall is called on the origin domain of a transfer.

Parameters

ExternalCalldataExecuted

event ExternalCalldataExecuted(bytes32 transferId, bool success, bytes returnData)

Emitted when a transfer has its external data executed

Parameters

Executed

event Executed(bytes32 transferId, address to, address asset, struct ExecuteArgs args, address local, uint256 amount, address caller)

Emitted when execute is called on the destination domain of a transfer.

execute may be called when providing fast liquidity or when processing a reconciled (slow) transfer.

Parameters

TransferRelayerFeesIncreased

event TransferRelayerFeesIncreased(bytes32 transferId, uint256 increase, address caller)

Emitted when _bumpTransfer is called by an user on the origin domain both in xcall and bumpTransfer

Parameters

SlippageUpdated

event SlippageUpdated(bytes32 transferId, uint256 slippage)

Emitted when forceUpdateSlippage is called by an user on the destination domain

Parameters


Getters

routedTransfers

function routedTransfers(bytes32 _transferId) public view returns (address[])

Gets a list of routers that routed a transfer by transferId.

Parameters

Return Values

transferStatus

function transferStatus(bytes32 _transferId) public view returns (enum DestinationTransferStatus)

Gets a transfer's status by transferId. Note - this function MUST be called on the destination chain.

Parameters

Return Values

domain

function domain() public view returns (uint32)

Gets the domain identifier of the chain.

Parameters

Return Values

Functions

xcall

function xcall(uint32 _destination, address _to, address _asset, address _delegate, uint256 _amount, uint256 _slippage, bytes _callData, uint256 _relayerFee) external payable returns (bytes32)

Initiates a cross-chain transfer of funds, calldata, and/or various named properties.

For ERC20 transfers, this contract must have approval to transfer the input (transacting) assets. The adopted assets will be swapped for their local (connext-flavored) asset counterparts (i.e. bridgeable tokens) via the configured AMM if necessary. In the event that the adopted assets are local assets, no swap is needed. The local tokens will then be sent via the bridge router. If the local assets are representational for an asset on another chain, we will burn the tokens here. If the local assets are canonical (meaning that the adopted to local asset pairing is native to this chain), we will custody the tokens here.

Parameters

Return Values

xcallIntoLocal

function xcallIntoLocal(uint32 _destination, address _to, address _asset, address _delegate, uint256 _amount, uint256 _slippage, bytes _callData, uint256 _relayerFee) external payable returns (bytes32)

Helper function that xcalls as normal but forces the receipt of the local (Connext-flavored) asset at destination. This function is used typically to generate nextAssets that can be used to LP into the destination chain stableswap. Params and returned data function exactly the same way as xcall.

execute

function execute(struct ExecuteArgs _args) external returns (bytes32)

Called on a destination domain to disburse correct assets to end recipient and execute any included calldata.

Can be called before or after handle [reconcile] is called (regarding the same transfer), depending on whether the fast liquidity route (i.e. funds provided by routers) is being used for this transfer. As a result, executed calldata (including properties like originSender) may or may not be verified depending on whether the reconcile has been completed (i.e. the optimistic confirmation period has elapsed).

Parameters

Return Values

bumpTransfer (native asset)

function bumpTransfer(bytes32 _transferId) external payable

Anyone can call this function on the origin domain to increase the relayer fee for a transfer. MUST be called on the origin domain.

Parameters

bumpTransfer (transacting asset)

function bumpTransfer(bytes32 _transferId, address _relayerFeeAsset, uint256 _relayerFee) external payable

Anyone can call this function to increase the relayer fee for a transfer (using the _relayerFeeAsset specified). MUST be called on the origin domain.

Parameters

forceUpdateSlippage

function forceUpdateSlippage(struct TransferInfo _params, uint256 _slippage) external

Allows a user-specified account (delegate in xcall) to update the slippage they are willing to take on destination transfers. MUST be called on the destination chain.

Parameters


Interfaces

xReceive

function xReceive(bytes32 _transferId, uint256 _amount, address _asset, address _originSender, uint32 _origin, bytes _callData) external returns (bytes)

Interface that the Connext contracts call into on the _to address specified during xcall. Developers MUST implement this on the destination chain to receive incoming calldata.

Parameters

Last updated