mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
49 lines
1.3 KiB
Solidity
49 lines
1.3 KiB
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
import { TokenInterface } from "../../common/interfaces.sol";
|
|
import { DSMath } from "../../common/math.sol";
|
|
import { Basic } from "../../common/basic.sol";
|
|
import { IConnext } from "./interface.sol";
|
|
|
|
contract Helpers is DSMath, Basic {
|
|
/**
|
|
* @dev Connext Diamond Address
|
|
*/
|
|
address internal constant connextAddr =
|
|
0x8f7492DE823025b4CfaAB1D34c58963F2af5DEDA;
|
|
IConnext internal constant connext = IConnext(connextAddr);
|
|
|
|
/**
|
|
* @param destination The destination domain ID.
|
|
* @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 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.
|
|
*/
|
|
struct XCallParams {
|
|
uint32 destination;
|
|
address to;
|
|
address asset;
|
|
address delegate;
|
|
uint256 amount;
|
|
uint256 slippage;
|
|
uint256 relayerFee;
|
|
bytes callData;
|
|
}
|
|
|
|
function _xcall(XCallParams memory params) internal {
|
|
connext.xcall{ value: params.relayerFee }(
|
|
params.destination,
|
|
params.to,
|
|
params.asset,
|
|
params.delegate,
|
|
params.amount,
|
|
params.slippage,
|
|
params.callData
|
|
);
|
|
}
|
|
}
|