Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 16 internal transactions
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 16675046 | 13 hrs ago | 0.0038 ETH | ||||
| 16675046 | 13 hrs ago | 0.0038 ETH | ||||
| 16657862 | 17 hrs ago | 0.0036 ETH | ||||
| 16657862 | 17 hrs ago | 0.0036 ETH | ||||
| 16657101 | 18 hrs ago | 0.004 ETH | ||||
| 16657101 | 18 hrs ago | 0.004 ETH | ||||
| 16657071 | 18 hrs ago | 0.004 ETH | ||||
| 16657071 | 18 hrs ago | 0.004 ETH | ||||
| 16491351 | 2 days ago | 0.06379999 ETH | ||||
| 16491351 | 2 days ago | 0.06379999 ETH | ||||
| 16310288 | 4 days ago | 0.0006 ETH | ||||
| 16310288 | 4 days ago | 0.0006 ETH | ||||
| 15445099 | 14 days ago | 0.000004 ETH | ||||
| 15445099 | 14 days ago | 0.000004 ETH | ||||
| 15022964 | 19 days ago | 0.0001 ETH | ||||
| 15022964 | 19 days ago | 0.0001 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SimpleCaller
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 { Base } from "../shared/Base.sol";
import { ZeroTarget } from "../shared/Errors.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
*/
contract SimpleCaller is ICaller, TokensHandler {
address internal constant ETH = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
/**
* @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))
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 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;
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"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[{"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
608060405234801561001057600080fd5b5060405133906000907f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735908290a3600180546001600160a01b0319163317905561125e8061005f6000396000f3fe6080604052600436106100695760003560e01c8063c42069ec11610043578063c42069ec14610107578063d9c4535714610127578063e89db6711461014757600080fd5b806340caae0614610075578063893d20e81461008c57806393596c7b146100dc57600080fd5b3661007057005b600080fd5b34801561008157600080fd5b5061008a610167565b005b34801561009857600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100e857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100b3565b34801561011357600080fd5b5061008a610122366004610f11565b61026a565b34801561013357600080fd5b5061008a610142366004610f2e565b610378565b34801561015357600080fd5b5061008a610162366004610fb0565b610419565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4f3a206f6e6c792070656e64696e67206f776e6572000000000000000000000060448201526064015b60405180910390fd5b600154604051339173ffffffffffffffffffffffffffffffffffffffff16907f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73590600090a3600180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081163317909155600080549091169055565b60015473ffffffffffffffffffffffffffffffffffffffff1633146102eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e65720000000000000000000000000000000000000060448201526064016101e4565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917fa86864fa6b65f969d5ac8391ddaac6a0eba3f41386cbf6e78c3e4d6c59eb115f91a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60008080808061038a86880188611018565b93985091965094509250905073ffffffffffffffffffffffffffffffffffffffff83166103e3576040517f46c2cca100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6103ef858585856104ac565b61040285336103fd886105a9565b6105de565b61041081336103fd846105a9565b50505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff16331461049a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e65720000000000000000000000000000000000000060448201526064016101e4565b6104a882826103fd856105a9565b5050565b60006104b7856105a9565b905073ffffffffffffffffffffffffffffffffffffffff851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156105165761050f83838360405180606001604052806024815260200161120560249139610681565b50506105a3565b73ffffffffffffffffffffffffffffffffffffffff851615801590610550575073ffffffffffffffffffffffffffffffffffffffff841615155b1561056057610560858583610801565b6105a083836040518060400160405280601c81526020017f53433a2063616c6c206661696c656420772f206e6f20726561736f6e000000008152506108e2565b50505b50505050565b600073ffffffffffffffffffffffffffffffffffffffff82166105ce57506000919050565b6105d882306108fb565b92915050565b806105e857505050565b73ffffffffffffffffffffffffffffffffffffffff8216610635576040517f6ba9ecd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156106765761067182826109dd565b505050565b610671838383610b37565b606082471015610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101e4565b843b61077b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101e4565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516107a4919061115c565b60006040518083038185875af1925050503d80600081146107e1576040519150601f19603f3d011682016040523d82523d6000602084013e6107e6565b606091505b50915091506107f6828286610c0b565b979650505050505050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff83811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015610877573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089b9190611178565b9050818110156105a35780156108b7576108b784846000610c5e565b6105a384847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610c5e565b60606108f18484600085610681565b90505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee141561094d575073ffffffffffffffffffffffffffffffffffffffff8116316105d8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa1580156109b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f49190611178565b80471015610a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016101e4565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610aa1576040519150601f19603f3d011682016040523d82523d6000602084013e610aa6565b606091505b5050905080610671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016101e4565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526106719084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610de0565b60608315610c1a5750816108f4565b825115610c2a5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e49190611191565b801580610cfe57506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610cd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfc9190611178565b155b610d8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016101e4565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526106719084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610b89565b6000610e42826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166108e29092919063ffffffff16565b8051909150156106715780806020019051810190610e6091906111e2565b610671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101e4565b73ffffffffffffffffffffffffffffffffffffffff81168114610f0e57600080fd5b50565b600060208284031215610f2357600080fd5b81356108f481610eec565b60008060208385031215610f4157600080fd5b823567ffffffffffffffff80821115610f5957600080fd5b818501915085601f830112610f6d57600080fd5b813581811115610f7c57600080fd5b866020828501011115610f8e57600080fd5b60209290920196919550909350505050565b8035610fab81610eec565b919050565b60008060408385031215610fc357600080fd5b8235610fce81610eec565b91506020830135610fde81610eec565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080600060a0868803121561103057600080fd5b853561103b81610eec565b9450602086013561104b81610eec565b9350604086013561105b81610eec565b9250606086013567ffffffffffffffff8082111561107857600080fd5b818801915088601f83011261108c57600080fd5b81358181111561109e5761109e610fe9565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156110e4576110e4610fe9565b816040528281528b60208487010111156110fd57600080fd5b82602086016020830137600060208483010152809650505050505061112460808701610fa0565b90509295509295909350565b60005b8381101561114b578181015183820152602001611133565b838111156105a35750506000910152565b6000825161116e818460208701611130565b9190910192915050565b60006020828403121561118a57600080fd5b5051919050565b60208152600082518060208401526111b0816040850160208701611130565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000602082840312156111f457600080fd5b815180151581146108f457600080fdfe53433a2070617961626c652063616c6c206661696c656420772f206e6f20726561736f6ea2646970667358221220e499b2994c2318549b44cd3e852c9de60a27056b369030643b4135fbf9a73df364736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106100695760003560e01c8063c42069ec11610043578063c42069ec14610107578063d9c4535714610127578063e89db6711461014757600080fd5b806340caae0614610075578063893d20e81461008c57806393596c7b146100dc57600080fd5b3661007057005b600080fd5b34801561008157600080fd5b5061008a610167565b005b34801561009857600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100e857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100b3565b34801561011357600080fd5b5061008a610122366004610f11565b61026a565b34801561013357600080fd5b5061008a610142366004610f2e565b610378565b34801561015357600080fd5b5061008a610162366004610fb0565b610419565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4f3a206f6e6c792070656e64696e67206f776e6572000000000000000000000060448201526064015b60405180910390fd5b600154604051339173ffffffffffffffffffffffffffffffffffffffff16907f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73590600090a3600180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081163317909155600080549091169055565b60015473ffffffffffffffffffffffffffffffffffffffff1633146102eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e65720000000000000000000000000000000000000060448201526064016101e4565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917fa86864fa6b65f969d5ac8391ddaac6a0eba3f41386cbf6e78c3e4d6c59eb115f91a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60008080808061038a86880188611018565b93985091965094509250905073ffffffffffffffffffffffffffffffffffffffff83166103e3576040517f46c2cca100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6103ef858585856104ac565b61040285336103fd886105a9565b6105de565b61041081336103fd846105a9565b50505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff16331461049a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f3a206f6e6c79206f776e65720000000000000000000000000000000000000060448201526064016101e4565b6104a882826103fd856105a9565b5050565b60006104b7856105a9565b905073ffffffffffffffffffffffffffffffffffffffff851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156105165761050f83838360405180606001604052806024815260200161120560249139610681565b50506105a3565b73ffffffffffffffffffffffffffffffffffffffff851615801590610550575073ffffffffffffffffffffffffffffffffffffffff841615155b1561056057610560858583610801565b6105a083836040518060400160405280601c81526020017f53433a2063616c6c206661696c656420772f206e6f20726561736f6e000000008152506108e2565b50505b50505050565b600073ffffffffffffffffffffffffffffffffffffffff82166105ce57506000919050565b6105d882306108fb565b92915050565b806105e857505050565b73ffffffffffffffffffffffffffffffffffffffff8216610635576040517f6ba9ecd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156106765761067182826109dd565b505050565b610671838383610b37565b606082471015610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101e4565b843b61077b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101e4565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516107a4919061115c565b60006040518083038185875af1925050503d80600081146107e1576040519150601f19603f3d011682016040523d82523d6000602084013e6107e6565b606091505b50915091506107f6828286610c0b565b979650505050505050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff83811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015610877573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089b9190611178565b9050818110156105a35780156108b7576108b784846000610c5e565b6105a384847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610c5e565b60606108f18484600085610681565b90505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff831673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee141561094d575073ffffffffffffffffffffffffffffffffffffffff8116316105d8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528416906370a0823190602401602060405180830381865afa1580156109b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f49190611178565b80471015610a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016101e4565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610aa1576040519150601f19603f3d011682016040523d82523d6000602084013e610aa6565b606091505b5050905080610671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016101e4565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526106719084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610de0565b60608315610c1a5750816108f4565b825115610c2a5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e49190611191565b801580610cfe57506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610cd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfc9190611178565b155b610d8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016101e4565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526106719084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610b89565b6000610e42826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166108e29092919063ffffffff16565b8051909150156106715780806020019051810190610e6091906111e2565b610671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101e4565b73ffffffffffffffffffffffffffffffffffffffff81168114610f0e57600080fd5b50565b600060208284031215610f2357600080fd5b81356108f481610eec565b60008060208385031215610f4157600080fd5b823567ffffffffffffffff80821115610f5957600080fd5b818501915085601f830112610f6d57600080fd5b813581811115610f7c57600080fd5b866020828501011115610f8e57600080fd5b60209290920196919550909350505050565b8035610fab81610eec565b919050565b60008060408385031215610fc357600080fd5b8235610fce81610eec565b91506020830135610fde81610eec565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080600060a0868803121561103057600080fd5b853561103b81610eec565b9450602086013561104b81610eec565b9350604086013561105b81610eec565b9250606086013567ffffffffffffffff8082111561107857600080fd5b818801915088601f83011261108c57600080fd5b81358181111561109e5761109e610fe9565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156110e4576110e4610fe9565b816040528281528b60208487010111156110fd57600080fd5b82602086016020830137600060208483010152809650505050505061112460808701610fa0565b90509295509295909350565b60005b8381101561114b578181015183820152602001611133565b838111156105a35750506000910152565b6000825161116e818460208701611130565b9190910192915050565b60006020828403121561118a57600080fd5b5051919050565b60208152600082518060208401526111b0816040850160208701611130565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000602082840312156111f457600080fd5b815180151581146108f457600080fdfe53433a2070617961626c652063616c6c206661696c656420772f206e6f20726561736f6ea2646970667358221220e499b2994c2318549b44cd3e852c9de60a27056b369030643b4135fbf9a73df364736f6c634300080c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
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.