mapping(address => bool) isContractAllowedToCall;
function toggleContract(address contractAddress) public onlyOwner;
function processCall(Call memory call, uint index, bool isPredecessing) internal;
function swap(
address poolAddress,
SwapArgs calldata swapArgs,
Call[] calldata paramsBefore,
Call[] calldata paramsAfter
)
external
payable;
error CallFailed(uint callNumber, bool isPredecessing);
error InsufficientEthBalance(uint callNumber, bool isPredecessing);
error InsufficientEthBalanceCallingSwap();
error ContractCallNotAllowed(address target);
struct TokenTransferParams {
address token;
address targetOrOrigin;
uint amount;
}
struct RouterApproveParams {
address token;
address target;
uint amount;
}
struct WrapParams {
address weth;
bool wrap;
uint ethValue;
}
struct Call {
CallType callType;
bytes data;
}
struct SwapArgs {
ForcePushArgs forcePushArgs;
AssetArgs[] assetsToSwap;
bool isExactInput;
address receiverAddress;
bool refundEthToReceiver;
address refundAddress;
uint ethValue;
}
enum CallType {
ERC20Transfer,
ERC20Approve,
Any,
Wrap
}