minor changes

This commit is contained in:
Richa-iitr 2022-06-15 14:07:35 +05:30
parent fb79ade8fe
commit f8e65363c9
6 changed files with 21 additions and 21 deletions

View File

@ -14,9 +14,9 @@ contract SwapHelpers {
/**
*@dev Swap using the dex aggregators.
*@param _connectors name of the connectors in preference order.
*@param _data data for the swap cast.
*@param _datas data for the swap cast.
*/
function _swap(string[] memory _connectors, bytes[] memory _data)
function _swap(string[] memory _connectors, bytes[] memory _datas)
internal
returns (
bool success,
@ -26,12 +26,12 @@ contract SwapHelpers {
{
uint256 _length = _connectors.length;
require(_length > 0, "zero-length-not-allowed");
require(_data.length == _length, "calldata-length-invalid");
require(_datas.length == _length, "calldata-length-invalid");
for (uint256 i = 0; i < _length; i++) {
(success, returnData) = instaConnectors
.connectors(_connectors[i])
.delegatecall(_data[i]);
.delegatecall(_datas[i]);
if (success) {
connector = _connectors[i];
break;

View File

@ -16,16 +16,16 @@ abstract contract Swap is SwapHelpers, Events {
* @dev Swap ETH/ERC20_Token using dex aggregators.
* @notice Swap tokens from exchanges like 1INCH, 0x etc, with calculation done off-chain.
* @param _connectors The name of the connectors like 1INCH-A, 0x etc, in order of their priority.
* @param _data Encoded function call data including function selector encoded with parameters.
* @param _datas Encoded function call data including function selector encoded with parameters.
*/
function swap(string[] memory _connectors, bytes[] memory _data)
function swap(string[] memory _connectors, bytes[] memory _datas)
external
payable
returns (string memory _eventName, bytes memory _eventParam)
{
(bool success, bytes memory returnData, string memory connector) = _swap(
_connectors,
_data
_datas
);
require(success, "swap-Aggregator-failed");

View File

@ -14,9 +14,9 @@ contract SwapHelpers {
/**
*@dev Swap using the dex aggregators.
*@param _connectors name of the connectors in preference order.
*@param _data data for the swap cast.
*@param _datas data for the swap cast.
*/
function _swap(string[] memory _connectors, bytes[] memory _data)
function _swap(string[] memory _connectors, bytes[] memory _datas)
internal
returns (
bool success,
@ -26,12 +26,12 @@ contract SwapHelpers {
{
uint256 _length = _connectors.length;
require(_length > 0, "zero-length-not-allowed");
require(_data.length == _length, "calldata-length-invalid");
require(_datas.length == _length, "calldata-length-invalid");
for (uint256 i = 0; i < _length; i++) {
(success, returnData) = instaConnectors
.connectors(_connectors[i])
.delegatecall(_data[i]);
.delegatecall(_datas[i]);
if (success) {
connector = _connectors[i];
break;

View File

@ -16,16 +16,16 @@ abstract contract Swap is SwapHelpers, Events {
* @dev Swap ETH/ERC20_Token using dex aggregators.
* @notice Swap tokens from exchanges like 1INCH, 0x etc, with calculation done off-chain.
* @param _connectors The name of the connectors like 1INCH-A, 0x etc, in order of their priority.
* @param _data Encoded function call data including function selector encoded with parameters.
* @param _datas Encoded function call data including function selector encoded with parameters.
*/
function swap(string[] memory _connectors, bytes[] memory _data)
function swap(string[] memory _connectors, bytes[] memory _datas)
external
payable
returns (string memory _eventName, bytes memory _eventParam)
{
(bool success, bytes memory returnData, string memory connector) = _swap(
_connectors,
_data
_datas
);
require(success, "swap-Aggregator-failed");

View File

@ -14,9 +14,9 @@ contract SwapHelpers {
/**
*@dev Swap using the dex aggregators.
*@param _connectors name of the connectors in preference order.
*@param _data data for the swap cast.
*@param _datas data for the swap cast.
*/
function _swap(string[] memory _connectors, bytes[] memory _data)
function _swap(string[] memory _connectors, bytes[] memory _datas)
internal
returns (
bool success,
@ -26,12 +26,12 @@ contract SwapHelpers {
{
uint256 _length = _connectors.length;
require(_length > 0, "zero-length-not-allowed");
require(_data.length == _length, "calldata-length-invalid");
require(_datas.length == _length, "calldata-length-invalid");
for (uint256 i = 0; i < _length; i++) {
(success, returnData) = instaConnectors
.connectors(_connectors[i])
.delegatecall(_data[i]);
.delegatecall(_datas[i]);
if (success) {
connector = _connectors[i];
break;

View File

@ -16,16 +16,16 @@ abstract contract Swap is SwapHelpers, Events {
* @dev Swap ETH/ERC20_Token using dex aggregators.
* @notice Swap tokens from exchanges like 1INCH, 0x etc, with calculation done off-chain.
* @param _connectors The name of the connectors like 1INCH-A, 0x etc, in order of their priority.
* @param _data Encoded function call data including function selector encoded with parameters.
* @param _datas Encoded function call data including function selector encoded with parameters.
*/
function swap(string[] memory _connectors, bytes[] memory _data)
function swap(string[] memory _connectors, bytes[] memory _datas)
external
payable
returns (string memory _eventName, bytes memory _eventParam)
{
(bool success, bytes memory returnData, string memory connector) = _swap(
_connectors,
_data
_datas
);
require(success, "swap-Aggregator-failed");