Feature Tip: Add private address tag to any address under My Name Tag !
Latest 25 from a total of 16,219,791 transactions
(More than 25 Pending Txns)
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Swap | 24177062 | 19 secs ago | 0.0028 ETH | ||||
| Swap | 24177061 | 31 secs ago | 0.03628387 ETH | ||||
| Swap | 24177060 | 43 secs ago | 0.02122144 ETH | ||||
| Swap | 24177059 | 55 secs ago | 0.06939694 ETH | ||||
| Swap | 24177057 | 1 min ago | 0.02323933 ETH | ||||
| Swap | 24177056 | 1 min ago | 0.1 ETH | ||||
| Swap | 24177053 | 2 mins ago | 0.00734613 ETH | ||||
| Swap | 24177051 | 2 mins ago | 0.01421904 ETH | ||||
| Swap | 24177050 | 2 mins ago | 0.05790147 ETH | ||||
| Swap | 24177049 | 2 mins ago | 0.01469992 ETH | ||||
| Swap | 24177048 | 3 mins ago | 0.086 ETH | ||||
| Swap | 24177045 | 3 mins ago | 0.0154634 ETH | ||||
| Swap | 24177042 | 4 mins ago | 0.015 ETH | ||||
| Swap | 24177042 | 4 mins ago | 0.01923938 ETH | ||||
| Swap | 24177042 | 4 mins ago | 33.91785084 ETH | ||||
| Swap | 24177040 | 4 mins ago | 0.00348216 ETH | ||||
| Swap | 24177038 | 5 mins ago | 0.00916469 ETH | ||||
| Swap | 24177036 | 5 mins ago | 0.0425 ETH | ||||
| Swap | 24177033 | 6 mins ago | 0.008 ETH | ||||
| Swap | 24177032 | 6 mins ago | 0.11524925 ETH | ||||
| Swap | 24177032 | 6 mins ago | 0.3 ETH | ||||
| Swap | 24177028 | 7 mins ago | 0.03 ETH | ||||
| Swap | 24177024 | 7 mins ago | 0.22 ETH | ||||
| Swap | 24177024 | 7 mins ago | 0.01963178 ETH | ||||
| Swap | 24177022 | 8 mins ago | 0.31 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MetaSwap
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "./ICHI.sol";
import "./Spender.sol";
/**
* @title MetaSwap
*/
contract MetaSwap is Ownable, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
struct Adapter {
address addr; // adapter's address
bytes4 selector;
bytes data; // adapter's fixed data
}
ICHI public immutable chi;
Spender public immutable spender;
// Mapping of aggregatorId to aggregator
mapping(string => Adapter) public adapters;
mapping(string => bool) public adapterRemoved;
event AdapterSet(
string indexed aggregatorId,
address indexed addr,
bytes4 selector,
bytes data
);
event AdapterRemoved(string indexed aggregatorId);
event Swap(string indexed aggregatorId, address indexed sender);
constructor(ICHI _chi) public {
chi = _chi;
spender = new Spender();
}
/**
* @dev Sets the adapter for an aggregator. It can't be changed later.
* @param aggregatorId Aggregator's identifier
* @param addr Address of the contract that contains the logic for this aggregator
* @param selector The function selector of the swap function in the adapter
* @param data Fixed abi encoded data the will be passed in each delegatecall made to the adapter
*/
function setAdapter(
string calldata aggregatorId,
address addr,
bytes4 selector,
bytes calldata data
) external onlyOwner {
require(addr.isContract(), "ADAPTER_IS_NOT_A_CONTRACT");
require(!adapterRemoved[aggregatorId], "ADAPTER_REMOVED");
Adapter storage adapter = adapters[aggregatorId];
require(adapter.addr == address(0), "ADAPTER_EXISTS");
adapter.addr = addr;
adapter.selector = selector;
adapter.data = data;
emit AdapterSet(aggregatorId, addr, selector, data);
}
/**
* @dev Removes the adapter for an existing aggregator. This can't be undone.
* @param aggregatorId Aggregator's identifier
*/
function removeAdapter(string calldata aggregatorId) external onlyOwner {
require(
adapters[aggregatorId].addr != address(0),
"ADAPTER_DOES_NOT_EXIST"
);
delete adapters[aggregatorId];
adapterRemoved[aggregatorId] = true;
emit AdapterRemoved(aggregatorId);
}
/**
* @dev Performs a swap
* @param aggregatorId Identifier of the aggregator to be used for the swap
* @param data Dynamic data which is concatenated with the fixed aggregator's
* data in the delecatecall made to the adapter
*/
function swap(
string calldata aggregatorId,
IERC20 tokenFrom,
uint256 amount,
bytes calldata data
) external payable whenNotPaused nonReentrant {
_swap(aggregatorId, tokenFrom, amount, data);
}
/**
* @dev Performs a swap
* @param aggregatorId Identifier of the aggregator to be used for the swap
* @param data Dynamic data which is concatenated with the fixed aggregator's
* data in the delecatecall made to the adapter
*/
function swapUsingGasToken(
string calldata aggregatorId,
IERC20 tokenFrom,
uint256 amount,
bytes calldata data
) external payable whenNotPaused nonReentrant {
uint256 gas = gasleft();
_swap(aggregatorId, tokenFrom, amount, data);
uint256 gasSpent = 21000 + gas - gasleft() + 16 * msg.data.length;
chi.freeFromUpTo(msg.sender, (gasSpent + 14154) / 41947);
}
function pauseSwaps() external onlyOwner {
_pause();
}
function unpauseSwaps() external onlyOwner {
_unpause();
}
function _swap(
string calldata aggregatorId,
IERC20 tokenFrom,
uint256 amount,
bytes calldata data
) internal {
Adapter storage adapter = adapters[aggregatorId];
if (address(tokenFrom) != Constants.ETH) {
tokenFrom.safeTransferFrom(msg.sender, address(spender), amount);
}
spender.swap{value: msg.value}(
adapter.addr,
abi.encodePacked(
adapter.selector,
abi.encode(msg.sender),
adapter.data,
data
)
);
emit Swap(aggregatorId, msg.sender);
}
}pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "../Constants.sol";
contract CommonAdapter {
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
/**
* @dev Performs a swap
* @param recipient The original msg.sender performing the swap
* @param aggregator Address of the aggregator's contract
* @param spender Address to which tokens will be approved
* @param method Selector of the function to be called in the aggregator's contract
* @param tokenFrom Token to be swapped
* @param tokenTo Token to be received
* @param amountFrom Amount of tokenFrom to swap
* @param amountTo Minimum amount of tokenTo to receive
* @param data Data used for the call made to the aggregator's contract
*/
function swap(
address payable recipient,
address aggregator,
address spender,
bytes4 method,
IERC20 tokenFrom,
IERC20 tokenTo,
uint256 amountFrom,
uint256 amountTo,
bytes calldata data
) external payable {
require(tokenFrom != tokenTo, "TOKEN_PAIR_INVALID");
if (address(tokenFrom) != Constants.ETH) {
_approveSpender(tokenFrom, spender, amountFrom);
}
// We always forward msg.value as it may be necessary to pay fees
bytes memory encodedData = abi.encodePacked(method, data);
aggregator.functionCallWithValue(encodedData, msg.value);
// Transfer remaining balance of tokenFrom to sender
if (address(tokenFrom) != Constants.ETH) {
uint256 balance = tokenFrom.balanceOf(address(this));
_transfer(tokenFrom, balance, recipient);
}
uint256 weiBalance = address(this).balance;
// Transfer remaining balance of tokenTo to sender
if (address(tokenTo) != Constants.ETH) {
uint256 balance = tokenTo.balanceOf(address(this));
require(balance >= amountTo, "INSUFFICIENT_AMOUNT");
_transfer(tokenTo, balance, recipient);
} else {
// If tokenTo == ETH, then check that the remaining ETH balance >= amountTo
require(weiBalance >= amountTo, "INSUFFICIENT_AMOUNT");
}
// If there are unused fees or if tokenTo is ETH, transfer to sender
if (weiBalance > 0) {
recipient.sendValue(weiBalance);
}
}
/**
* @dev Transfers token to sender if amount > 0
* @param token IERC20 token to transfer to sender
* @param amount Amount of token to transfer
* @param recipient Address that will receive the tokens
*/
function _transfer(
IERC20 token,
uint256 amount,
address recipient
) internal {
if (amount > 0) {
token.safeTransfer(recipient, amount);
}
}
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/SafeERC20.sol
/**
* @dev Approves max amount of token to the spender if the allowance is lower than amount
* @param token The ERC20 token to approve
* @param spender Address to which funds will be approved
* @param amount Amount used to compare current allowance
*/
function _approveSpender(
IERC20 token,
address spender,
uint256 amount
) internal {
// If allowance is not enough, approve max possible amount
uint256 allowance = token.allowance(address(this), spender);
if (allowance < amount) {
bytes memory returndata = address(token).functionCall(
abi.encodeWithSelector(
token.approve.selector,
spender,
type(uint256).max
)
);
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "APPROVAL_FAILED");
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.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
pragma solidity ^0.6.0;
import "./IERC20.sol";
import "../../math/SafeMath.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 SafeMath for uint256;
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'
// solhint-disable-next-line max-line-length
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).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_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
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
/**
* @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 in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
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");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
library Constants {
address internal constant ETH = 0x0000000000000000000000000000000000000000;
}pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "../Constants.sol";
contract FeeCommonAdapter {
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
using SafeMath for uint256;
// solhint-disable-next-line var-name-mixedcase
address payable public immutable FEE_WALLET;
constructor(address payable feeWallet) public {
FEE_WALLET = feeWallet;
}
/**
* @dev Performs a swap
* @param recipient The original msg.sender performing the swap
* @param aggregator Address of the aggregator's contract
* @param spender Address to which tokens will be approved
* @param method Selector of the function to be called in the aggregator's contract
* @param tokenFrom Token to be swapped
* @param tokenTo Token to be received
* @param amountFrom Amount of tokenFrom to swap
* @param amountTo Minimum amount of tokenTo to receive
* @param data Data used for the call made to the aggregator's contract
* @param fee Amount of tokenFrom sent to the fee wallet
*/
function swap(
address payable recipient,
address aggregator,
address spender,
bytes4 method,
IERC20 tokenFrom,
IERC20 tokenTo,
uint256 amountFrom,
uint256 amountTo,
bytes calldata data,
uint256 fee
) external payable {
require(tokenFrom != tokenTo, "TOKEN_PAIR_INVALID");
if (address(tokenFrom) == Constants.ETH) {
FEE_WALLET.sendValue(fee);
} else {
_transfer(tokenFrom, fee, FEE_WALLET);
_approveSpender(tokenFrom, spender, amountFrom);
}
// We always forward msg.value as it may be necessary to pay fees
aggregator.functionCallWithValue(
abi.encodePacked(method, data),
address(this).balance
);
// Transfer remaining balance of tokenFrom to sender
if (address(tokenFrom) != Constants.ETH) {
_transfer(tokenFrom, tokenFrom.balanceOf(address(this)), recipient);
}
uint256 weiBalance = address(this).balance;
// Transfer remaining balance of tokenTo to sender
if (address(tokenTo) != Constants.ETH) {
uint256 balance = tokenTo.balanceOf(address(this));
require(balance >= amountTo, "INSUFFICIENT_AMOUNT");
_transfer(tokenTo, balance, recipient);
} else {
// If tokenTo == ETH, then check that the remaining ETH balance >= amountTo
require(weiBalance >= amountTo, "INSUFFICIENT_AMOUNT");
}
// If there are unused fees or if tokenTo is ETH, transfer to sender
if (weiBalance > 0) {
recipient.sendValue(weiBalance);
}
}
/**
* @dev Transfers token to sender if amount > 0
* @param token IERC20 token to transfer to sender
* @param amount Amount of token to transfer
* @param recipient Address that will receive the tokens
*/
function _transfer(
IERC20 token,
uint256 amount,
address recipient
) internal {
if (amount > 0) {
token.safeTransfer(recipient, amount);
}
}
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/SafeERC20.sol
/**
* @dev Approves max amount of token to the spender if the allowance is lower than amount
* @param token The ERC20 token to approve
* @param spender Address to which funds will be approved
* @param amount Amount used to compare current allowance
*/
function _approveSpender(
IERC20 token,
address spender,
uint256 amount
) internal {
// If allowance is not enough, approve max possible amount
uint256 allowance = token.allowance(address(this), spender);
if (allowance < amount) {
bytes memory returndata = address(token).functionCall(
abi.encodeWithSelector(
token.approve.selector,
spender,
type(uint256).max
)
);
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "APPROVAL_FAILED");
}
}
}
}pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "../Constants.sol";
import "../IWETH.sol";
contract FeeWethAdapter {
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
using SafeMath for uint256;
IWETH public immutable weth;
// solhint-disable-next-line var-name-mixedcase
address payable public immutable FEE_WALLET;
constructor(IWETH _weth, address payable feeWallet) public {
weth = _weth;
FEE_WALLET = feeWallet;
}
/**
* @dev Performs a swap
* @param recipient The original msg.sender performing the swap
* @param aggregator Address of the aggregator's contract
* @param spender Address to which tokens will be approved
* @param method Selector of the function to be called in the aggregator's contract
* @param tokenFrom Token to be swapped
* @param tokenTo Token to be received
* @param amountFrom Amount of tokenFrom to swap
* @param amountTo Minimum amount of tokenTo to receive
* @param data Data used for the call made to the aggregator's contract
* @param fee Amount of tokenFrom sent to the fee wallet
*/
function swap(
address payable recipient,
address aggregator,
address spender,
bytes4 method,
IERC20 tokenFrom,
IERC20 tokenTo,
uint256 amountFrom,
uint256 amountTo,
bytes calldata data,
uint256 fee
) external payable {
require(tokenFrom != tokenTo, "TOKEN_PAIR_INVALID");
if (address(tokenFrom) == Constants.ETH) {
FEE_WALLET.sendValue(fee);
// If tokenFrom is ETH, msg.value = fee + amountFrom (total fee could be 0)
// Can't deal with ETH, convert to WETH, the remaining balance will be the fee
weth.deposit{value: amountFrom}();
_approveSpender(weth, spender, amountFrom);
} else {
_transfer(tokenFrom, fee, FEE_WALLET);
// Otherwise capture tokens from sender
_approveSpender(tokenFrom, spender, amountFrom);
}
// Perform the swap
aggregator.functionCallWithValue(
abi.encodePacked(method, data),
address(this).balance
);
// Transfer remaining balance of tokenFrom to sender
if (address(tokenFrom) != Constants.ETH) {
_transfer(tokenFrom, tokenFrom.balanceOf(address(this)), recipient);
} else {
// If using ETH, just unwrap any remaining WETH
// At the end of this function all ETH will be transferred to the sender
_unwrapWETH();
}
uint256 weiBalance = address(this).balance;
// Transfer remaining balance of tokenTo to sender
if (address(tokenTo) != Constants.ETH) {
uint256 balance = tokenTo.balanceOf(address(this));
require(balance >= amountTo, "INSUFFICIENT_AMOUNT");
_transfer(tokenTo, balance, recipient);
} else {
// If tokenTo == ETH, unwrap received WETH and add it to the wei balance,
// then check that the remaining ETH balance >= amountTo
// It is safe to not use safeMath as no one can have enough Ether to overflow
weiBalance += _unwrapWETH();
require(weiBalance >= amountTo, "INSUFFICIENT_AMOUNT");
}
// If there are unused fees or if tokenTo is ETH, transfer to sender
if (weiBalance > 0) {
recipient.sendValue(weiBalance);
}
}
/**
* @dev Unwraps all available WETH into ETH
*/
function _unwrapWETH() internal returns (uint256) {
uint256 balance = weth.balanceOf(address(this));
weth.withdraw(balance);
return balance;
}
/**
* @dev Transfers token to sender if amount > 0
* @param token IERC20 token to transfer to sender
* @param amount Amount of token to transfer
* @param recipient Address that will receive the tokens
*/
function _transfer(
IERC20 token,
uint256 amount,
address recipient
) internal {
if (amount > 0) {
token.safeTransfer(recipient, amount);
}
}
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/SafeERC20.sol
/**
* @dev Approves max amount of token to the spender if the allowance is lower than amount
* @param token The ERC20 token to approve
* @param spender Address to which funds will be approved
* @param amount Amount used to compare current allowance
*/
function _approveSpender(
IERC20 token,
address spender,
uint256 amount
) internal {
// If allowance is not enough, approve max possible amount
uint256 allowance = token.allowance(address(this), spender);
if (allowance < amount) {
bytes memory returndata = address(token).functionCall(
abi.encodeWithSelector(
token.approve.selector,
spender,
type(uint256).max
)
);
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "APPROVAL_FAILED");
}
}
}
}pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IWETH is IERC20 {
function deposit() external payable;
function withdraw(uint256) external;
}pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "../Constants.sol";
contract UniswapAdapter {
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
using SafeMath for uint256;
// solhint-disable-next-line var-name-mixedcase
IUniswapV2Router02 public immutable UNISWAP;
// solhint-disable-next-line var-name-mixedcase
address payable public immutable FEE_WALLET;
constructor(address payable feeWallet, IUniswapV2Router02 uniswap) public {
FEE_WALLET = feeWallet;
UNISWAP = uniswap;
}
/**
* @dev Performs a swap
* @param recipient The original msg.sender performing the swap
* @param tokenFrom Token to be swapped
* @param tokenTo Token to be received
* @param amountFrom Amount of tokenFrom to swap
* @param amountTo Minimum amount of tokenTo to receive
* @param path Used by Uniswap
* @param deadline Timestamp at which the swap becomes invalid. Used by Uniswap
* @param feeOnTransfer Use `supportingFeeOnTransfer` Uniswap methods
* @param fee Amount of tokenFrom sent to the fee wallet
*/
function swap(
address payable recipient,
IERC20 tokenFrom,
IERC20 tokenTo,
uint256 amountFrom,
uint256 amountTo,
address[] calldata path,
uint256 deadline,
bool feeOnTransfer,
uint256 fee
) external payable {
require(tokenFrom != tokenTo, "TOKEN_PAIR_INVALID");
if (address(tokenFrom) == Constants.ETH) {
FEE_WALLET.sendValue(fee);
} else {
_transfer(tokenFrom, fee, FEE_WALLET);
}
if (address(tokenFrom) == Constants.ETH) {
if (feeOnTransfer) {
UNISWAP.swapExactETHForTokensSupportingFeeOnTransferTokens{
value: address(this).balance
}(amountTo, path, address(this), deadline);
} else {
UNISWAP.swapExactETHForTokens{value: address(this).balance}(
amountTo,
path,
address(this),
deadline
);
}
} else {
_approveSpender(tokenFrom, address(UNISWAP), amountFrom);
if (address(tokenTo) == Constants.ETH) {
if (feeOnTransfer) {
UNISWAP.swapExactTokensForETHSupportingFeeOnTransferTokens(
amountFrom,
amountTo,
path,
address(this),
deadline
);
} else {
UNISWAP.swapExactTokensForETH(
amountFrom,
amountTo,
path,
address(this),
deadline
);
}
} else {
if (feeOnTransfer) {
UNISWAP
.swapExactTokensForTokensSupportingFeeOnTransferTokens(
amountFrom,
amountTo,
path,
address(this),
deadline
);
} else {
UNISWAP.swapExactTokensForTokens(
amountFrom,
amountTo,
path,
address(this),
deadline
);
}
}
}
// Transfer remaining balance of tokenFrom to sender
if (address(tokenFrom) != Constants.ETH) {
_transfer(tokenFrom, tokenFrom.balanceOf(address(this)), recipient);
}
uint256 weiBalance = address(this).balance;
// Transfer remaining balance of tokenTo to sender
if (address(tokenTo) != Constants.ETH) {
uint256 balance = tokenTo.balanceOf(address(this));
require(balance >= amountTo, "INSUFFICIENT_AMOUNT");
_transfer(tokenTo, balance, recipient);
} else {
// If tokenTo == ETH, then check that the remaining ETH balance >= amountTo
require(weiBalance >= amountTo, "INSUFFICIENT_AMOUNT");
}
// If there are unused fees or if tokenTo is ETH, transfer to sender
if (weiBalance > 0) {
recipient.sendValue(weiBalance);
}
}
/**
* @dev Transfers token to sender if amount > 0
* @param token IERC20 token to transfer to sender
* @param amount Amount of token to transfer
* @param recipient Address that will receive the tokens
*/
function _transfer(
IERC20 token,
uint256 amount,
address recipient
) internal {
if (amount > 0) {
token.safeTransfer(recipient, amount);
}
}
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/SafeERC20.sol
/**
* @dev Approves max amount of token to the spender if the allowance is lower than amount
* @param token The ERC20 token to approve
* @param spender Address to which funds will be approved
* @param amount Amount used to compare current allowance
*/
function _approveSpender(
IERC20 token,
address spender,
uint256 amount
) internal {
// If allowance is not enough, approve max possible amount
uint256 allowance = token.allowance(address(this), spender);
if (allowance < amount) {
bytes memory returndata = address(token).functionCall(
abi.encodeWithSelector(
token.approve.selector,
spender,
type(uint256).max
)
);
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "APPROVAL_FAILED");
}
}
}
}pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "../Constants.sol";
import "../IWETH.sol";
contract WethAdapter {
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
IWETH public immutable weth;
constructor(IWETH _weth) public {
weth = _weth;
}
/**
* @dev Performs a swap
* @param recipient The original msg.sender performing the swap
* @param aggregator Address of the aggregator's contract
* @param spender Address to which tokens will be approved
* @param method Selector of the function to be called in the aggregator's contract
* @param tokenFrom Token to be swapped
* @param tokenTo Token to be received
* @param amountFrom Amount of tokenFrom to swap
* @param amountTo Minimum amount of tokenTo to receive
* @param data Data used for the call made to the aggregator's contract
*/
function swap(
address payable recipient,
address aggregator,
address spender,
bytes4 method,
IERC20 tokenFrom,
IERC20 tokenTo,
uint256 amountFrom,
uint256 amountTo,
bytes calldata data
) external payable {
require(tokenFrom != tokenTo, "TOKEN_PAIR_INVALID");
if (address(tokenFrom) == Constants.ETH) {
// If tokenFrom is ETH, msg.value = fee + amountFrom (total fee could be 0)
// Can't deal with ETH, convert to WETH, the remaining balance will be the fee
weth.deposit{value: amountFrom}();
_approveSpender(weth, spender, amountFrom);
} else {
// Otherwise capture tokens from sender
_approveSpender(tokenFrom, spender, amountFrom);
}
// Perform the swap
aggregator.functionCallWithValue(
abi.encodePacked(method, data),
address(this).balance
);
// Transfer remaining balance of tokenFrom to sender
if (address(tokenFrom) != Constants.ETH) {
_transfer(tokenFrom, tokenFrom.balanceOf(address(this)), recipient);
} else {
// If using ETH, just unwrap any remaining WETH
// At the end of this function all ETH will be transferred to the sender
_unwrapWETH();
}
uint256 weiBalance = address(this).balance;
// Transfer remaining balance of tokenTo to sender
if (address(tokenTo) != Constants.ETH) {
uint256 balance = tokenTo.balanceOf(address(this));
require(balance >= amountTo, "INSUFFICIENT_AMOUNT");
_transfer(tokenTo, balance, recipient);
} else {
// If tokenTo == ETH, unwrap received WETH and add it to the wei balance,
// then check that the remaining ETH balance >= amountTo
// It is safe to not use safeMath as no one can have enough Ether to overflow
weiBalance += _unwrapWETH();
require(weiBalance >= amountTo, "INSUFFICIENT_AMOUNT");
}
// If there are unused fees or if tokenTo is ETH, transfer to sender
if (weiBalance > 0) {
recipient.sendValue(weiBalance);
}
}
/**
* @dev Unwraps all available WETH into ETH
*/
function _unwrapWETH() internal returns (uint256) {
uint256 balance = weth.balanceOf(address(this));
weth.withdraw(balance);
return balance;
}
/**
* @dev Transfers token to sender if amount > 0
* @param token IERC20 token to transfer to sender
* @param amount Amount of token to transfer
* @param recipient Address that will receive the tokens
*/
function _transfer(
IERC20 token,
uint256 amount,
address recipient
) internal {
if (amount > 0) {
token.safeTransfer(recipient, amount);
}
}
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/SafeERC20.sol
/**
* @dev Approves max amount of token to the spender if the allowance is lower than amount
* @param token The ERC20 token to approve
* @param spender Address to which funds will be approved
* @param amount Amount used to compare current allowance
*/
function _approveSpender(
IERC20 token,
address spender,
uint256 amount
) internal {
// If allowance is not enough, approve max possible amount
uint256 allowance = token.allowance(address(this), spender);
if (allowance < amount) {
bytes memory returndata = address(token).functionCall(
abi.encodeWithSelector(
token.approve.selector,
spender,
type(uint256).max
)
);
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "APPROVAL_FAILED");
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface ICHI is IERC20 {
function freeUpTo(uint256 value) external returns (uint256);
function freeFromUpTo(
address from,
uint256 value
) external returns (uint256);
function mint(uint256 value) external;
}// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.6.0; // We import the contract so truffle compiles it, and we have the ABI // available when working from truffle console. import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; //helpers
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "../GSN/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "../GSN/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () internal {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () internal {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "./Constants.sol";
contract Spender {
address public immutable metaswap;
constructor() public {
metaswap = msg.sender;
}
/// @dev Receives ether from swaps
fallback() external payable {}
function swap(address adapter, bytes calldata data) external payable {
require(msg.sender == metaswap, "FORBIDDEN");
require(adapter != address(0), "ADAPTER_NOT_PROVIDED");
_delegate(adapter, data, "ADAPTER_DELEGATECALL_FAILED");
}
/**
* @dev Performs a delegatecall and bubbles up the errors, adapted from
* https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol
* @param target Address of the contract to delegatecall
* @param data Data passed in the delegatecall
* @param errorMessage Fallback revert reason
*/
function _delegate(
address target,
bytes memory data,
string memory errorMessage
) private returns (bytes memory) {
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
contract MockAdapter {
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
event MockAdapterEvent(
address sender,
uint256 valueFixed,
uint256 valueDynamic
);
function test(
address sender,
uint256 valueFixed,
uint256 valueDynamic
) external payable {
emit MockAdapterEvent(sender, valueFixed, valueDynamic);
}
function testRevert(
address,
uint256,
uint256
) external payable {
revert("SWAP_FAILED");
}
function testRevertNoReturnData(
address,
uint256,
uint256
) external payable {
revert();
}
}pragma solidity ^0.6.0;
// TAKEN FROM https://github.com/gnosis/mock-contract
// TODO: use their npm package once it is published for solidity 0.6
interface MockInterface {
/**
* @dev After calling this method, the mock will return `response` when it is called
* with any calldata that is not mocked more specifically below
* (e.g. using givenMethodReturn).
* @param response ABI encoded response that will be returned if method is invoked
*/
function givenAnyReturn(bytes calldata response) external;
function givenAnyReturnBool(bool response) external;
function givenAnyReturnUint(uint256 response) external;
function givenAnyReturnAddress(address response) external;
function givenAnyRevert() external;
function givenAnyRevertWithMessage(string calldata message) external;
function givenAnyRunOutOfGas() external;
/**
* @dev After calling this method, the mock will return `response` when the given
* methodId is called regardless of arguments. If the methodId and arguments
* are mocked more specifically (using `givenMethodAndArguments`) the latter
* will take precedence.
* @param method ABI encoded methodId. It is valid to pass full calldata (including arguments). The mock will extract the methodId from it
* @param response ABI encoded response that will be returned if method is invoked
*/
function givenMethodReturn(bytes calldata method, bytes calldata response)
external;
function givenMethodReturnBool(bytes calldata method, bool response)
external;
function givenMethodReturnUint(bytes calldata method, uint256 response)
external;
function givenMethodReturnAddress(bytes calldata method, address response)
external;
function givenMethodRevert(bytes calldata method) external;
function givenMethodRevertWithMessage(
bytes calldata method,
string calldata message
) external;
function givenMethodRunOutOfGas(bytes calldata method) external;
/**
* @dev After calling this method, the mock will return `response` when the given
* methodId is called with matching arguments. These exact calldataMocks will take
* precedence over all other calldataMocks.
* @param call ABI encoded calldata (methodId and arguments)
* @param response ABI encoded response that will be returned if contract is invoked with calldata
*/
function givenCalldataReturn(bytes calldata call, bytes calldata response)
external;
function givenCalldataReturnBool(bytes calldata call, bool response)
external;
function givenCalldataReturnUint(bytes calldata call, uint256 response)
external;
function givenCalldataReturnAddress(bytes calldata call, address response)
external;
function givenCalldataRevert(bytes calldata call) external;
function givenCalldataRevertWithMessage(
bytes calldata call,
string calldata message
) external;
function givenCalldataRunOutOfGas(bytes calldata call) external;
/**
* @dev Returns the number of times anything has been called on this mock since last reset
*/
function invocationCount() external returns (uint256);
/**
* @dev Returns the number of times the given method has been called on this mock since last reset
* @param method ABI encoded methodId. It is valid to pass full calldata (including arguments). The mock will extract the methodId from it
*/
function invocationCountForMethod(bytes calldata method)
external
returns (uint256);
/**
* @dev Returns the number of times this mock has been called with the exact calldata since last reset.
* @param call ABI encoded calldata (methodId and arguments)
*/
function invocationCountForCalldata(bytes calldata call)
external
returns (uint256);
/**
* @dev Resets all mocked methods and invocation counts.
*/
function reset() external;
}
/**
* Implementation of the MockInterface.
*/
contract MockContract is MockInterface {
enum MockType {Return, Revert, OutOfGas}
bytes32 public constant MOCKS_LIST_START = hex"01";
bytes public constant MOCKS_LIST_END = "0xff";
bytes32 public constant MOCKS_LIST_END_HASH = keccak256(MOCKS_LIST_END);
bytes4 public constant SENTINEL_ANY_MOCKS = hex"01";
bytes public constant DEFAULT_FALLBACK_VALUE = abi.encode(false);
// A linked list allows easy iteration and inclusion checks
mapping(bytes32 => bytes) calldataMocks;
mapping(bytes => MockType) calldataMockTypes;
mapping(bytes => bytes) calldataExpectations;
mapping(bytes => string) calldataRevertMessage;
mapping(bytes32 => uint256) calldataInvocations;
mapping(bytes4 => bytes4) methodIdMocks;
mapping(bytes4 => MockType) methodIdMockTypes;
mapping(bytes4 => bytes) methodIdExpectations;
mapping(bytes4 => string) methodIdRevertMessages;
mapping(bytes32 => uint256) methodIdInvocations;
MockType fallbackMockType;
bytes fallbackExpectation = DEFAULT_FALLBACK_VALUE;
string fallbackRevertMessage;
uint256 invocations;
uint256 resetCount;
constructor() public {
calldataMocks[MOCKS_LIST_START] = MOCKS_LIST_END;
methodIdMocks[SENTINEL_ANY_MOCKS] = SENTINEL_ANY_MOCKS;
}
function trackCalldataMock(bytes memory call) private {
bytes32 callHash = keccak256(call);
if (calldataMocks[callHash].length == 0) {
calldataMocks[callHash] = calldataMocks[MOCKS_LIST_START];
calldataMocks[MOCKS_LIST_START] = call;
}
}
function trackMethodIdMock(bytes4 methodId) private {
if (methodIdMocks[methodId] == 0x0) {
methodIdMocks[methodId] = methodIdMocks[SENTINEL_ANY_MOCKS];
methodIdMocks[SENTINEL_ANY_MOCKS] = methodId;
}
}
function _givenAnyReturn(bytes memory response) internal {
fallbackMockType = MockType.Return;
fallbackExpectation = response;
}
function givenAnyReturn(bytes calldata response) external override {
_givenAnyReturn(response);
}
function givenAnyReturnBool(bool response) external override {
uint256 flag = response ? 1 : 0;
_givenAnyReturn(uintToBytes(flag));
}
function givenAnyReturnUint(uint256 response) external override {
_givenAnyReturn(uintToBytes(response));
}
function givenAnyReturnAddress(address response) external override {
_givenAnyReturn(uintToBytes(uint256(response)));
}
function givenAnyRevert() external override {
fallbackMockType = MockType.Revert;
fallbackRevertMessage = "";
}
function givenAnyRevertWithMessage(string calldata message)
external
override
{
fallbackMockType = MockType.Revert;
fallbackRevertMessage = message;
}
function givenAnyRunOutOfGas() external override {
fallbackMockType = MockType.OutOfGas;
}
function _givenCalldataReturn(bytes memory call, bytes memory response)
private
{
calldataMockTypes[call] = MockType.Return;
calldataExpectations[call] = response;
trackCalldataMock(call);
}
function givenCalldataReturn(bytes calldata call, bytes calldata response)
external
override
{
_givenCalldataReturn(call, response);
}
function givenCalldataReturnBool(bytes calldata call, bool response)
external
override
{
uint256 flag = response ? 1 : 0;
_givenCalldataReturn(call, uintToBytes(flag));
}
function givenCalldataReturnUint(bytes calldata call, uint256 response)
external
override
{
_givenCalldataReturn(call, uintToBytes(response));
}
function givenCalldataReturnAddress(bytes calldata call, address response)
external
override
{
_givenCalldataReturn(call, uintToBytes(uint256(response)));
}
function _givenMethodReturn(bytes memory call, bytes memory response)
private
{
bytes4 method = bytesToBytes4(call);
methodIdMockTypes[method] = MockType.Return;
methodIdExpectations[method] = response;
trackMethodIdMock(method);
}
function givenMethodReturn(bytes calldata call, bytes calldata response)
external
override
{
_givenMethodReturn(call, response);
}
function givenMethodReturnBool(bytes calldata call, bool response)
external
override
{
uint256 flag = response ? 1 : 0;
_givenMethodReturn(call, uintToBytes(flag));
}
function givenMethodReturnUint(bytes calldata call, uint256 response)
external
override
{
_givenMethodReturn(call, uintToBytes(response));
}
function givenMethodReturnAddress(bytes calldata call, address response)
external
override
{
_givenMethodReturn(call, uintToBytes(uint256(response)));
}
function givenCalldataRevert(bytes calldata call) external override {
calldataMockTypes[call] = MockType.Revert;
calldataRevertMessage[call] = "";
trackCalldataMock(call);
}
function givenMethodRevert(bytes calldata call) external override {
bytes4 method = bytesToBytes4(call);
methodIdMockTypes[method] = MockType.Revert;
trackMethodIdMock(method);
}
function givenCalldataRevertWithMessage(
bytes calldata call,
string calldata message
) external override {
calldataMockTypes[call] = MockType.Revert;
calldataRevertMessage[call] = message;
trackCalldataMock(call);
}
function givenMethodRevertWithMessage(
bytes calldata call,
string calldata message
) external override {
bytes4 method = bytesToBytes4(call);
methodIdMockTypes[method] = MockType.Revert;
methodIdRevertMessages[method] = message;
trackMethodIdMock(method);
}
function givenCalldataRunOutOfGas(bytes calldata call) external override {
calldataMockTypes[call] = MockType.OutOfGas;
trackCalldataMock(call);
}
function givenMethodRunOutOfGas(bytes calldata call) external override {
bytes4 method = bytesToBytes4(call);
methodIdMockTypes[method] = MockType.OutOfGas;
trackMethodIdMock(method);
}
function invocationCount() external override returns (uint256) {
return invocations;
}
function invocationCountForMethod(bytes calldata call)
external
override
returns (uint256)
{
bytes4 method = bytesToBytes4(call);
return
methodIdInvocations[keccak256(
abi.encodePacked(resetCount, method)
)];
}
function invocationCountForCalldata(bytes calldata call)
external
override
returns (uint256)
{
return
calldataInvocations[keccak256(abi.encodePacked(resetCount, call))];
}
function reset() external override {
// Reset all exact calldataMocks
bytes memory nextMock = calldataMocks[MOCKS_LIST_START];
bytes32 mockHash = keccak256(nextMock);
// We cannot compary bytes
while (mockHash != MOCKS_LIST_END_HASH) {
// Reset all mock maps
calldataMockTypes[nextMock] = MockType.Return;
calldataExpectations[nextMock] = hex"";
calldataRevertMessage[nextMock] = "";
// Set next mock to remove
nextMock = calldataMocks[mockHash];
// Remove from linked list
calldataMocks[mockHash] = "";
// Update mock hash
mockHash = keccak256(nextMock);
}
// Clear list
calldataMocks[MOCKS_LIST_START] = MOCKS_LIST_END;
// Reset all any calldataMocks
bytes4 nextAnyMock = methodIdMocks[SENTINEL_ANY_MOCKS];
while (nextAnyMock != SENTINEL_ANY_MOCKS) {
bytes4 currentAnyMock = nextAnyMock;
methodIdMockTypes[currentAnyMock] = MockType.Return;
methodIdExpectations[currentAnyMock] = hex"";
methodIdRevertMessages[currentAnyMock] = "";
nextAnyMock = methodIdMocks[currentAnyMock];
// Remove from linked list
methodIdMocks[currentAnyMock] = 0x0;
}
// Clear list
methodIdMocks[SENTINEL_ANY_MOCKS] = SENTINEL_ANY_MOCKS;
fallbackExpectation = DEFAULT_FALLBACK_VALUE;
fallbackMockType = MockType.Return;
invocations = 0;
resetCount += 1;
}
function useAllGas() private {
while (true) {
bool s;
assembly {
//expensive call to EC multiply contract
s := call(sub(gas(), 2000), 6, 0, 0x0, 0xc0, 0x0, 0x60)
}
}
}
function bytesToBytes4(bytes memory b) private pure returns (bytes4) {
bytes4 out;
for (uint256 i = 0; i < 4; i++) {
out |= bytes4(b[i] & 0xFF) >> (i * 8);
}
return out;
}
function uintToBytes(uint256 x) private pure returns (bytes memory b) {
b = new bytes(32);
assembly {
mstore(add(b, 32), x)
}
}
function updateInvocationCount(
bytes4 methodId,
bytes memory originalMsgData
) public {
require(
msg.sender == address(this),
"Can only be called from the contract itself"
);
invocations += 1;
methodIdInvocations[keccak256(
abi.encodePacked(resetCount, methodId)
)] += 1;
calldataInvocations[keccak256(
abi.encodePacked(resetCount, originalMsgData)
)] += 1;
}
fallback() external payable {
bytes4 methodId;
assembly {
methodId := calldataload(0)
}
// First, check exact matching overrides
if (calldataMockTypes[msg.data] == MockType.Revert) {
revert(calldataRevertMessage[msg.data]);
}
if (calldataMockTypes[msg.data] == MockType.OutOfGas) {
useAllGas();
}
bytes memory result = calldataExpectations[msg.data];
// Then check method Id overrides
if (result.length == 0) {
if (methodIdMockTypes[methodId] == MockType.Revert) {
revert(methodIdRevertMessages[methodId]);
}
if (methodIdMockTypes[methodId] == MockType.OutOfGas) {
useAllGas();
}
result = methodIdExpectations[methodId];
}
// Last, use the fallback override
if (result.length == 0) {
if (fallbackMockType == MockType.Revert) {
revert(fallbackRevertMessage);
}
if (fallbackMockType == MockType.OutOfGas) {
useAllGas();
}
result = fallbackExpectation;
}
// Record invocation as separate call so we don't rollback in case we are called with STATICCALL
(, bytes memory r) = address(this).call{gas: 100000}(
abi.encodeWithSignature(
"updateInvocationCount(bytes4,bytes)",
methodId,
msg.data
)
);
assert(r.length == 0);
assembly {
return(add(0x20, result), mload(result))
}
}
}pragma solidity ^0.6.0;
contract MockSelfDestruct {
constructor() public payable {}
fallback() external payable {
selfdestruct(msg.sender);
}
function kill(address payable target) external payable {
selfdestruct(target);
}
}{
"metadata": {
"useLiteralContent": false
},
"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":"contract ICHI","name":"_chi","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"aggregatorId","type":"string"}],"name":"AdapterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"aggregatorId","type":"string"},{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"AdapterSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"aggregatorId","type":"string"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"adapterRemoved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"adapters","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chi","outputs":[{"internalType":"contract ICHI","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSwaps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"aggregatorId","type":"string"}],"name":"removeAdapter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"aggregatorId","type":"string"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"setAdapter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spender","outputs":[{"internalType":"contract Spender","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"aggregatorId","type":"string"},{"internalType":"contract IERC20","name":"tokenFrom","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"aggregatorId","type":"string"},{"internalType":"contract IERC20","name":"tokenFrom","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swapUsingGasToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseSwaps","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c06040523480156200001157600080fd5b506040516200268038038062002680833981810160405260208110156200003757600080fd5b5051600062000045620000f5565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180556001600160601b0319606082901b16608052604051620000c090620000f9565b604051809103906000f080158015620000dd573d6000803e3d6000fd5b5060601b6001600160601b03191660a0525062000107565b3390565b6104c080620021c083390190565b60805160601c60a05160601c6120806200014060003980611468528061179d528061184052508061108e528061144452506120806000f3fe6080604052600436106100dd5760003560e01c80638da5cb5b1161007f578063b84f5d1e11610059578063b84f5d1e14610595578063c92aecc414610703578063e8edc81614610718578063f2fde38b1461072d576100dd565b80638da5cb5b1461048f5780639804a380146104cd578063b5268389146104e2576100dd565b80635c975abb116100bb5780635c975abb146102895780635f575529146102b25780636b68764c14610396578063715018a61461047a576100dd565b80633ef11fd7146100e2578063459a39fb14610161578063558b7dd114610274575b600080fd5b3480156100ee57600080fd5b5061015f6004803603602081101561010557600080fd5b81019060208101813564010000000081111561012057600080fd5b82018360208201111561013257600080fd5b8035906020019184600183028401116401000000008311171561015457600080fd5b50909250905061076d565b005b34801561016d57600080fd5b5061015f6004803603608081101561018457600080fd5b81019060208101813564010000000081111561019f57600080fd5b8201836020820111156101b157600080fd5b803590602001918460018302840111640100000000831117156101d357600080fd5b9193909273ffffffffffffffffffffffffffffffffffffffff833516927fffffffff0000000000000000000000000000000000000000000000000000000060208201351692919060608101906040013564010000000081111561023557600080fd5b82018360208201111561024757600080fd5b8035906020019184600183028401116401000000008311171561026957600080fd5b5090925090506109bf565b34801561028057600080fd5b5061015f610d91565b34801561029557600080fd5b5061029e610e2c565b604080519115158252519081900360200190f35b61015f600480360360808110156102c857600080fd5b8101906020810181356401000000008111156102e357600080fd5b8201836020820111156102f557600080fd5b8035906020019184600183028401116401000000008311171561031757600080fd5b9193909273ffffffffffffffffffffffffffffffffffffffff83351692602081013592919060608101906040013564010000000081111561035757600080fd5b82018360208201111561036957600080fd5b8035906020019184600183028401116401000000008311171561038b57600080fd5b509092509050610e4d565b61015f600480360360808110156103ac57600080fd5b8101906020810181356401000000008111156103c757600080fd5b8201836020820111156103d957600080fd5b803590602001918460018302840111640100000000831117156103fb57600080fd5b9193909273ffffffffffffffffffffffffffffffffffffffff83351692602081013592919060608101906040013564010000000081111561043b57600080fd5b82018360208201111561044d57600080fd5b8035906020019184600183028401116401000000008311171561046f57600080fd5b509092509050610f68565b34801561048657600080fd5b5061015f611166565b34801561049b57600080fd5b506104a4611266565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156104d957600080fd5b5061015f611282565b3480156104ee57600080fd5b5061029e6004803603602081101561050557600080fd5b81019060208101813564010000000081111561052057600080fd5b82018360208201111561053257600080fd5b8035906020019184600183028401116401000000008311171561055457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061131b945050505050565b3480156105a157600080fd5b50610648600480360360208110156105b857600080fd5b8101906020810181356401000000008111156105d357600080fd5b8201836020820111156105e557600080fd5b8035906020019184600183028401116401000000008311171561060757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061133b945050505050565b604051808473ffffffffffffffffffffffffffffffffffffffff168152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b838110156106c65781810151838201526020016106ae565b50505050905090810190601f1680156106f35780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561070f57600080fd5b506104a4611442565b34801561072457600080fd5b506104a4611466565b34801561073957600080fd5b5061015f6004803603602081101561075057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661148a565b610775611614565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146107fe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff166002838360405180838380828437919091019485525050604051928390036020019092205473ffffffffffffffffffffffffffffffffffffffff16929092141591506108c5905057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f414441505445525f444f45535f4e4f545f455849535400000000000000000000604482015290519081900360640190fd5b60028282604051808383808284379190910194855250506040519283900360200190922080547fffffffffffffffff0000000000000000000000000000000000000000000000001681559150600090506109226001830182611f02565b50506001600383836040518083838082843791909101948552505060405192839003602001832080549415157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0090951694909417909355508391508290808383808284376040519201829003822094507fb00061f7cc154fc23eb34671ab724fc7eb7b806abae871abae8f1eafce97213593506000925050a25050565b6109c7611614565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610a5057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a6f8473ffffffffffffffffffffffffffffffffffffffff16611618565b610ada57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f414441505445525f49535f4e4f545f415f434f4e545241435400000000000000604482015290519081900360640190fd5b6003868660405180838380828437919091019485525050604051928390036020019092205460ff16159150610b72905057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f414441505445525f52454d4f5645440000000000000000000000000000000000604482015290519081900360640190fd5b6000600287876040518083838082843791909101948552505060405192839003602001909220805490935073ffffffffffffffffffffffffffffffffffffffff16159150610c23905057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f414441505445525f455849535453000000000000000000000000000000000000604482015290519081900360640190fd5b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8616177fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000060e086901c02178155610cae600182018484611f49565b508473ffffffffffffffffffffffffffffffffffffffff16878760405180838380828437604080519190930181900381207fffffffff000000000000000000000000000000000000000000000000000000008c168252602082018481529382018a905295507f779d768d36d59231b0853572f8ee1997a2a762b871abf2c81f18f4bf2af3c72694508a9350899289925060608201848480828437600083820152604051601f9091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016909201829003965090945050505050a350505050505050565b610d99611614565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610e2257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610e2a61161e565b565b60005474010000000000000000000000000000000000000000900460ff1690565b60005474010000000000000000000000000000000000000000900460ff1615610ed757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b60026001541415610f4957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600155610f5c86868686868661173a565b50506001805550505050565b60005474010000000000000000000000000000000000000000900460ff1615610ff257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6002600154141561106457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015560005a905061107c87878787878761173a565b6000601036025a8361520801030190507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663079d229f3361a3db8461374a01816110d857fe5b046040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561112c57600080fd5b505af1158015611140573d6000803e3d6000fd5b505050506040513d602081101561115657600080fd5b5050600180555050505050505050565b61116e611614565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146111f757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b61128a611614565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461131357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610e2a611a8f565b805160208183018101805160038252928201919093012091525460ff1681565b80516020818301810180516002808352938301948301949094209390528254600180850180546040805161010094831615949094027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190911695909504601f810185900485028301850190955284825273ffffffffffffffffffffffffffffffffffffffff8316957401000000000000000000000000000000000000000090930460e01b949293919290918301828280156114385780601f1061140d57610100808354040283529160200191611438565b820191906000526020600020905b81548152906001019060200180831161141b57829003601f168201915b5050505050905083565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b611492611614565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461151b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116611587576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611ffb6026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b3b151590565b60005474010000000000000000000000000000000000000000900460ff16156116a857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611710611614565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190a1565b60006002878760405180838380828437919091019485525050604051928390036020019092209250505073ffffffffffffffffffffffffffffffffffffffff8516156117c2576117c273ffffffffffffffffffffffffffffffffffffffff8616337f000000000000000000000000000000000000000000000000000000000000000087611b69565b805460408051336020808301919091528251808303820181528284019093527fffffffff0000000000000000000000000000000000000000000000000000000074010000000000000000000000000000000000000000850460e01b90811660608401908152845173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000081169763e35473359734979190921695919360018b01938d938d9360640191908701908083835b602083106118c357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611886565b6001836020036101000a0380198251168184511680821785525050505050509050018480546001816001161561010002031660029004801561193c5780601f1061191a57610100808354040283529182019161193c565b820191906000526020600020905b815481529060010190602001808311611928575b505083838082843780830192505050955050505050506040516020818303038152906040526040518463ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156119c95781810151838201526020016119b1565b50505050905090810190601f1680156119f65780820380516001836020036101000a031916815260200191505b5093505050506000604051808303818588803b158015611a1557600080fd5b505af1158015611a29573d6000803e3d6000fd5b50505050503373ffffffffffffffffffffffffffffffffffffffff168787604051808383808284376040519201829003822094507fbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d93506000925050a350505050505050565b60005474010000000000000000000000000000000000000000900460ff16611b1857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611710611614565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611bfe908590611c04565b50505050565b6060611c66826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611ce19092919063ffffffff16565b805190915015611cdc57808060200190516020811015611c8557600080fd5b5051611cdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612021602a913960400191505060405180910390fd5b505050565b6060611cf08484600085611cf8565b949350505050565b6060611d0385611618565b611d6e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611dd857805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611d9b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611e3a576040519150601f19603f3d011682016040523d82523d6000602084013e611e3f565b606091505b50915091508115611e53579150611cf09050565b805115611e635780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ec7578181015183820152602001611eaf565b50505050905090810190601f168015611ef45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50805460018160011615610100020316600290046000825580601f10611f285750611f46565b601f016020900490600052602060002090810190611f469190611fe5565b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611fa8578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555611fd5565b82800160010185558215611fd5579182015b82811115611fd5578235825591602001919060010190611fba565b50611fe1929150611fe5565b5090565b5b80821115611fe15760008155600101611fe656fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204c84e3d1a47f4d4e4a44e54ba6a342bb93298db951016cc23468022fbeb4941764736f6c634300060c003360a060405234801561001057600080fd5b5033606081901b60805261048b6100356000398060f85280610132525061048b6000f3fe6080604052600436106100295760003560e01c80634776e4731461002b578063e354733514610069575b005b34801561003757600080fd5b506100406100f6565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100296004803603604081101561007f57600080fd5b73ffffffffffffffffffffffffffffffffffffffff82351691908101906040810160208201356401000000008111156100b757600080fd5b8201836020820111156100c957600080fd5b803590602001918460018302840111640100000000831117156100eb57600080fd5b50909250905061011a565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146101be57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f464f5242494444454e0000000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff831661024057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f414441505445525f4e4f545f50524f5649444544000000000000000000000000604482015290519081900360640190fd5b6102b58383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505060408051808201909152601b81527f414441505445525f44454c454741544543414c4c5f4641494c45440000000000602082015291506102bb9050565b50505050565b6060600060608573ffffffffffffffffffffffffffffffffffffffff16856040518082805190602001908083835b6020831061032657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016102e9565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610386576040519150601f19603f3d011682016040523d82523d6000602084013e61038b565b606091505b5091509150811561039f57915061044e9050565b8051156103af5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156104135781810151838201526020016103fb565b50505050905090810190601f1680156104405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fea2646970667358221220fcb8f4f30203340a84fb3281a8f6f11931d3bba7bfc927a40ff42c9624d5f0ba64736f6c634300060c00330000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c80638da5cb5b1161007f578063b84f5d1e11610059578063b84f5d1e14610595578063c92aecc414610703578063e8edc81614610718578063f2fde38b1461072d576100dd565b80638da5cb5b1461048f5780639804a380146104cd578063b5268389146104e2576100dd565b80635c975abb116100bb5780635c975abb146102895780635f575529146102b25780636b68764c14610396578063715018a61461047a576100dd565b80633ef11fd7146100e2578063459a39fb14610161578063558b7dd114610274575b600080fd5b3480156100ee57600080fd5b5061015f6004803603602081101561010557600080fd5b81019060208101813564010000000081111561012057600080fd5b82018360208201111561013257600080fd5b8035906020019184600183028401116401000000008311171561015457600080fd5b50909250905061076d565b005b34801561016d57600080fd5b5061015f6004803603608081101561018457600080fd5b81019060208101813564010000000081111561019f57600080fd5b8201836020820111156101b157600080fd5b803590602001918460018302840111640100000000831117156101d357600080fd5b9193909273ffffffffffffffffffffffffffffffffffffffff833516927fffffffff0000000000000000000000000000000000000000000000000000000060208201351692919060608101906040013564010000000081111561023557600080fd5b82018360208201111561024757600080fd5b8035906020019184600183028401116401000000008311171561026957600080fd5b5090925090506109bf565b34801561028057600080fd5b5061015f610d91565b34801561029557600080fd5b5061029e610e2c565b604080519115158252519081900360200190f35b61015f600480360360808110156102c857600080fd5b8101906020810181356401000000008111156102e357600080fd5b8201836020820111156102f557600080fd5b8035906020019184600183028401116401000000008311171561031757600080fd5b9193909273ffffffffffffffffffffffffffffffffffffffff83351692602081013592919060608101906040013564010000000081111561035757600080fd5b82018360208201111561036957600080fd5b8035906020019184600183028401116401000000008311171561038b57600080fd5b509092509050610e4d565b61015f600480360360808110156103ac57600080fd5b8101906020810181356401000000008111156103c757600080fd5b8201836020820111156103d957600080fd5b803590602001918460018302840111640100000000831117156103fb57600080fd5b9193909273ffffffffffffffffffffffffffffffffffffffff83351692602081013592919060608101906040013564010000000081111561043b57600080fd5b82018360208201111561044d57600080fd5b8035906020019184600183028401116401000000008311171561046f57600080fd5b509092509050610f68565b34801561048657600080fd5b5061015f611166565b34801561049b57600080fd5b506104a4611266565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156104d957600080fd5b5061015f611282565b3480156104ee57600080fd5b5061029e6004803603602081101561050557600080fd5b81019060208101813564010000000081111561052057600080fd5b82018360208201111561053257600080fd5b8035906020019184600183028401116401000000008311171561055457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061131b945050505050565b3480156105a157600080fd5b50610648600480360360208110156105b857600080fd5b8101906020810181356401000000008111156105d357600080fd5b8201836020820111156105e557600080fd5b8035906020019184600183028401116401000000008311171561060757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061133b945050505050565b604051808473ffffffffffffffffffffffffffffffffffffffff168152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b838110156106c65781810151838201526020016106ae565b50505050905090810190601f1680156106f35780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561070f57600080fd5b506104a4611442565b34801561072457600080fd5b506104a4611466565b34801561073957600080fd5b5061015f6004803603602081101561075057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661148a565b610775611614565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146107fe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600073ffffffffffffffffffffffffffffffffffffffff166002838360405180838380828437919091019485525050604051928390036020019092205473ffffffffffffffffffffffffffffffffffffffff16929092141591506108c5905057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f414441505445525f444f45535f4e4f545f455849535400000000000000000000604482015290519081900360640190fd5b60028282604051808383808284379190910194855250506040519283900360200190922080547fffffffffffffffff0000000000000000000000000000000000000000000000001681559150600090506109226001830182611f02565b50506001600383836040518083838082843791909101948552505060405192839003602001832080549415157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0090951694909417909355508391508290808383808284376040519201829003822094507fb00061f7cc154fc23eb34671ab724fc7eb7b806abae871abae8f1eafce97213593506000925050a25050565b6109c7611614565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610a5057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a6f8473ffffffffffffffffffffffffffffffffffffffff16611618565b610ada57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f414441505445525f49535f4e4f545f415f434f4e545241435400000000000000604482015290519081900360640190fd5b6003868660405180838380828437919091019485525050604051928390036020019092205460ff16159150610b72905057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f414441505445525f52454d4f5645440000000000000000000000000000000000604482015290519081900360640190fd5b6000600287876040518083838082843791909101948552505060405192839003602001909220805490935073ffffffffffffffffffffffffffffffffffffffff16159150610c23905057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f414441505445525f455849535453000000000000000000000000000000000000604482015290519081900360640190fd5b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8616177fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000060e086901c02178155610cae600182018484611f49565b508473ffffffffffffffffffffffffffffffffffffffff16878760405180838380828437604080519190930181900381207fffffffff000000000000000000000000000000000000000000000000000000008c168252602082018481529382018a905295507f779d768d36d59231b0853572f8ee1997a2a762b871abf2c81f18f4bf2af3c72694508a9350899289925060608201848480828437600083820152604051601f9091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016909201829003965090945050505050a350505050505050565b610d99611614565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610e2257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610e2a61161e565b565b60005474010000000000000000000000000000000000000000900460ff1690565b60005474010000000000000000000000000000000000000000900460ff1615610ed757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b60026001541415610f4957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600155610f5c86868686868661173a565b50506001805550505050565b60005474010000000000000000000000000000000000000000900460ff1615610ff257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6002600154141561106457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260015560005a905061107c87878787878761173a565b6000601036025a8361520801030190507f0000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c73ffffffffffffffffffffffffffffffffffffffff1663079d229f3361a3db8461374a01816110d857fe5b046040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561112c57600080fd5b505af1158015611140573d6000803e3d6000fd5b505050506040513d602081101561115657600080fd5b5050600180555050505050505050565b61116e611614565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146111f757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b61128a611614565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461131357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610e2a611a8f565b805160208183018101805160038252928201919093012091525460ff1681565b80516020818301810180516002808352938301948301949094209390528254600180850180546040805161010094831615949094027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190911695909504601f810185900485028301850190955284825273ffffffffffffffffffffffffffffffffffffffff8316957401000000000000000000000000000000000000000090930460e01b949293919290918301828280156114385780601f1061140d57610100808354040283529160200191611438565b820191906000526020600020905b81548152906001019060200180831161141b57829003601f168201915b5050505050905083565b7f0000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c81565b7f00000000000000000000000074de5d4fcbf63e00296fd95d33236b979401663181565b611492611614565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461151b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116611587576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611ffb6026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b3b151590565b60005474010000000000000000000000000000000000000000900460ff16156116a857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611710611614565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190a1565b60006002878760405180838380828437919091019485525050604051928390036020019092209250505073ffffffffffffffffffffffffffffffffffffffff8516156117c2576117c273ffffffffffffffffffffffffffffffffffffffff8616337f00000000000000000000000074de5d4fcbf63e00296fd95d33236b979401663187611b69565b805460408051336020808301919091528251808303820181528284019093527fffffffff0000000000000000000000000000000000000000000000000000000074010000000000000000000000000000000000000000850460e01b90811660608401908152845173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000074de5d4fcbf63e00296fd95d33236b979401663181169763e35473359734979190921695919360018b01938d938d9360640191908701908083835b602083106118c357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611886565b6001836020036101000a0380198251168184511680821785525050505050509050018480546001816001161561010002031660029004801561193c5780601f1061191a57610100808354040283529182019161193c565b820191906000526020600020905b815481529060010190602001808311611928575b505083838082843780830192505050955050505050506040516020818303038152906040526040518463ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156119c95781810151838201526020016119b1565b50505050905090810190601f1680156119f65780820380516001836020036101000a031916815260200191505b5093505050506000604051808303818588803b158015611a1557600080fd5b505af1158015611a29573d6000803e3d6000fd5b50505050503373ffffffffffffffffffffffffffffffffffffffff168787604051808383808284376040519201829003822094507fbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d93506000925050a350505050505050565b60005474010000000000000000000000000000000000000000900460ff16611b1857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611710611614565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611bfe908590611c04565b50505050565b6060611c66826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611ce19092919063ffffffff16565b805190915015611cdc57808060200190516020811015611c8557600080fd5b5051611cdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612021602a913960400191505060405180910390fd5b505050565b6060611cf08484600085611cf8565b949350505050565b6060611d0385611618565b611d6e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611dd857805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611d9b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611e3a576040519150601f19603f3d011682016040523d82523d6000602084013e611e3f565b606091505b50915091508115611e53579150611cf09050565b805115611e635780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ec7578181015183820152602001611eaf565b50505050905090810190601f168015611ef45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50805460018160011615610100020316600290046000825580601f10611f285750611f46565b601f016020900490600052602060002090810190611f469190611fe5565b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611fa8578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555611fd5565b82800160010185558215611fd5579182015b82811115611fd5578235825591602001919060010190611fba565b50611fe1929150611fe5565b5090565b5b80821115611fe15760008155600101611fe656fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204c84e3d1a47f4d4e4a44e54ba6a342bb93298db951016cc23468022fbeb4941764736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c
-----Decoded View---------------
Arg [0] : _chi (address): 0x0000000000004946c0e9F43F4Dee607b0eF1fA1c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c
Loading...
Loading
Loading...
Loading
OVERVIEW
MetaMask Swaps lets users access all decentralized liquidity sources in one place.Multichain Portfolio | 36 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 53.53% | $0.000009 | 9,234,393,788.6702 | $83,294.23 | |
| ETH | 10.53% | $0.999849 | 16,384.1472 | $16,381.67 | |
| ETH | 7.09% | $92,306 | 0.1195 | $11,028.96 | |
| ETH | 4.15% | $0.999676 | 6,459.7117 | $6,457.62 | |
| ETH | 2.89% | $0.998951 | 4,507.317 | $4,502.59 | |
| ETH | 2.60% | $3,729.16 | 1.0858 | $4,049.12 | |
| ETH | 2.48% | $911.07 | 4.2331 | $3,856.63 | |
| ETH | 1.63% | $141.63 | 17.908 | $2,536.31 | |
| ETH | 1.08% | $6.02 | 278.7362 | $1,677.99 | |
| ETH | 0.89% | $907.78 | 1.521 | $1,380.77 | |
| ETH | 0.84% | $3,246.4 | 0.403 | $1,308.3 | |
| ETH | 0.72% | $170.24 | 6.5416 | $1,113.64 | |
| ETH | 0.71% | $1,476.11 | 0.7537 | $1,112.59 | |
| ETH | 0.55% | $170.24 | 4.9849 | $848.62 | |
| ETH | 0.53% | $0.448367 | 1,853.5401 | $831.07 | |
| ETH | 0.49% | $0.100021 | 7,584.2268 | $758.58 | |
| ETH | 0.43% | $0.131508 | 5,045 | $663.46 | |
| ETH | 0.41% | <$0.000001 | 11,735,092,871.0127 | $637.32 | |
| ETH | 0.35% | $0.01391 | 38,849.9488 | $540.42 | |
| ETH | 0.31% | $1 | 475.0404 | $475.04 | |
| ETH | 0.28% | $0.023477 | 18,773.0034 | $440.74 | |
| ETH | 0.23% | $0.000556 | 641,475.9554 | $356.74 | |
| ETH | 0.16% | $0.24804 | 1,022.2266 | $253.55 | |
| ETH | 0.14% | $0.000951 | 235,453.1198 | $223.92 | |
| ETH | 0.14% | $3.57 | 61.3616 | $219.06 | |
| ETH | 0.13% | $0.998655 | 208.9289 | $208.65 | |
| ETH | 0.13% | $13.77 | 14.6566 | $201.82 | |
| ETH | 0.13% | <$0.000001 | 4,810,121,224,838.8984 | $201.49 | |
| ETH | 0.11% | $3,245.25 | 0.0512 | $166.31 | |
| ETH | 0.11% | $0.169154 | 978.9151 | $165.59 | |
| ETH | 0.08% | $0.001484 | 85,061.2285 | $126.23 | |
| ETH | 0.08% | $0.217865 | 570 | $124.18 | |
| ETH | 0.08% | $0.022417 | 5,291.6 | $118.62 | |
| ETH | 0.07% | $0.004107 | 26,692.29 | $109.63 | |
| ETH | 0.07% | $0.004751 | 22,938 | $108.98 | |
| ETH | 0.06% | $0.01162 | 8,346.8199 | $96.99 | |
| ETH | 0.05% | $3.53 | 22.4532 | $79.28 | |
| ETH | 0.05% | $0.000237 | 332,255.4248 | $78.91 | |
| ETH | 0.05% | $0.000039 | 1,809,559.4868 | $71.07 | |
| ETH | 0.04% | $0.421071 | 145 | $61.06 | |
| ETH | 0.03% | $0.02037 | 2,500 | $50.93 | |
| ETH | 0.03% | $0.009487 | 5,358 | $50.83 | |
| ETH | 0.03% | $0.000008 | 5,968,753.7417 | $50.56 | |
| ETH | 0.03% | $0.025321 | 1,893.5731 | $47.95 | |
| ETH | 0.03% | $0.999691 | 43 | $42.99 | |
| ETH | 0.03% | $0.107645 | 390 | $41.98 | |
| ETH | 0.03% | $0.982946 | 40.6509 | $39.96 | |
| ETH | 0.03% | <$0.000001 | 146,511,190.5399 | $39.28 | |
| ETH | 0.02% | $1.12 | 34.1655 | $38.27 | |
| ETH | 0.02% | $0.152703 | 242.1647 | $36.98 | |
| ETH | 0.02% | $0.143109 | 249.7169 | $35.74 | |
| ETH | 0.02% | $0.051733 | 651.7848 | $33.72 | |
| ETH | 0.02% | <$0.000001 | 6,663,609,600 | $31.99 | |
| ETH | 0.02% | $0.972604 | 30.4744 | $29.64 | |
| ETH | 0.02% | <$0.000001 | 913,114,027.5617 | $25.68 | |
| ETH | 0.02% | $0.003086 | 8,007 | $24.71 | |
| ETH | 0.01% | $0.000001 | 38,512,826.0997 | $20.92 | |
| ETH | 0.01% | $0.054031 | 367.5801 | $19.86 | |
| ETH | 0.01% | $0.000084 | 202,307.5469 | $16.93 | |
| ETH | <0.01% | $0.124755 | 114.3184 | $14.26 | |
| ETH | <0.01% | $0.05754 | 230.3882 | $13.26 | |
| ETH | <0.01% | $0.038422 | 344.399 | $13.23 | |
| ETH | <0.01% | $12.34 | 1 | $12.34 | |
| ETH | <0.01% | <$0.000001 | 3,597,224,357,780.3682 | $12.14 | |
| ETH | <0.01% | <$0.000001 | 421,690,325.9363 | $10.71 | |
| ETH | <0.01% | <$0.000001 | 29,248,799 | $10.04 | |
| ETH | <0.01% | $0.008131 | 1,169.3452 | $9.51 | |
| ETH | <0.01% | $0.041644 | 213.1924 | $8.88 | |
| ETH | <0.01% | $0.066793 | 130 | $8.68 | |
| ETH | <0.01% | $0.007574 | 1,144.9752 | $8.67 | |
| ETH | <0.01% | $0.00841 | 1,001 | $8.42 | |
| ETH | <0.01% | $0.223833 | 37.3343 | $8.36 | |
| ETH | <0.01% | $8.45 | 0.98 | $8.28 | |
| ETH | <0.01% | $0.000066 | 124,239.7531 | $8.22 | |
| ETH | <0.01% | $0.002322 | 3,000 | $6.97 | |
| ETH | <0.01% | $6.23 | 1.103 | $6.87 | |
| ETH | <0.01% | $0.160342 | 40.743 | $6.53 | |
| ETH | <0.01% | $0.00 | 134,638.4523 | $0.00 | |
| ETH | <0.01% | $0.349403 | 13.0826 | $4.57 | |
| ETH | <0.01% | $0.002122 | 1,992.1233 | $4.23 | |
| ETH | <0.01% | $0.086286 | 47.8482 | $4.13 | |
| ETH | <0.01% | $0.002877 | 1,400 | $4.03 | |
| ETH | <0.01% | $0.038299 | 102.0442 | $3.91 | |
| ETH | <0.01% | $0.758767 | 4.6036 | $3.49 | |
| ETH | <0.01% | $0.423266 | 8 | $3.39 | |
| ETH | <0.01% | $0.000249 | 13,400.8819 | $3.34 | |
| ETH | <0.01% | $0.04307 | 76.7496 | $3.31 | |
| ETH | <0.01% | $0.440427 | 7.5 | $3.3 | |
| ETH | <0.01% | $0.013079 | 245.4165 | $3.21 | |
| ETH | <0.01% | $0.276953 | 11.433 | $3.17 | |
| ETH | <0.01% | $0.158376 | 18.6521 | $2.95 | |
| ETH | <0.01% | $0.005412 | 544.44 | $2.95 | |
| ETH | <0.01% | $0.47581 | 6 | $2.85 | |
| ETH | <0.01% | $0.000034 | 82,916.8432 | $2.8 | |
| ETH | <0.01% | <$0.000001 | 14,209,920,712.1306 | $2.65 | |
| ETH | <0.01% | $0.011942 | 200 | $2.39 | |
| ETH | <0.01% | $0.003598 | 575 | $2.07 | |
| ETH | <0.01% | $0.000263 | 7,614 | $2 | |
| ETH | <0.01% | $0.000029 | 68,000 | $1.97 | |
| ETH | <0.01% | $1.88 | 1 | $1.88 | |
| ETH | <0.01% | $0.152773 | 12 | $1.83 | |
| ETH | <0.01% | $0.216851 | 8.4211 | $1.83 | |
| ETH | <0.01% | $0.149455 | 10.0556 | $1.5 | |
| ETH | <0.01% | $0.000089 | 16,443.3364 | $1.46 | |
| ETH | <0.01% | $0.00 | 4,358,460,715.5273 | $0.00 | |
| ETH | <0.01% | $0.007446 | 174.5569 | $1.3 | |
| ETH | <0.01% | $0.055366 | 22.7 | $1.26 | |
| ETH | <0.01% | $0.187992 | 6.26 | $1.18 | |
| ETH | <0.01% | <$0.000001 | 3,980,190,973.6018 | $1.1 | |
| ETH | <0.01% | $0.010965 | 100 | $1.1 | |
| ETH | <0.01% | <$0.000001 | 4,369,388 | $0.9507 | |
| ETH | <0.01% | $0.00001 | 76,710 | $0.7318 | |
| ETH | <0.01% | $0.068659 | 10 | $0.6865 | |
| ETH | <0.01% | $0.006518 | 100 | $0.6518 | |
| ETH | <0.01% | $0.628804 | 1 | $0.6288 | |
| ETH | <0.01% | $5.49 | 0.101 | $0.5544 | |
| ETH | <0.01% | $0.519788 | 1 | $0.5197 | |
| ETH | <0.01% | $0.000127 | 4,042 | $0.5127 | |
| ETH | <0.01% | $0.000388 | 1,314.9507 | $0.5107 | |
| ETH | <0.01% | $0.000005 | 85,041.3226 | $0.449 | |
| ETH | <0.01% | $0.004742 | 73.3098 | $0.3476 | |
| ETH | <0.01% | $0.142993 | 2.2855 | $0.3268 | |
| ETH | <0.01% | <$0.000001 | 211,827,371.5889 | $0.3035 | |
| ETH | <0.01% | $0.064479 | 4.377 | $0.2822 | |
| ETH | <0.01% | $0.000776 | 350 | $0.2716 | |
| ETH | <0.01% | $0.000328 | 640 | $0.2096 | |
| ETH | <0.01% | $0.011244 | 17.7113 | $0.1991 | |
| ETH | <0.01% | $0.032032 | 6 | $0.1921 | |
| ETH | <0.01% | $0.17223 | 1 | $0.1722 | |
| ETH | <0.01% | $0.005376 | 30 | $0.1612 | |
| ETH | <0.01% | $0.009192 | 16.4637 | $0.1513 | |
| ETH | <0.01% | $0.002595 | 50 | $0.1297 | |
| ETH | <0.01% | $0.004483 | 26 | $0.1165 | |
| ETH | <0.01% | $0.00 | 20,000 | $0.00 | |
| ETH | <0.01% | $0.00 | 0.7456 | $0.00 | |
| ETH | <0.01% | $0.007271 | 15 | $0.109 | |
| ETH | <0.01% | $0.000869 | 124 | $0.1077 | |
| BLAST | 2.79% | $3,248.86 | 1.3369 | $4,343.5 | |
| BSC | 0.30% | $0.046323 | 10,000 | $463.23 | |
| BSC | 0.28% | $0.999705 | 442.9031 | $442.77 | |
| BSC | 0.06% | $0.14551 | 647.9665 | $94.29 | |
| BSC | 0.02% | $3,247.38 | 0.0102 | $33.24 | |
| BSC | <0.01% | $0.00 | 1,000 | $0.00 | |
| BSC | <0.01% | $0.999317 | 9.2 | $9.19 | |
| BSC | <0.01% | $0.000089 | 50,000 | $4.43 | |
| BSC | <0.01% | $0.000866 | 806.82 | $0.6988 | |
| BSC | <0.01% | <$0.000001 | 2,074,570.9017 | $0.3566 | |
| BSC | <0.01% | <$0.000001 | 804,828 | $0.3181 | |
| BASE | 0.52% | $3,247.33 | 0.2475 | $803.66 | |
| BASE | <0.01% | $0.019895 | 320 | $6.37 | |
| OP | 0.33% | $3,246.15 | 0.1599 | $519.1 | |
| ARB | 0.33% | $3,248.53 | 0.1583 | $514.35 | |
| POL | 0.22% | $0.1274 | 2,680.6709 | $341.52 | |
| POL | <0.01% | $0.99948 | 0.2 | $0.1998 | |
| LINEA | 0.09% | $3,249.66 | 0.0431 | $140.06 | |
| UNI | 0.03% | $3,248.23 | 0.012 | $39.01 | |
| AVAX | <0.01% | $14.64 | 0.628 | $9.2 | |
| MANTLE | <0.01% | $3,260.07 | 0.0014 | $4.56 | |
| MANTLE | <0.01% | $1.09 | 0.064 | $0.06958 | |
| ZKSYNC | <0.01% | $3,246.4 | 0.001181 | $3.83 | |
| OPBNB | <0.01% | $907.66 | 0.00304 | $2.76 | |
| ABSTRACT | <0.01% | $3,247.38 | 0.00080463 | $2.61 | |
| SCROLL | <0.01% | $3,249.66 | 0.00037695 | $1.22 | |
| HYPEREVM | <0.01% | $27.07 | 0.01 | $0.270723 | |
| TAIKO | <0.01% | $3,249.66 | 0.00007 | $0.227476 | |
| SONIC | <0.01% | $0.096823 | 1.32 | $0.127806 | |
| APE | <0.01% | $0.22331 | 0.2152 | $0.048051 | |
| BERA | <0.01% | $0.630507 | 0.0395 | $0.024905 | |
| PLASMA | <0.01% | $0.194574 | 0.0003 | $0.000058 | |
| BTTC | <0.01% | <$0.000001 | 0.005 | <$0.000001 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.