Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Funded By
N/A
Latest 12 from a total of 12 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Kill | 12929092 | 1704 days ago | IN | 0 ETH | 0.00058794 | ||||
| Drain Pools | 12362810 | 1792 days ago | IN | 0 ETH | 0.25561179 | ||||
| Drain Pools | 12358647 | 1793 days ago | IN | 0 ETH | 0.05664315 | ||||
| Drain Pools | 12356646 | 1793 days ago | IN | 0 ETH | 0.00591818 | ||||
| Drain Pools | 12356589 | 1793 days ago | IN | 0 ETH | 0.03441824 | ||||
| Set WETH Thresho... | 12349744 | 1794 days ago | IN | 0 ETH | 0.00127707 | ||||
| Set Master Vampi... | 12330642 | 1797 days ago | IN | 0 ETH | 0.00232376 | ||||
| Set Master Vampi... | 12330589 | 1797 days ago | IN | 0 ETH | 0.00243994 | ||||
| Drain Pools | 12279211 | 1805 days ago | IN | 0 ETH | 0.14539574 | ||||
| Drain Pools | 12279048 | 1805 days ago | IN | 0 ETH | 0.15645226 | ||||
| Set Master Vampi... | 12253830 | 1809 days ago | IN | 0 ETH | 0.00356959 | ||||
| Set Master Vampi... | 12253773 | 1809 days ago | IN | 0 ETH | 0.00616062 |
Latest 7 internal transactions
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Self Destruct called at Txn Hash 0xf0a830b49953e76e569c5b3fb51d85fcbb5eb41bf12f8420f080b782b6ad1563
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
DrainController
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 9999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma experimental ABIEncoderV2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "./VampireAdapter.sol";
import "./interfaces/IChiToken.sol";
interface IMasterVampire {
function drain(uint256 pid) external;
function poolInfo(uint256 pid) external view returns (Victim victim,
uint256 victimPoolId,
uint256 lastRewardBlock,
uint256 accWethPerShare,
uint256 wethAccumulator,
uint256 basePoolShares,
uint256 baseDeposits);
function poolLength() external view returns (uint256);
function pendingVictimReward(uint256 pid) external view returns (uint256);
}
/**
* @title Controls the "drain" of pool rewards
*
* drainPools should be called by a whitelisted node.
* This function calls drain() for each pool in MasterVampire if the reward
* WETH value is greater then the configured threshold.
*
* This contract has "gas treasury" which is funded in ETH by DrainDistributor.
* ETH is refunded to the node to pay for a portion of the gas fee.
* Chi Tokens can be used for any remaining gas discounts if caller holds the tokens.
*
* If the contract needs to be replaced the deployer can destruct the contract and get
* a gas refund, as well as collect any remaining ETH to be deployed to the new contract.
*/
contract DrainController is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
using VampireAdapter for Victim;
IMasterVampire public masterVampire;
uint256 public wethThreshold = 200000000000000000 wei;
uint256 public maxGasPrice = 60; // This is the maximum gas price in Gwei that this contract will refund
mapping(address => bool) internal whitelistedNode;
IChiToken public immutable chi;
constructor(address _chi) {
whitelistedNode[msg.sender] = true;
chi = IChiToken(_chi);
}
/**
* @notice Allow depositing ether to the contract
*/
receive() external payable {}
/**
* @notice Calculates estimated gas cost of a function and attempts to refund that amount to caller
*/
modifier refundGasCost() {
uint256 gasStart = gasleft();
uint256 ethBalance = address(this).balance;
uint256 weiGasPriceMax = maxGasPrice.mul(10**9); // The maximum gas price in Wei units
uint256 weiGasPrice = tx.gasprice; // The gas price for the current transaction
if (maxGasPrice > 0 && weiGasPrice > weiGasPriceMax){
// User should not spend more than the gas price max
weiGasPrice = weiGasPriceMax;
}
_;
uint256 usedGas = 85000 + gasStart - gasleft();
uint gasCost = usedGas * weiGasPrice;
// Refund total gas cost if contract has enough funds
if (ethBalance >= gasCost) {
msg.sender.transfer(gasCost);
return;
}
// Otherwise send what we can and try use chi to save some gas
msg.sender.transfer(ethBalance);
usedGas = 85000 + gasStart - gasleft();
gasCost = usedGas * weiGasPrice;
uint256 remainingGasSpent = (gasCost - ethBalance) / weiGasPrice;
chi.freeFromUpTo(msg.sender, (remainingGasSpent + 14154) / 41947);
}
/**
* @dev Throws if called by any account other than the whitelister
*/
modifier onlyWhitelister() {
require(
whitelistedNode[msg.sender],
"account is not whitelisted"
);
_;
}
/**
* @dev Adds account to whitelist
* @param account_ The address to whitelist
*/
function whitelist(address account_) external onlyOwner {
whitelistedNode[account_] = true;
}
/**
* @dev Removes account from whitelist
* @param account_ The address to remove from the whitelist
*/
function unWhitelist(address account_) external onlyOwner {
whitelistedNode[account_] = false;
}
/**
* @notice Change MasterVampire contract
*/
function setMasterVampire(address masterVampire_) external onlyOwner {
require(masterVampire_ != address(0));
masterVampire = IMasterVampire(masterVampire_);
}
/**
* @notice Change the WETH drain threshold
*/
function setWETHThreshold(uint256 wethThreshold_) external onlyOwner {
wethThreshold = wethThreshold_;
}
/**
* @notice Change the maximum gas price in Gwei for refunds
*/
function setMaxGasPrice(uint256 maxGasPrice_) external onlyOwner {
maxGasPrice = maxGasPrice_;
}
/**
* @notice Determines if drain can be performed
*/
function isDrainable() external view returns(int32[] memory) {
uint256 poolLength = masterVampire.poolLength();
int32[] memory drainablePools = new int32[](poolLength);
for (uint pid = 0; pid < poolLength; pid++) {
drainablePools[pid] = -1;
(Victim victim, uint256 victimPoolId,,,,,) = masterVampire.poolInfo(pid);
if (address(victim) != address(0)) {
uint256 pendingReward = masterVampire.pendingVictimReward(pid);
if (pendingReward > 0) {
if (victim.rewardValue(victimPoolId, pendingReward) >= wethThreshold) {
drainablePools[pid] = int32(pid);
}
}
}
}
return drainablePools;
}
/**
* @notice Drains the specified pools
*/
function drainPools(uint256[] memory pids) external onlyWhitelister refundGasCost {
uint256 poolLength = pids.length;
for (uint i = 0; i < poolLength; ++i) {
uint pid = pids[i];
masterVampire.drain(pid);
}
}
/**
* @notice Provides a way to remove ETH balance from contract
* @param to Address to send ETH balance
*/
function withdrawETH(address payable to) external onlyOwner {
to.transfer(address(this).balance);
}
/**
* @notice Destruct contract to get a refund and also move any left over ETH to specified address
* @param to Address to send any remaining ETH to before contract is destroyed
*/
function kill(address payable to) external onlyOwner {
to.transfer(address(this).balance);
selfdestruct(msg.sender);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import "../utils/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.
*/
abstract 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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual 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.7.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.7.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, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @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) {
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, reverting 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) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting 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) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* 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);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* 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);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* 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.7.6;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract Victim {}
library VampireAdapter {
// Victim info
function rewardToken(Victim victim, uint256 poolId) external view returns (IERC20) {
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("rewardToken(uint256)", poolId));
require(success, "rewardToken(uint256) staticcall failed.");
return abi.decode(result, (IERC20));
}
function rewardValue(Victim victim, uint256 poolId, uint256 amount) external view returns (uint256) {
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("rewardValue(uint256,uint256)", poolId, amount));
require(success, "rewardValue(uint256,uint256) staticcall failed.");
return abi.decode(result, (uint256));
}
function poolCount(Victim victim) external view returns (uint256) {
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("poolCount()"));
require(success, "poolCount() staticcall failed.");
return abi.decode(result, (uint256));
}
function sellableRewardAmount(Victim victim, uint256 poolId) external view returns (uint256) {
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("sellableRewardAmount(uint256)", poolId));
require(success, "sellableRewardAmount(uint256) staticcall failed.");
return abi.decode(result, (uint256));
}
// Victim actions
function sellRewardForWeth(Victim victim, uint256 poolId, uint256 rewardAmount, address to) external returns(uint256) {
(bool success, bytes memory result) = address(victim).delegatecall(abi.encodeWithSignature("sellRewardForWeth(address,uint256,uint256,address)", address(victim), poolId, rewardAmount, to));
require(success, "sellRewardForWeth(uint256,address) delegatecall failed.");
return abi.decode(result, (uint256));
}
// Pool info
function lockableToken(Victim victim, uint256 poolId) external view returns (IERC20) {
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("lockableToken(uint256)", poolId));
require(success, "lockableToken(uint256) staticcall failed.");
return abi.decode(result, (IERC20));
}
function lockedAmount(Victim victim, uint256 poolId) external view returns (uint256) {
// note the impersonation
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("lockedAmount(address,uint256)", address(this), poolId));
require(success, "lockedAmount(uint256) staticcall failed.");
return abi.decode(result, (uint256));
}
function pendingReward(Victim victim, uint256 poolId, uint256 victimPoolId) external view returns (uint256) {
// note the impersonation
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("pendingReward(address,uint256,uint256)", address(victim), poolId, victimPoolId));
require(success, "pendingReward(address,uint256,uint256) staticcall failed.");
return abi.decode(result, (uint256));
}
// Pool actions
function deposit(Victim victim, uint256 poolId, uint256 amount) external returns (uint256) {
(bool success, bytes memory result) = address(victim).delegatecall(abi.encodeWithSignature("deposit(address,uint256,uint256)", address(victim), poolId, amount));
require(success, "deposit(uint256,uint256) delegatecall failed.");
return abi.decode(result, (uint256));
}
function withdraw(Victim victim, uint256 poolId, uint256 amount) external returns (uint256) {
(bool success, bytes memory result) = address(victim).delegatecall(abi.encodeWithSignature("withdraw(address,uint256,uint256)", address(victim), poolId, amount));
require(success, "withdraw(uint256,uint256) delegatecall failed.");
return abi.decode(result, (uint256));
}
function claimReward(Victim victim, uint256 poolId, uint256 victimPoolId) external {
(bool success,) = address(victim).delegatecall(abi.encodeWithSignature("claimReward(address,uint256,uint256)", address(victim), poolId, victimPoolId));
require(success, "claimReward(uint256,uint256) delegatecall failed.");
}
function emergencyWithdraw(Victim victim, uint256 poolId) external {
(bool success,) = address(victim).delegatecall(abi.encodeWithSignature("emergencyWithdraw(address,uint256)", address(victim), poolId));
require(success, "emergencyWithdraw(uint256) delegatecall failed.");
}
// Service methods
function poolAddress(Victim victim, uint256 poolId) external view returns (address) {
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("poolAddress(uint256)", poolId));
require(success, "poolAddress(uint256) staticcall failed.");
return abi.decode(result, (address));
}
function rewardToWethPool(Victim victim) external view returns (address) {
(bool success, bytes memory result) = address(victim).staticcall(abi.encodeWithSignature("rewardToWethPool()"));
require(success, "rewardToWethPool() staticcall failed.");
return abi.decode(result, (address));
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IChiToken is IERC20 {
function mint(uint256 value) external;
function freeFromUpTo(address from, uint256 value) external returns(uint256 freed);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.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.7.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.7.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// 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");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}{
"optimizer": {
"enabled": true,
"runs": 9999
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {
"contracts/VampireAdapter.sol": {
"VampireAdapter": "0xc22c12d1a327c1bfe5782bca429a3f7828bc068a"
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_chi","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"chi","outputs":[{"internalType":"contract IChiToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"pids","type":"uint256[]"}],"name":"drainPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isDrainable","outputs":[{"internalType":"int32[]","name":"","type":"int32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"kill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"masterVampire","outputs":[{"internalType":"contract IMasterVampire","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGasPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"masterVampire_","type":"address"}],"name":"setMasterVampire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxGasPrice_","type":"uint256"}],"name":"setMaxGasPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wethThreshold_","type":"uint256"}],"name":"setWETHThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"unWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wethThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a06040526702c68af0bb140000600255603c60035534801561002157600080fd5b506040516115f53803806115f5833981016040819052610040916100c9565b600061004a6100c5565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3503360009081526004602052604090208054600160ff1990911617905560601b6001600160601b0319166080526100f7565b3390565b6000602082840312156100da578081fd5b81516001600160a01b03811681146100f0578182fd5b9392505050565b60805160601c6114dc61011960003980610a9252806110db52506114dc6000f3fe6080604052600436106100f75760003560e01c8063c92aecc41161008a578063e75b377e11610059578063e75b377e14610268578063f21af00714610288578063f2fde38b146102a8578063f6304d90146102c8576100fe565b8063c92aecc4146101fe578063cbf0b0c014610213578063d24aeaee14610233578063d2fa635e14610248576100fe565b8063715018a6116100c6578063715018a6146101925780638da5cb5b146101a75780639b19251a146101bc578063a7418259146101dc576100fe565b806315d22534146101035780633de39c111461012e5780634d8ce39614610150578063690d832014610172576100fe565b366100fe57005b600080fd5b34801561010f57600080fd5b506101186102e8565b6040516101259190611341565b60405180910390f35b34801561013a57600080fd5b50610143610304565b6040516101259190611434565b34801561015c57600080fd5b5061017061016b3660046111eb565b61030a565b005b34801561017e57600080fd5b5061017061018d3660046111eb565b6103ff565b34801561019e57600080fd5b506101706104d3565b3480156101b357600080fd5b506101186105d0565b3480156101c857600080fd5b506101706101d73660046111eb565b6105ec565b3480156101e857600080fd5b506101f16106c9565b6040516101259190611388565b34801561020a57600080fd5b50610118610a90565b34801561021f57600080fd5b5061017061022e3660046111eb565b610ab4565b34801561023f57600080fd5b50610143610b88565b34801561025457600080fd5b50610170610263366004611311565b610b8e565b34801561027457600080fd5b50610170610283366004611311565b610c21565b34801561029457600080fd5b506101706102a33660046111eb565b610cb4565b3480156102b457600080fd5b506101706102c33660046111eb565b610d8e565b3480156102d457600080fd5b506101706102e3366004611207565b610efb565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b610312611185565b73ffffffffffffffffffffffffffffffffffffffff166103306105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610398576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166103b857600080fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610407611185565b73ffffffffffffffffffffffffffffffffffffffff166104256105d0565b73ffffffffffffffffffffffffffffffffffffffff161461048d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156104cf573d6000803e3d6000fd5b5050565b6104db611185565b73ffffffffffffffffffffffffffffffffffffffff166104f96105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610561576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b6105f4611185565b73ffffffffffffffffffffffffffffffffffffffff166106126105d0565b73ffffffffffffffffffffffffffffffffffffffff161461067a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60606000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663081e3eda6040518163ffffffff1660e01b815260040160206040518083038186803b15801561073557600080fd5b505afa158015610749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076d9190611329565b905060008167ffffffffffffffff8111801561078857600080fd5b506040519080825280602002602001820160405280156107b2578160200160208202803683370190505b50905060005b82811015610a89577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8282815181106107ed57fe5b600392830b90920b602092830291909101909101526001546040517f1526fe27000000000000000000000000000000000000000000000000000000008152600091829173ffffffffffffffffffffffffffffffffffffffff90911690631526fe279061085d908690600401611434565b60e06040518083038186803b15801561087557600080fd5b505afa158015610889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ad91906112b5565b505050505091509150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610a7f576001546040517f89c70e7900000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906389c70e7990610941908790600401611434565b60206040518083038186803b15801561095957600080fd5b505afa15801561096d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109919190611329565b90508015610a7d576002546040517f9fe833db00000000000000000000000000000000000000000000000000000000815273c22c12d1a327c1bfe5782bca429a3f7828bc068a90639fe833db90610a069073ffffffffffffffffffffffffffffffffffffffff881690879087906004016113cf565b60206040518083038186803b158015610a1e57600080fd5b505af4158015610a32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a569190611329565b10610a7d5783858581518110610a6857fe5b602002602001019060030b908160030b815250505b505b50506001016107b8565b5091505090565b7f000000000000000000000000000000000000000000000000000000000000000081565b610abc611185565b73ffffffffffffffffffffffffffffffffffffffff16610ada6105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610b42576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f19350505050158015610b84573d6000803e3d6000fd5b5033ff5b60025481565b610b96611185565b73ffffffffffffffffffffffffffffffffffffffff16610bb46105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600355565b610c29611185565b73ffffffffffffffffffffffffffffffffffffffff16610c476105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600255565b610cbc611185565b73ffffffffffffffffffffffffffffffffffffffff16610cda6105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610d96611185565b73ffffffffffffffffffffffffffffffffffffffff16610db46105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610e1c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610e6e5760405162461bcd60e51b81526004018080602001828103825260268152602001806114606026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3360009081526004602052604090205460ff16610f335760405162461bcd60e51b8152600401610f2a906113fd565b60405180910390fd5b60005a6003549091504790600090610f4f90633b9aca00611189565b6003549091503a9015801590610f6457508181115b15610f6c5750805b845160005b81811015611027576000878281518110610f8757fe5b60209081029190910101516001546040517ff6b19c7400000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff169063f6b19c7490610fe9908490600401611434565b600060405180830381600087803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b5050505050806001019050610f71565b505060005a850362014c0801905081810280851061107857604051339082156108fc029083906000818181858888f1935050505015801561106c573d6000803e3d6000fd5b50505050505050611182565b604051339086156108fc029087906000818181858888f193505050501580156110a5573d6000803e3d6000fd5b505a860362014c0801915050818102600083868303816110c157fe5b04905073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001663079d229f3361a3db61374a8501046040518363ffffffff1660e01b8152600401611127929190611362565b602060405180830381600087803b15801561114157600080fd5b505af1158015611155573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111799190611329565b50505050505050505b50565b3390565b600082611198575060006111e5565b828202828482816111a557fe5b04146111e25760405162461bcd60e51b81526004018080602001828103825260218152602001806114866021913960400191505060405180910390fd5b90505b92915050565b6000602082840312156111fc578081fd5b81356111e28161143d565b60006020808385031215611219578182fd5b823567ffffffffffffffff80821115611230578384fd5b818501915085601f830112611243578384fd5b81358181111561124f57fe5b8381026040518582820101818110858211171561126857fe5b604052828152858101935084860182860187018a1015611286578788fd5b8795505b838610156112a857803585526001959095019493860193860161128a565b5098975050505050505050565b600080600080600080600060e0888a0312156112cf578283fd5b87516112da8161143d565b602089015160408a015160608b015160808c015160a08d015160c0909d0151949e939d50919b909a50909850965090945092505050565b600060208284031215611322578081fd5b5035919050565b60006020828403121561133a578081fd5b5051919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156113c357835160030b835292840192918401916001016113a4565b50909695505050505050565b73ffffffffffffffffffffffffffffffffffffffff9390931683526020830191909152604082015260600190565b6020808252601a908201527f6163636f756e74206973206e6f742077686974656c6973746564000000000000604082015260600190565b90815260200190565b73ffffffffffffffffffffffffffffffffffffffff8116811461118257600080fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122023377c7631de29ba16e0d307d818335fed33d458f01c7f88e6715c6cabb65d0064736f6c634300070600330000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c
Deployed Bytecode
0x6080604052600436106100f75760003560e01c8063c92aecc41161008a578063e75b377e11610059578063e75b377e14610268578063f21af00714610288578063f2fde38b146102a8578063f6304d90146102c8576100fe565b8063c92aecc4146101fe578063cbf0b0c014610213578063d24aeaee14610233578063d2fa635e14610248576100fe565b8063715018a6116100c6578063715018a6146101925780638da5cb5b146101a75780639b19251a146101bc578063a7418259146101dc576100fe565b806315d22534146101035780633de39c111461012e5780634d8ce39614610150578063690d832014610172576100fe565b366100fe57005b600080fd5b34801561010f57600080fd5b506101186102e8565b6040516101259190611341565b60405180910390f35b34801561013a57600080fd5b50610143610304565b6040516101259190611434565b34801561015c57600080fd5b5061017061016b3660046111eb565b61030a565b005b34801561017e57600080fd5b5061017061018d3660046111eb565b6103ff565b34801561019e57600080fd5b506101706104d3565b3480156101b357600080fd5b506101186105d0565b3480156101c857600080fd5b506101706101d73660046111eb565b6105ec565b3480156101e857600080fd5b506101f16106c9565b6040516101259190611388565b34801561020a57600080fd5b50610118610a90565b34801561021f57600080fd5b5061017061022e3660046111eb565b610ab4565b34801561023f57600080fd5b50610143610b88565b34801561025457600080fd5b50610170610263366004611311565b610b8e565b34801561027457600080fd5b50610170610283366004611311565b610c21565b34801561029457600080fd5b506101706102a33660046111eb565b610cb4565b3480156102b457600080fd5b506101706102c33660046111eb565b610d8e565b3480156102d457600080fd5b506101706102e3366004611207565b610efb565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b610312611185565b73ffffffffffffffffffffffffffffffffffffffff166103306105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610398576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166103b857600080fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610407611185565b73ffffffffffffffffffffffffffffffffffffffff166104256105d0565b73ffffffffffffffffffffffffffffffffffffffff161461048d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156104cf573d6000803e3d6000fd5b5050565b6104db611185565b73ffffffffffffffffffffffffffffffffffffffff166104f96105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610561576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b6105f4611185565b73ffffffffffffffffffffffffffffffffffffffff166106126105d0565b73ffffffffffffffffffffffffffffffffffffffff161461067a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60606000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663081e3eda6040518163ffffffff1660e01b815260040160206040518083038186803b15801561073557600080fd5b505afa158015610749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076d9190611329565b905060008167ffffffffffffffff8111801561078857600080fd5b506040519080825280602002602001820160405280156107b2578160200160208202803683370190505b50905060005b82811015610a89577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8282815181106107ed57fe5b600392830b90920b602092830291909101909101526001546040517f1526fe27000000000000000000000000000000000000000000000000000000008152600091829173ffffffffffffffffffffffffffffffffffffffff90911690631526fe279061085d908690600401611434565b60e06040518083038186803b15801561087557600080fd5b505afa158015610889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ad91906112b5565b505050505091509150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610a7f576001546040517f89c70e7900000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906389c70e7990610941908790600401611434565b60206040518083038186803b15801561095957600080fd5b505afa15801561096d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109919190611329565b90508015610a7d576002546040517f9fe833db00000000000000000000000000000000000000000000000000000000815273c22c12d1a327c1bfe5782bca429a3f7828bc068a90639fe833db90610a069073ffffffffffffffffffffffffffffffffffffffff881690879087906004016113cf565b60206040518083038186803b158015610a1e57600080fd5b505af4158015610a32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a569190611329565b10610a7d5783858581518110610a6857fe5b602002602001019060030b908160030b815250505b505b50506001016107b8565b5091505090565b7f0000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c81565b610abc611185565b73ffffffffffffffffffffffffffffffffffffffff16610ada6105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610b42576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f19350505050158015610b84573d6000803e3d6000fd5b5033ff5b60025481565b610b96611185565b73ffffffffffffffffffffffffffffffffffffffff16610bb46105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600355565b610c29611185565b73ffffffffffffffffffffffffffffffffffffffff16610c476105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600255565b610cbc611185565b73ffffffffffffffffffffffffffffffffffffffff16610cda6105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610d96611185565b73ffffffffffffffffffffffffffffffffffffffff16610db46105d0565b73ffffffffffffffffffffffffffffffffffffffff1614610e1c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610e6e5760405162461bcd60e51b81526004018080602001828103825260268152602001806114606026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3360009081526004602052604090205460ff16610f335760405162461bcd60e51b8152600401610f2a906113fd565b60405180910390fd5b60005a6003549091504790600090610f4f90633b9aca00611189565b6003549091503a9015801590610f6457508181115b15610f6c5750805b845160005b81811015611027576000878281518110610f8757fe5b60209081029190910101516001546040517ff6b19c7400000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff169063f6b19c7490610fe9908490600401611434565b600060405180830381600087803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b5050505050806001019050610f71565b505060005a850362014c0801905081810280851061107857604051339082156108fc029083906000818181858888f1935050505015801561106c573d6000803e3d6000fd5b50505050505050611182565b604051339086156108fc029087906000818181858888f193505050501580156110a5573d6000803e3d6000fd5b505a860362014c0801915050818102600083868303816110c157fe5b04905073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c1663079d229f3361a3db61374a8501046040518363ffffffff1660e01b8152600401611127929190611362565b602060405180830381600087803b15801561114157600080fd5b505af1158015611155573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111799190611329565b50505050505050505b50565b3390565b600082611198575060006111e5565b828202828482816111a557fe5b04146111e25760405162461bcd60e51b81526004018080602001828103825260218152602001806114866021913960400191505060405180910390fd5b90505b92915050565b6000602082840312156111fc578081fd5b81356111e28161143d565b60006020808385031215611219578182fd5b823567ffffffffffffffff80821115611230578384fd5b818501915085601f830112611243578384fd5b81358181111561124f57fe5b8381026040518582820101818110858211171561126857fe5b604052828152858101935084860182860187018a1015611286578788fd5b8795505b838610156112a857803585526001959095019493860193860161128a565b5098975050505050505050565b600080600080600080600060e0888a0312156112cf578283fd5b87516112da8161143d565b602089015160408a015160608b015160808c015160a08d015160c0909d0151949e939d50919b909a50909850965090945092505050565b600060208284031215611322578081fd5b5035919050565b60006020828403121561133a578081fd5b5051919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156113c357835160030b835292840192918401916001016113a4565b50909695505050505050565b73ffffffffffffffffffffffffffffffffffffffff9390931683526020830191909152604082015260600190565b6020808252601a908201527f6163636f756e74206973206e6f742077686974656c6973746564000000000000604082015260600190565b90815260200190565b73ffffffffffffffffffffffffffffffffffffffff8116811461118257600080fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122023377c7631de29ba16e0d307d818335fed33d458f01c7f88e6715c6cabb65d0064736f6c63430007060033
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
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.