More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
329406947 | 6 mins ago | 1.4 ETH | ||||
329406947 | 6 mins ago | 1.4 ETH | ||||
329404288 | 17 mins ago | 0.013 ETH | ||||
329404288 | 17 mins ago | 0.013 ETH | ||||
329386710 | 1 hr ago | 0.006 ETH | ||||
329386710 | 1 hr ago | 0.006 ETH | ||||
329385796 | 1 hr ago | 0.04 ETH | ||||
329385796 | 1 hr ago | 0.04 ETH | ||||
329371836 | 2 hrs ago | 0.0013 ETH | ||||
329371836 | 2 hrs ago | 0.0013 ETH | ||||
329371077 | 2 hrs ago | 0.001 ETH | ||||
329371077 | 2 hrs ago | 0.001 ETH | ||||
329369574 | 2 hrs ago | 0.0045 ETH | ||||
329369574 | 2 hrs ago | 0.0045 ETH | ||||
329363061 | 3 hrs ago | 0.0365 ETH | ||||
329363061 | 3 hrs ago | 0.0365 ETH | ||||
329332650 | 5 hrs ago | 0.018 ETH | ||||
329332650 | 5 hrs ago | 0.018 ETH | ||||
329329849 | 5 hrs ago | 0.003 ETH | ||||
329329849 | 5 hrs ago | 0.003 ETH | ||||
329320920 | 6 hrs ago | 0.006 ETH | ||||
329320920 | 6 hrs ago | 0.006 ETH | ||||
329309346 | 6 hrs ago | 0.00198287 ETH | ||||
329309346 | 6 hrs ago | 0.00198287 ETH | ||||
329309093 | 6 hrs ago | 0.00264715 ETH |
Loading...
Loading
Contract Name:
SimpleCallerWithPermit2
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; import { Address } from "@openzeppelin/contracts/utils/Address.sol"; import { ICaller } from "../interfaces/ICaller.sol"; import { IPermit2 } from "../interfaces/IPermit2.sol"; import { Base } from "../shared/Base.sol"; import { ZeroTarget } from "../shared/Errors.sol"; import { Permit2 } from "../shared/Permit2.sol"; import { TokensHandler } from "../shared/TokensHandler.sol"; /** * @title Simple caller that passes through any call and forwards return tokens * @dev It also works in fixed outputs case, when input token overhead is refunded * @dev This contracts uses Permit2 contract in case of Uniswap's Universal Router usage */ contract SimpleCallerWithPermit2 is ICaller, TokensHandler, Permit2 { address internal constant ETH = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /** * @notice Sets Permit2 address for the current chain * @param permit2 Wrapped Ether address */ constructor(address universalRouter, address permit2) Permit2(universalRouter, permit2) { // solhint-disable-previous-line no-empty-blocks } /** * @notice Main external function: decodes `callerCallData` bytes, * executes external call, and returns tokens back to `msg.sender` (i.e. Router contract) * @param callerCallData ABI-encoded parameters: * - inputToken Address of the token that should be approved to the allowance target * - allowanceTarget Address to approve `inputToken` to * - callTarget Address to forward the external call to * - callData Call data to be used in the external call * - outputToken Address of the token that should be returned * @dev Call target cannot be zero */ function callBytes(bytes calldata callerCallData) external override { ( address inputToken, address allowanceTarget, address payable callTarget, bytes memory callData, address outputToken ) = abi.decode(callerCallData, (address, address, address, bytes, address)); if (callTarget == address(0)) revert ZeroTarget(); // Approve tokens to the allowance target, call the call target approveAndCall(inputToken, allowanceTarget, callTarget, callData); // In case of non-zero input token, transfer the remaining amount back to `msg.sender` Base.transfer(inputToken, msg.sender, Base.getBalance(inputToken)); // In case of non-zero output token, transfer the total balance to `msg.sender` Base.transfer(outputToken, msg.sender, Base.getBalance(outputToken)); } /** * @dev Approves input tokens (if necessary) and calls the target with the provided call data * @dev Approval and allowance check for `address(0)` token address are skipped * @param inputToken Address of the token that should be approved to the allowance target * @param allowanceTarget Address to approve `inputToken` to * @param callTarget Address to forward the external call to * @param callData Call data for the call to the target */ function approveAndCall( address inputToken, address allowanceTarget, address callTarget, bytes memory callData ) internal { uint256 amount = Base.getBalance(inputToken); if (inputToken == ETH) { Address.functionCallWithValue( callTarget, callData, amount, "SC: payable call failed w/ no reason" ); return; } if (inputToken != address(0) && allowanceTarget != address(0)) { address permit2 = getPermit2(); if (allowanceTarget == getUniversalRouter()) { Base.safeApproveMax(inputToken, permit2, amount); IPermit2(permit2).approve( inputToken, allowanceTarget, type(uint160).max, type(uint48).max ); } else { Base.safeApproveMax(inputToken, allowanceTarget, amount); } } Address.functionCall(callTarget, callData, "SC: call failed w/ no reason"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; import { ITokensHandler } from "./ITokensHandler.sol"; interface ICaller is ITokensHandler { /** * @notice Main external function: implements all the caller specific logic * @param callerCallData ABI-encoded parameters depending on the caller logic */ function callBytes(bytes calldata callerCallData) external; }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; interface IPermit2 { /// @notice Approves the spender to use up to amount of the specified token up until the expiration /// @param token The token to approve /// @param spender The spender address to approve /// @param amount The approved amount of the token /// @param expiration The timestamp at which the approval is no longer valid /// @dev The packed allowance also holds a nonce, which will stay unchanged in approve /// @dev Setting amount to type(uint160).max sets an unlimited approval function approve(address token, address spender, uint160 amount, uint48 expiration) external; }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; interface ITokensHandler { /** * @notice Returns tokens mistakenly sent to this contract * @param token Address of token * @param beneficiary Address that will receive tokens * @dev Can be called only by the owner */ function returnLostTokens(address token, address payable beneficiary) external; }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Address } from "@openzeppelin/contracts/utils/Address.sol"; import { ZeroReceiver } from "./Errors.sol"; /** * @title Library unifying transfer, approval, and getting balance for ERC20 tokens and Ether */ library Base { address internal constant ETH = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /** * @notice Transfers tokens or Ether * @param token Address of the token or `ETH` in case of Ether transfer * @param receiver Address of the account that will receive funds * @param amount Amount to be transferred * @dev This function is compatible only with ERC20 tokens and Ether, not ERC721/ERC1155 tokens * @dev Reverts on zero `receiver`, does nothing for zero amount * @dev Should not be used with zero token address */ function transfer(address token, address receiver, uint256 amount) internal { if (amount == uint256(0)) return; if (receiver == address(0)) revert ZeroReceiver(); if (token == ETH) { Address.sendValue(payable(receiver), amount); } else { SafeERC20.safeTransfer(IERC20(token), receiver, amount); } } /** * @notice Safely approves type(uint256).max tokens * @param token Address of the token * @param spender Address to approve tokens to * @param amount Tokens amount to be approved * @dev Should not be used with zero or `ETH` token address */ function safeApproveMax(address token, address spender, uint256 amount) internal { uint256 allowance = IERC20(token).allowance(address(this), spender); if (allowance < amount) { if (allowance > uint256(0)) { SafeERC20.safeApprove(IERC20(token), spender, uint256(0)); } SafeERC20.safeApprove(IERC20(token), spender, type(uint256).max); } } /** * @notice Calculates the token balance for the given account * @param token Address of the token * @param account Address of the account * @dev Should not be used with zero token address */ function getBalance(address token, address account) internal view returns (uint256 balance) { if (token == ETH) return account.balance; return IERC20(token).balanceOf(account); } /** * @notice Calculates the token balance for `this` contract address * @param token Address of the token * @dev Returns `0` for zero token address in order to handle empty token case */ function getBalance(address token) internal view returns (uint256 balance) { if (token == address(0)) return uint256(0); return Base.getBalance(token, address(this)); } }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; enum ActionType { None, Deposit, Withdraw } enum AmountType { None, Relative, Absolute } enum SwapType { None, FixedInputs, FixedOutputs } enum PermitType { None, EIP2612, DAI, Yearn }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; import { AmountType } from "./Enums.sol"; import { Fee } from "./Structs.sol"; error BadAccount(address account, address expectedAccount); error BadAccountSignature(); error BadAmount(uint256 amount, uint256 requiredAmount); error BadAmountType(AmountType amountType, AmountType requiredAmountType); error BadFee(Fee fee, Fee baseProtocolFee); error BadFeeAmount(uint256 actualFeeAmount, uint256 expectedFeeAmount); error BadFeeSignature(); error BadFeeShare(uint256 protocolFeeShare, uint256 baseProtocolFeeShare); error BadFeeBeneficiary(address protocolFeeBanaficiary, address baseProtocolFeeBeneficiary); error BadLength(uint256 length, uint256 requiredLength); error BadMsgSender(address msgSender, address requiredMsgSender); error BadProtocolAdapterName(bytes32 protocolAdapterName); error BadToken(address token); error ExceedingDelimiterAmount(uint256 amount); error ExceedingLimitFee(uint256 feeShare, uint256 feeLimit); error FailedEtherTransfer(address to); error HighInputBalanceChange(uint256 inputBalanceChange, uint256 requiredInputBalanceChange); error InconsistentPairsAndDirectionsLengths(uint256 pairsLength, uint256 directionsLength); error InputSlippage(uint256 amount, uint256 requiredAmount); error InsufficientAllowance(uint256 allowance, uint256 requiredAllowance); error InsufficientMsgValue(uint256 msgValue, uint256 requiredMsgValue); error LowActualOutputAmount(uint256 actualOutputAmount, uint256 requiredActualOutputAmount); error LowReserve(uint256 reserve, uint256 requiredReserve); error NoneActionType(); error NoneAmountType(); error NonePermitType(); error NoneSwapType(); error PassedDeadline(uint256 timestamp, uint256 deadline); error TooLowBaseFeeShare(uint256 baseProtocolFeeShare, uint256 baseProtocolFeeShareLimit); error UsedHash(bytes32 hash); error ZeroReceiver(); error ZeroAmountIn(); error ZeroAmountOut(); error ZeroFeeBeneficiary(); error ZeroLength(); error ZeroProtocolAdapterRegistry(); error ZeroSigner(); error ZeroSwapPath(); error ZeroTarget();
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; /** * @title Abstract contract with basic Ownable functionality and two-step ownership transfer */ abstract contract Ownable { address private pendingOwner_; address private owner_; /** * @notice Emits old and new pending owners * @param oldPendingOwner Old pending owner * @param newPendingOwner New pending owner */ event PendingOwnerSet(address indexed oldPendingOwner, address indexed newPendingOwner); /** * @notice Emits old and new owners * @param oldOwner Old contract's owner * @param newOwner New contract's owner */ event OwnerSet(address indexed oldOwner, address indexed newOwner); modifier onlyPendingOwner() { require(msg.sender == pendingOwner_, "O: only pending owner"); _; } modifier onlyOwner() { require(msg.sender == owner_, "O: only owner"); _; } /** * @notice Initializes owner variable with msg.sender address */ constructor() { emit OwnerSet(address(0), msg.sender); owner_ = msg.sender; } /** * @notice Sets pending owner to the `newPendingOwner` address * @param newPendingOwner Address of new pending owner * @dev The function is callable only by the owner */ function setPendingOwner(address newPendingOwner) external onlyOwner { emit PendingOwnerSet(pendingOwner_, newPendingOwner); pendingOwner_ = newPendingOwner; } /** * @notice Sets owner to the pending owner * @dev The function is callable only by the pending owner */ function setOwner() external onlyPendingOwner { emit OwnerSet(owner_, msg.sender); owner_ = msg.sender; delete pendingOwner_; } /** * @return owner Owner of the contract */ function getOwner() external view returns (address owner) { return owner_; } /** * @return pendingOwner Pending owner of the contract */ function getPendingOwner() external view returns (address pendingOwner) { return pendingOwner_; } }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; /** * @title Abstract contract storing Universal Router & Permit2 addresses for the current chain */ abstract contract Permit2 { address private immutable UNIVERSAL_ROUTER; address private immutable PERMIT2; /** * @notice Sets Wrapped Ether address for the current chain * @param universalRouter Universal Router address * @param permit2 Permit2 address */ constructor(address universalRouter, address permit2) { UNIVERSAL_ROUTER = universalRouter; PERMIT2 = permit2; } /** * @notice Returns Universal Router address for the current chain * @return universalRouter Universal Router address */ function getUniversalRouter() public view returns (address universalRouter) { return UNIVERSAL_ROUTER; } /** * @notice Returns Permit2 address for the current chain * @return permit2 Permit2 address */ function getPermit2() public view returns (address permit2) { return PERMIT2; } }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; import { ActionType, AmountType, PermitType, SwapType } from "./Enums.sol"; //=============================== Adapters Managers Structs ==================================== // The struct consists of adapter name and address struct AdapterNameAndAddress { bytes32 name; address adapter; } // The struct consists of token and its adapter name struct TokenAndAdapterName { address token; bytes32 name; } // The struct consists of hash (hash of token's bytecode or address) and its adapter name struct HashAndAdapterName { bytes32 hash; bytes32 name; } // The struct consists of TokenBalanceMeta structs for // (base) token and its underlying tokens (if any) struct FullTokenBalance { TokenBalanceMeta base; TokenBalanceMeta[] underlying; } // The struct consists of TokenBalance struct with token address and absolute amount // and ERC20Metadata struct with ERC20-style metadata // 0xEeee...EEeE address is used for Ether struct TokenBalanceMeta { TokenBalance tokenBalance; ERC20Metadata erc20metadata; } // The struct consists of ERC20-style token metadata struct ERC20Metadata { string name; string symbol; uint8 decimals; } // The struct consists of protocol adapter's name and array of TokenBalance structs // with token addresses and absolute amounts struct AdapterBalance { bytes32 name; TokenBalance[] tokenBalances; } // The struct consists of protocol adapter's name and array of supported tokens' addresses struct AdapterTokens { bytes32 name; address[] tokens; } // The struct consists of token address and its absolute amount (may be negative) // 0xEeee...EEeE is used for Ether struct TokenBalance { address token; int256 amount; } //=============================== Interactive Adapters Structs ==================================== // The struct consists of swap type, fee descriptions (share & beneficiary), account address, // and Caller contract address with call data used for the call struct SwapDescription { SwapType swapType; Fee protocolFee; Fee marketplaceFee; address account; address caller; bytes callerCallData; } // The struct consists of name of the protocol adapter, action type, // array of token amounts, and some additional data (depends on the protocol) struct Action { bytes32 protocolAdapterName; ActionType actionType; TokenAmount[] tokenAmounts; bytes data; } // The struct consists of token address, its amount, and amount type, // as well as permit type and calldata. struct Input { TokenAmount tokenAmount; Permit permit; } // The struct consists of permit type and call data struct Permit { PermitType permitType; bytes permitCallData; } // The struct consists of token address, its amount, and amount type // 0xEeee...EEeE is used for Ether struct TokenAmount { address token; uint256 amount; AmountType amountType; } // The struct consists of fee share and beneficiary address struct Fee { uint256 share; address beneficiary; } // The struct consists of deadline and signature struct ProtocolFeeSignature { uint256 deadline; bytes signature; } // The struct consists of salt and signature struct AccountSignature { uint256 salt; bytes signature; } // The struct consists of token address and its absolute amount // 0xEeee...EEeE is used for Ether struct AbsoluteTokenAmount { address token; uint256 absoluteAmount; }
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. // // SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.12; import { ITokensHandler } from "../interfaces/ITokensHandler.sol"; import { Base } from "./Base.sol"; import { Ownable } from "./Ownable.sol"; /** * @title Abstract contract returning tokens lost on the contract */ abstract contract TokensHandler is ITokensHandler, Ownable { receive() external payable { // solhint-disable-previous-line no-empty-blocks } /** * @inheritdoc ITokensHandler */ function returnLostTokens(address token, address payable beneficiary) external onlyOwner { Base.transfer(token, beneficiary, Base.getBalance(token)); } }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"universalRouter","type":"address"},{"internalType":"address","name":"permit2","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ZeroReceiver","type":"error"},{"inputs":[],"name":"ZeroTarget","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldPendingOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"PendingOwnerSet","type":"event"},{"inputs":[{"internalType":"bytes","name":"callerCallData","type":"bytes"}],"name":"callBytes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPendingOwner","outputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPermit2","outputs":[{"internalType":"address","name":"permit2","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniversalRouter","outputs":[{"internalType":"address","name":"universalRouter","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"returnLostTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"setPendingOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405234801561001057600080fd5b5060405161150d38038061150d83398101604081905261002f916100a8565b6040518290829033906000907f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735908290a3600180546001600160a01b031916331790556001600160a01b039182166080521660a052506100db9050565b80516001600160a01b03811681146100a357600080fd5b919050565b600080604083850312156100bb57600080fd5b6100c48361008c565b91506100d26020840161008c565b90509250929050565b60805160a05161140161010c6000396000818160f201526105d5015260008181609a01526105f801526114016000f3fe60806040526004361061007f5760003560e01c806393596c7b1161004e57806393596c7b14610158578063c42069ec14610183578063d9c45357146101a3578063e89db671146101c357600080fd5b80630b54f8241461008b5780631bbf2e23146100e357806340caae0614610116578063893d20e81461012d57600080fd5b3661008657005b600080fd5b34801561009757600080fd5b507f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100ef57600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006100ba565b34801561012257600080fd5b5061012b6101e3565b005b34801561013957600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff166100ba565b34801561016457600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100ba565b34801561018f57600080fd5b5061012b61019e3660046110b4565b6102e6565b3480156101af57600080fd5b5061012b6101be3660046110d1565b6103f4565b3480156101cf57600080fd5b5061012b6101de366004611153565b610495565b60005473ffffffffffffffffffffffffffffffffffffffff163314610269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4f3a206f6e6c792070656e64696e67206f776e6572000000000000000000000060448201526064015b60405180910390fd5b600154604051339173ffffffffffffffffffffffffffffffffffffffff16907f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73590600090a3600180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081163317909155600080549091169055565b60015473ffffffffffffffffffffffffffffffffffffffff163314610367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e6572000000000000000000000000000000000000006044820152606401610260565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917fa86864fa6b65f969d5ac8391ddaac6a0eba3f41386cbf6e78c3e4d6c59eb115f91a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600080808080610406868801886111bb565b93985091965094509250905073ffffffffffffffffffffffffffffffffffffffff831661045f576040517f46c2cca100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61046b85858585610528565b61047e85336104798861074c565b610781565b61048c81336104798461074c565b50505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff163314610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e6572000000000000000000000000000000000000006044820152606401610260565b61052482826104798561074c565b5050565b60006105338561074c565b905073ffffffffffffffffffffffffffffffffffffffff851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156105925761058b8383836040518060600160405280602481526020016113a860249139610824565b5050610746565b73ffffffffffffffffffffffffffffffffffffffff8516158015906105cc575073ffffffffffffffffffffffffffffffffffffffff841615155b156107035760007f000000000000000000000000000000000000000000000000000000000000000090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156106f6576106558682846109a4565b6040517f87517c4500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015286811660248301526044820181905265ffffffffffff60648301528216906387517c4590608401600060405180830381600087803b1580156106d957600080fd5b505af11580156106ed573d6000803e3d6000fd5b50505050610701565b6107018686846109a4565b505b61074383836040518060400160405280601c81526020017f53433a2063616c6c206661696c656420772f206e6f20726561736f6e00000000815250610a85565b50505b50505050565b600073ffffffffffffffffffffffffffffffffffffffff821661077157506000919050565b61077b8230610a9e565b92915050565b8061078b57505050565b73ffffffffffffffffffffffffffffffffffffffff82166107d8576040517f6ba9ecd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610819576108148282610b80565b505050565b610814838383610cda565b6060824710156108b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610260565b843b61091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610260565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161094791906112ff565b60006040518083038185875af1925050503d8060008114610984576040519150601f19603f3d011682016040523d82523d6000602084013e610989565b606091505b5091509150610999828286610dae565b979650505050505050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff83811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015610a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3e919061131b565b905081811015610746578015610a5a57610a5a84846000610e01565b61074684847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610e01565b6060610a948484600085610824565b90505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610af0575073ffffffffffffffffffffffffffffffffffffffff81163161077b565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa158015610b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a97919061131b565b80471015610bea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610260565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610c44576040519150601f19603f3d011682016040523d82523d6000602084013e610c49565b606091505b5050905080610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610260565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526108149084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610f83565b60608315610dbd575081610a97565b825115610dcd5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102609190611334565b801580610ea157506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9f919061131b565b155b610f2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610260565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526108149084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610d2c565b6000610fe5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610a859092919063ffffffff16565b80519091501561081457808060200190518101906110039190611385565b610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610260565b73ffffffffffffffffffffffffffffffffffffffff811681146110b157600080fd5b50565b6000602082840312156110c657600080fd5b8135610a978161108f565b600080602083850312156110e457600080fd5b823567ffffffffffffffff808211156110fc57600080fd5b818501915085601f83011261111057600080fd5b81358181111561111f57600080fd5b86602082850101111561113157600080fd5b60209290920196919550909350505050565b803561114e8161108f565b919050565b6000806040838503121561116657600080fd5b82356111718161108f565b915060208301356111818161108f565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080600060a086880312156111d357600080fd5b85356111de8161108f565b945060208601356111ee8161108f565b935060408601356111fe8161108f565b9250606086013567ffffffffffffffff8082111561121b57600080fd5b818801915088601f83011261122f57600080fd5b8135818111156112415761124161118c565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156112875761128761118c565b816040528281528b60208487010111156112a057600080fd5b8260208601602083013760006020848301015280965050505050506112c760808701611143565b90509295509295909350565b60005b838110156112ee5781810151838201526020016112d6565b838111156107465750506000910152565b600082516113118184602087016112d3565b9190910192915050565b60006020828403121561132d57600080fd5b5051919050565b60208152600082518060208401526113538160408501602087016112d3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006020828403121561139757600080fd5b81518015158114610a9757600080fdfe53433a2070617961626c652063616c6c206661696c656420772f206e6f20726561736f6ea26469706673582212209b58e2b707796482f5436f06b6734654e7d65ce44698e9c79598774c71b9f37664736f6c634300080c00330000000000000000000000005e325eda8064b456f4781070c0738d849c824258000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3
Deployed Bytecode
0x60806040526004361061007f5760003560e01c806393596c7b1161004e57806393596c7b14610158578063c42069ec14610183578063d9c45357146101a3578063e89db671146101c357600080fd5b80630b54f8241461008b5780631bbf2e23146100e357806340caae0614610116578063893d20e81461012d57600080fd5b3661008657005b600080fd5b34801561009757600080fd5b507f0000000000000000000000005e325eda8064b456f4781070c0738d849c8242585b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100ef57600080fd5b507f000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba36100ba565b34801561012257600080fd5b5061012b6101e3565b005b34801561013957600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff166100ba565b34801561016457600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100ba565b34801561018f57600080fd5b5061012b61019e3660046110b4565b6102e6565b3480156101af57600080fd5b5061012b6101be3660046110d1565b6103f4565b3480156101cf57600080fd5b5061012b6101de366004611153565b610495565b60005473ffffffffffffffffffffffffffffffffffffffff163314610269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4f3a206f6e6c792070656e64696e67206f776e6572000000000000000000000060448201526064015b60405180910390fd5b600154604051339173ffffffffffffffffffffffffffffffffffffffff16907f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73590600090a3600180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081163317909155600080549091169055565b60015473ffffffffffffffffffffffffffffffffffffffff163314610367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e6572000000000000000000000000000000000000006044820152606401610260565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917fa86864fa6b65f969d5ac8391ddaac6a0eba3f41386cbf6e78c3e4d6c59eb115f91a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600080808080610406868801886111bb565b93985091965094509250905073ffffffffffffffffffffffffffffffffffffffff831661045f576040517f46c2cca100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61046b85858585610528565b61047e85336104798861074c565b610781565b61048c81336104798461074c565b50505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff163314610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e6572000000000000000000000000000000000000006044820152606401610260565b61052482826104798561074c565b5050565b60006105338561074c565b905073ffffffffffffffffffffffffffffffffffffffff851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156105925761058b8383836040518060600160405280602481526020016113a860249139610824565b5050610746565b73ffffffffffffffffffffffffffffffffffffffff8516158015906105cc575073ffffffffffffffffffffffffffffffffffffffff841615155b156107035760007f000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba390507f0000000000000000000000005e325eda8064b456f4781070c0738d849c82425873ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156106f6576106558682846109a4565b6040517f87517c4500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015286811660248301526044820181905265ffffffffffff60648301528216906387517c4590608401600060405180830381600087803b1580156106d957600080fd5b505af11580156106ed573d6000803e3d6000fd5b50505050610701565b6107018686846109a4565b505b61074383836040518060400160405280601c81526020017f53433a2063616c6c206661696c656420772f206e6f20726561736f6e00000000815250610a85565b50505b50505050565b600073ffffffffffffffffffffffffffffffffffffffff821661077157506000919050565b61077b8230610a9e565b92915050565b8061078b57505050565b73ffffffffffffffffffffffffffffffffffffffff82166107d8576040517f6ba9ecd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610819576108148282610b80565b505050565b610814838383610cda565b6060824710156108b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610260565b843b61091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610260565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161094791906112ff565b60006040518083038185875af1925050503d8060008114610984576040519150601f19603f3d011682016040523d82523d6000602084013e610989565b606091505b5091509150610999828286610dae565b979650505050505050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff83811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015610a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3e919061131b565b905081811015610746578015610a5a57610a5a84846000610e01565b61074684847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610e01565b6060610a948484600085610824565b90505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610af0575073ffffffffffffffffffffffffffffffffffffffff81163161077b565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa158015610b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a97919061131b565b80471015610bea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610260565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610c44576040519150601f19603f3d011682016040523d82523d6000602084013e610c49565b606091505b5050905080610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610260565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526108149084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610f83565b60608315610dbd575081610a97565b825115610dcd5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102609190611334565b801580610ea157506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9f919061131b565b155b610f2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610260565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526108149084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610d2c565b6000610fe5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610a859092919063ffffffff16565b80519091501561081457808060200190518101906110039190611385565b610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610260565b73ffffffffffffffffffffffffffffffffffffffff811681146110b157600080fd5b50565b6000602082840312156110c657600080fd5b8135610a978161108f565b600080602083850312156110e457600080fd5b823567ffffffffffffffff808211156110fc57600080fd5b818501915085601f83011261111057600080fd5b81358181111561111f57600080fd5b86602082850101111561113157600080fd5b60209290920196919550909350505050565b803561114e8161108f565b919050565b6000806040838503121561116657600080fd5b82356111718161108f565b915060208301356111818161108f565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080600060a086880312156111d357600080fd5b85356111de8161108f565b945060208601356111ee8161108f565b935060408601356111fe8161108f565b9250606086013567ffffffffffffffff8082111561121b57600080fd5b818801915088601f83011261122f57600080fd5b8135818111156112415761124161118c565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156112875761128761118c565b816040528281528b60208487010111156112a057600080fd5b8260208601602083013760006020848301015280965050505050506112c760808701611143565b90509295509295909350565b60005b838110156112ee5781810151838201526020016112d6565b838111156107465750506000910152565b600082516113118184602087016112d3565b9190910192915050565b60006020828403121561132d57600080fd5b5051919050565b60208152600082518060208401526113538160408501602087016112d3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006020828403121561139757600080fd5b81518015158114610a9757600080fdfe53433a2070617961626c652063616c6c206661696c656420772f206e6f20726561736f6ea26469706673582212209b58e2b707796482f5436f06b6734654e7d65ce44698e9c79598774c71b9f37664736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005e325eda8064b456f4781070c0738d849c824258000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3
-----Decoded View---------------
Arg [0] : universalRouter (address): 0x5E325eDA8064b456f4781070C0738d849c824258
Arg [1] : permit2 (address): 0x000000000022D473030F116dDEE9F6B43aC78BA3
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005e325eda8064b456f4781070c0738d849c824258
Arg [1] : 000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.