More Info
Private Name Tags
ContractCreator
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20239747 | 195 days ago | 3.26241086 ETH | ||||
20239747 | 195 days ago | 3.26241086 ETH | ||||
20163298 | 206 days ago | 1.51806687 ETH | ||||
20163298 | 206 days ago | 1.51806687 ETH | ||||
20126163 | 211 days ago | 0.34532758 ETH | ||||
20126163 | 211 days ago | 0.34532758 ETH | ||||
20060319 | 220 days ago | 1.29133839 ETH | ||||
20060319 | 220 days ago | 1.29133839 ETH | ||||
20038468 | 223 days ago | 1.29035259 ETH | ||||
20038468 | 223 days ago | 1.29035259 ETH | ||||
20024113 | 225 days ago | 0.61801772 ETH | ||||
20024113 | 225 days ago | 0.61801772 ETH | ||||
20019865 | 226 days ago | 0.22943768 ETH | ||||
20019865 | 226 days ago | 0.22943768 ETH | ||||
20015283 | 226 days ago | 0.40995185 ETH | ||||
20015283 | 226 days ago | 0.40995185 ETH | ||||
20009240 | 227 days ago | 0.02534805 ETH | ||||
20009240 | 227 days ago | 0.02534805 ETH | ||||
19995022 | 229 days ago | 0.32382061 ETH | ||||
19995022 | 229 days ago | 0.32382061 ETH | ||||
19982084 | 231 days ago | 1.53481351 ETH | ||||
19982084 | 231 days ago | 1.53481351 ETH | ||||
19981775 | 231 days ago | 3.31936294 ETH | ||||
19981775 | 231 days ago | 3.31936294 ETH | ||||
19945619 | 236 days ago | 0.65126079 ETH |
Loading...
Loading
Contract Name:
WarpedTreasuryHandler
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** __ __ _____ _______________________________________ / \ / \/ _ \\______ \______ \_ _____/\______ \ \ \/\/ / /_\ \| _/| ___/| __)_ | | \ \ / | \ | \| | | \ | ` \ \__/\ /\____|__ /____|_ /|____| /_______ //_______ / \/ \/ \/ \/ \/ */ pragma solidity 0.8.18; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {IPoolManager} from "./interfaces/IPoolManager.sol"; import {ITreasuryHandler} from "./interfaces/ITreasuryHandler.sol"; /** * @title Treasury handler contract * @dev Sells tokens that have accumulated through taxes and sends the resulting ETH to the treasury. If * `liquidityBasisPoints` has been set to a non-zero value, then that percentage will instead be added to the designated * liquidity pool. */ contract WarpedTreasuryHandler is ITreasuryHandler, Ownable { using Address for address payable; using SafeERC20 for IERC20; IPoolManager public poolManager; /// @notice The Treasury address. address payable public treasury; /// @notice The token that accumulates through taxes. This will be sold for ETH. IERC20 public token; /// @notice The basis points of tokens to sell and add as liquidity to the pool. uint256 public liquidityBasisPoints; /// @notice The maximum price impact the sell (initiated from this contract) may have. uint256 public priceImpactBasisPoints; /// @dev swap contract balance if it's over this value uint256 private _taxSwap; bool private _isInitialized; /// @notice The Uniswap router that handles the sell and liquidity operations. IUniswapV2Router02 public constant UNISWAP_V2_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); /// @notice Emitted when the basis points value of tokens to add as liquidity is updated. event LiquidityBasisPointsUpdated(uint256 oldBasisPoints, uint256 newBasisPoints); /// @notice Emitted when the maximum price impact basis points value is updated. event PriceImpactBasisPointsUpdated(uint256 oldBasisPoints, uint256 newBasisPoints); /// @notice Emitted when the treasury address is updated. event TreasuryAddressUpdated(address oldTreasuryAddress, address newTreasuryAddress); /// @notice Emitted when _taxSwap is updated. event TaxSwapUpdated(uint256 newValue); /// @notice Emitted when liquidity added successfully event LiquidityAdded(uint amountToken, uint amountETH, uint liquidity); /// @notice Constructor of tax handler contract /// @param _poolManager exchange pool manager address constructor(IPoolManager _poolManager) { poolManager = _poolManager; } /** * @notice Allow contract to accept ETH. */ // solhint-disable-next-line no-empty-blocks receive() external payable {} /** * @param treasuryAddress Address of treasury to use. * @param tokenAddress Address of token to accumulate and sell. */ function initialize(address treasuryAddress, address tokenAddress) external onlyOwner { require(!_isInitialized, "Already initialized"); require(treasuryAddress != address(0), "treasury is zero address"); require(tokenAddress != address(0), "token address is zero address"); treasury = payable(treasuryAddress); token = IERC20(tokenAddress); liquidityBasisPoints = 0; priceImpactBasisPoints = 500; _taxSwap = 10_000_000 * 10 ** 18; _isInitialized = true; } /** * @notice Perform operations before a sell action (or a liquidity addition) is executed. The accumulated tokens are * then sold for ETH. In case the number of accumulated tokens exceeds the price impact percentage threshold, then * the number will be adjusted to stay within the threshold. If a non-zero percentage is set for liquidity, then * that percentage will be added to the primary liquidity pool instead of being sold for ETH and sent to the * treasury. * @param benefactor Address of the benefactor. * @param beneficiary Address of the beneficiary. * @param amount Number of tokens in the transfer. */ function processTreasury(address benefactor, address beneficiary, uint256 amount) external override { if (!_isInitialized || benefactor == address(0x0)) { // skip when not initialized or mint return; } // No actions are done on transfers other than sells. if (!poolManager.isPoolAddress(beneficiary)) { return; } uint256 contractTokenBalance = token.balanceOf(address(this)); if (contractTokenBalance > _taxSwap) { uint256 primaryPoolBalance = token.balanceOf(poolManager.primaryPool()); uint256 maxPriceImpactSale = (primaryPoolBalance * priceImpactBasisPoints) / 10000; contractTokenBalance = _taxSwap > amount ? amount : _taxSwap; // Ensure the price impact is within reasonable bounds. if (contractTokenBalance > maxPriceImpactSale) { contractTokenBalance = maxPriceImpactSale; } // The number of tokens to sell for liquidity purposes. This is calculated as follows: // // B P // L = - * ----- // 2 10000 // // Where: // L = tokens to sell for liquidity // B = available token balance // P = basis points of tokens to use for liquidity // // The number is divided by two to preserve the token side of the token/WETH pool. uint256 tokensForLiquidity = (contractTokenBalance * liquidityBasisPoints) / 20000; uint256 tokensForSwap = contractTokenBalance - tokensForLiquidity; uint256 currentWeiBalance = address(this).balance; _swapTokensForEth(tokensForSwap); uint256 weiEarned = address(this).balance - currentWeiBalance; // No need to divide this number, because that was only to have enough tokens remaining to pair with this // ETH value. uint256 weiForLiquidity = (weiEarned * liquidityBasisPoints) / 10000; if (tokensForLiquidity > 0) { _addLiquidity(tokensForLiquidity, weiForLiquidity); } // It's cheaper to get the active balance rather than calculating based off of the `currentWeiBalance` and // `weiForLiquidity` numbers. uint256 remainingWeiBalance = address(this).balance; if (remainingWeiBalance > 0) { treasury.sendValue(remainingWeiBalance); } } } /** * @notice Set new liquidity basis points value. * @param newBasisPoints New liquidity basis points value. Cannot exceed 10,000 (i.e., 100%) as that would break the * calculation. */ function setLiquidityBasisPoints(uint256 newBasisPoints) external onlyOwner { require(newBasisPoints <= 10000, "Max is 10000"); uint256 oldBasisPoints = liquidityBasisPoints; liquidityBasisPoints = newBasisPoints; emit LiquidityBasisPointsUpdated(oldBasisPoints, newBasisPoints); } /** * @notice Set new price impact basis points value. * @param newBasisPoints New price impact basis points value. */ function setPriceImpactBasisPoints(uint256 newBasisPoints) external onlyOwner { require(newBasisPoints < 1500, "Too high value"); uint256 oldBasisPoints = priceImpactBasisPoints; priceImpactBasisPoints = newBasisPoints; emit PriceImpactBasisPointsUpdated(oldBasisPoints, newBasisPoints); } /** * @notice Set new treasury address. * @param newTreasuryAddress New treasury address. */ function setTreasury(address newTreasuryAddress) external onlyOwner { require(newTreasuryAddress != address(0), "Zero address"); address oldTreasuryAddress = address(treasury); treasury = payable(newTreasuryAddress); emit TreasuryAddressUpdated(oldTreasuryAddress, newTreasuryAddress); } /** * @notice Withdraw any tokens or ETH stuck in the treasury handler. * @param tokenAddress Address of the token to withdraw. If set to the zero address, ETH will be withdrawn. * @param amount The number of tokens to withdraw. */ function withdraw(address tokenAddress, uint256 amount) external onlyOwner { if (tokenAddress == address(0)) { treasury.sendValue(amount); } else { IERC20(tokenAddress).safeTransfer(address(treasury), amount); } } function updateTaxSwap(uint256 taxSwap) external onlyOwner { require(taxSwap > 0, "Zero taxSwap"); _taxSwap = taxSwap; emit TaxSwapUpdated(taxSwap); } /** * @dev Swap accumulated tokens for ETH. * @param tokenAmount Number of tokens to swap for ETH. */ function _swapTokensForEth(uint256 tokenAmount) internal { // The ETH/token pool is the primary pool. It always exists. address[] memory path = new address[](2); path[0] = address(token); path[1] = UNISWAP_V2_ROUTER.WETH(); // Call the getAmountsOut function to estimate the output amounts uint256[] memory amountsOut = UNISWAP_V2_ROUTER.getAmountsOut(tokenAmount, path); // Set the minimum amounts slightly below the estimated output amounts uint256 amountETHMin = amountsOut[1] - (amountsOut[1] / 100); // consider about 1 percent slippage // Ensure the router can perform the swap for the designated number of tokens. token.safeApprove(address(UNISWAP_V2_ROUTER), tokenAmount); UNISWAP_V2_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, amountETHMin, path, address(this), block.timestamp ); } /** * @dev Add liquidity to primary pool. * @param tokenAmount Number of tokens to add as liquidity. * @param weiAmount ETH value to pair with the tokens. */ function _addLiquidity(uint256 tokenAmount, uint256 weiAmount) internal { // Ensure the router can perform the transfer for the designated number of tokens. token.safeApprove(address(UNISWAP_V2_ROUTER), tokenAmount); // Create a dynamic array containing the token and ETH addresses in the desired order address[] memory path = new address[](2); path[0] = address(token); path[1] = UNISWAP_V2_ROUTER.WETH(); // Call the getAmountsOut function to estimate the output amounts uint256[] memory amountsOut = UNISWAP_V2_ROUTER.getAmountsOut(tokenAmount, path); // Set the minimum amounts slightly below the estimated output amounts uint256 amountTokenMin = amountsOut[0] - (amountsOut[0] / 100); // consider about 1 percent slippage uint256 amountETHMin = amountsOut[1] - (amountsOut[1] / 100); // consider about 1 percent slippage // Both minimum values are set to zero to allow for any form of slippage. (uint amountToken, uint amountETH, uint liquidity) = UNISWAP_V2_ROUTER.addLiquidityETH{value: weiAmount}( address(token), tokenAmount, amountTokenMin, amountETHMin, address(treasury), block.timestamp ); emit LiquidityAdded(amountToken, amountETH, liquidity); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT /** __ __ _____ _______________________________________ / \ / \/ _ \\______ \______ \_ _____/\______ \ \ \/\/ / /_\ \| _/| ___/| __)_ | | \ \ / | \ | \| | | \ | ` \ \__/\ /\____|__ /____|_ /|____| /_______ //_______ / \/ \/ \/ \/ \/ */ pragma solidity 0.8.18; /** * @title Exchange pool processor abstract contract. * @dev Keeps an enumerable set of designated exchange addresses as well as a single primary pool address. */ interface IPoolManager { /// @notice Primary exchange pool address. function primaryPool() external view returns (address); /** * @notice Check if the given address is pool address. * @param addr Address to check. * @return bool True if the given address is pool address. */ function isPoolAddress(address addr) external view returns (bool); }
// SPDX-License-Identifier: MIT /** __ __ _____ _______________________________________ / \ / \/ _ \\______ \______ \_ _____/\______ \ \ \/\/ / /_\ \| _/| ___/| __)_ | | \ \ / | \ | \| | | \ | ` \ \__/\ /\____|__ /____|_ /|____| /_______ //_______ / \/ \/ \/ \/ \/ */ pragma solidity 0.8.18; /** * @title Treasury handler interface * @dev Any class that implements this interface can be used for protocol-specific operations pertaining to the treasury. */ interface ITreasuryHandler { /** * @notice Perform operations before a transfer is executed. * @param benefactor Address of the benefactor. * @param beneficiary Address of the beneficiary. * @param amount Number of tokens in the transfer. */ function processTreasury(address benefactor, address beneficiary, uint256 amount) external; }
// SPDX-License-Identifier: MIT /** __ __ _____ _______________________________________ / \ / \/ _ \\______ \______ \_ _____/\______ \ \ \/\/ / /_\ \| _/| ___/| __)_ | | \ \ / | \ | \| | | \ | ` \ \__/\ /\____|__ /____|_ /|____| /_______ //_______ / \/ \/ \/ \/ \/ */ pragma solidity 0.8.18; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IPoolManager","name":"_poolManager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBasisPoints","type":"uint256"}],"name":"LiquidityBasisPointsUpdated","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":"uint256","name":"oldBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBasisPoints","type":"uint256"}],"name":"PriceImpactBasisPointsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"TaxSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTreasuryAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newTreasuryAddress","type":"address"}],"name":"TreasuryAddressUpdated","type":"event"},{"inputs":[],"name":"UNISWAP_V2_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryAddress","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityBasisPoints","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":"poolManager","outputs":[{"internalType":"contract IPoolManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceImpactBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"benefactor","type":"address"},{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"processTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBasisPoints","type":"uint256"}],"name":"setLiquidityBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBasisPoints","type":"uint256"}],"name":"setPriceImpactBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryAddress","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwap","type":"uint256"}],"name":"updateTaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405162001c9738038062001c97833981016040819052610031916100af565b61003a3361005f565b600180546001600160a01b0319166001600160a01b03929092169190911790556100df565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100c157600080fd5b81516001600160a01b03811681146100d857600080fd5b9392505050565b611ba880620000ef6000396000f3fe6080604052600436106100f75760003560e01c8063a82ed9ec1161008a578063f0f4426011610059578063f0f4426014610297578063f2fde38b146102b7578063f3fef3a3146102d7578063fc0c546a146102f757600080fd5b8063a82ed9ec14610215578063b7bd08481461023d578063dc4c90d314610261578063dc8f7fa51461028157600080fd5b80636278d5ed116100c65780636278d5ed146101a2578063715018a6146101c25780637a81085c146101d75780638da5cb5b146101f757600080fd5b80631031387014610103578063485cc955146101255780634a27affb1461014557806361d027b31461016557600080fd5b366100fe57005b600080fd5b34801561010f57600080fd5b5061012361011e3660046117ab565b610317565b005b34801561013157600080fd5b506101236101403660046117ec565b610654565b34801561015157600080fd5b50610123610160366004611825565b6107c2565b34801561017157600080fd5b50600254610185906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101ae57600080fd5b506101236101bd366004611825565b610861565b3480156101ce57600080fd5b506101236108f4565b3480156101e357600080fd5b506101236101f2366004611825565b610908565b34801561020357600080fd5b506000546001600160a01b0316610185565b34801561022157600080fd5b50610185737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561024957600080fd5b5061025360055481565b604051908152602001610199565b34801561026d57600080fd5b50600154610185906001600160a01b031681565b34801561028d57600080fd5b5061025360045481565b3480156102a357600080fd5b506101236102b236600461183e565b6109a0565b3480156102c357600080fd5b506101236102d236600461183e565b610a65565b3480156102e357600080fd5b506101236102f2366004611862565b610af5565b34801561030357600080fd5b50600354610185906001600160a01b031681565b60075460ff16158061033057506001600160a01b038316155b1561033a57505050565b6001546040517f2842d7570000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015290911690632842d75790602401602060405180830381865afa15801561039d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c1919061188e565b6103ca57505050565b6003546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561042c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045091906118b0565b905060065481111561064e57600354600154604080517f9be3d69c00000000000000000000000000000000000000000000000000000000815290516000936001600160a01b03908116936370a0823193911691639be3d69c916004808201926020929091908290030181865afa1580156104ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f291906118c9565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561054e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057291906118b0565b905060006127106005548361058791906118fc565b6105919190611919565b905083600654116105a4576006546105a6565b835b9250808311156105b4578092505b6000614e20600454856105c791906118fc565b6105d19190611919565b905060006105df828661193b565b9050476105eb82610b3f565b60006105f7824761193b565b905060006127106004548361060c91906118fc565b6106169190611919565b90508415610628576106288582610dd0565b47801561064557600254610645906001600160a01b03168261113e565b50505050505050505b50505050565b61065c61125c565b60075460ff16156106b45760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a65640000000000000000000000000060448201526064015b60405180910390fd5b6001600160a01b03821661070a5760405162461bcd60e51b815260206004820152601860248201527f7472656173757279206973207a65726f2061646472657373000000000000000060448201526064016106ab565b6001600160a01b0381166107605760405162461bcd60e51b815260206004820152601d60248201527f746f6b656e2061646472657373206973207a65726f206164647265737300000060448201526064016106ab565b600280546001600160a01b0393841673ffffffffffffffffffffffffffffffffffffffff19918216179091556003805492909316911617905560006004556101f46005556a084595161401484a0000006006556007805460ff19166001179055565b6107ca61125c565b6105dc811061081b5760405162461bcd60e51b815260206004820152600e60248201527f546f6f20686967682076616c756500000000000000000000000000000000000060448201526064016106ab565b600580549082905560408051828152602081018490527ff033b469dcde9883de2ddbc43cedaa1822d16d33e0f6cc05f4bafd7f0c23030091015b60405180910390a15050565b61086961125c565b600081116108b95760405162461bcd60e51b815260206004820152600c60248201527f5a65726f2074617853776170000000000000000000000000000000000000000060448201526064016106ab565b60068190556040518181527f36f2860396acf3359439343061db48f01944e9a981b085f91adec2921fed79a09060200160405180910390a150565b6108fc61125c565b61090660006112b6565b565b61091061125c565b6127108111156109625760405162461bcd60e51b815260206004820152600c60248201527f4d6178206973203130303030000000000000000000000000000000000000000060448201526064016106ab565b600480549082905560408051828152602081018490527f30509903fd312ceb98221bbdccbef5c72abb85487de2c5053f343438195ded6c9101610855565b6109a861125c565b6001600160a01b0381166109fe5760405162461bcd60e51b815260206004820152600c60248201527f5a65726f2061646472657373000000000000000000000000000000000000000060448201526064016106ab565b600280546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527f430359a6d97ced2b6f93c77a91e7ce9dfd43252eb91e916adba170485cd8a6a49101610855565b610a6d61125c565b6001600160a01b038116610ae95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ab565b610af2816112b6565b50565b610afd61125c565b6001600160a01b038216610b2557600254610b21906001600160a01b03168261113e565b5050565b600254610b21906001600160a01b03848116911683611313565b604080516002808252606082018352600092602083019080368337505060035482519293506001600160a01b031691839150600090610b8057610b80611964565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1691906118c9565b81600181518110610c2957610c29611964565b6001600160a01b039092166020928302919091019091015260405163d06ca61f60e01b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063d06ca61f90610c7d90869086906004016119be565b600060405180830381865afa158015610c9a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610cc291908101906119d7565b90506000606482600181518110610cdb57610cdb611964565b6020026020010151610ced9190611919565b82600181518110610d0057610d00611964565b6020026020010151610d12919061193b565b600354909150610d40906001600160a01b0316737a250d5630b4cf539739df2c5dacb4c659f2488d866113bc565b6040517f791ac947000000000000000000000000000000000000000000000000000000008152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790610d989087908590889030904290600401611a95565b600060405180830381600087803b158015610db257600080fd5b505af1158015610dc6573d6000803e3d6000fd5b5050505050505050565b600354610dfb906001600160a01b0316737a250d5630b4cf539739df2c5dacb4c659f2488d846113bc565b604080516002808252606082018352600092602083019080368337505060035482519293506001600160a01b031691839150600090610e3c57610e3c611964565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed291906118c9565b81600181518110610ee557610ee5611964565b6001600160a01b039092166020928302919091019091015260405163d06ca61f60e01b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063d06ca61f90610f3990879086906004016119be565b600060405180830381865afa158015610f56573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f7e91908101906119d7565b90506000606482600081518110610f9757610f97611964565b6020026020010151610fa99190611919565b82600081518110610fbc57610fbc611964565b6020026020010151610fce919061193b565b90506000606483600181518110610fe757610fe7611964565b6020026020010151610ff99190611919565b8360018151811061100c5761100c611964565b602002602001015161101e919061193b565b6003546002546040517ff305d7190000000000000000000000000000000000000000000000000000000081526001600160a01b039283166004820152602481018a90526044810186905260648101849052911660848201524260a482015290915060009081908190737a250d5630b4cf539739df2c5dacb4c659f2488d9063f305d719908a9060c40160606040518083038185885af11580156110c5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110ea9190611ad1565b604080518481526020810184905290810182905292955090935091507fd7f28048575eead8851d024ead087913957dfb4fd1a02b4d1573f5352a5a2be39060600160405180910390a1505050505050505050565b8047101561118e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106ab565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146111db576040519150601f19603f3d011682016040523d82523d6000602084013e6111e0565b606091505b50509050806112575760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106ab565b505050565b6000546001600160a01b031633146109065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b0383166024820152604481018290526112579084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261150a565b80158061144f57506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144d91906118b0565b155b6114c15760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016106ab565b6040516001600160a01b0383166024820152604481018290526112579084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611358565b600061155f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166115ef9092919063ffffffff16565b805190915015611257578080602001905181019061157d919061188e565b6112575760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016106ab565b60606115fe8484600085611606565b949350505050565b60608247101561167e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016106ab565b600080866001600160a01b0316858760405161169a9190611b23565b60006040518083038185875af1925050503d80600081146116d7576040519150601f19603f3d011682016040523d82523d6000602084013e6116dc565b606091505b50915091506116ed878383876116f8565b979650505050505050565b60608315611767578251600003611760576001600160a01b0385163b6117605760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106ab565b50816115fe565b6115fe838381511561177c5781518083602001fd5b8060405162461bcd60e51b81526004016106ab9190611b3f565b6001600160a01b0381168114610af257600080fd5b6000806000606084860312156117c057600080fd5b83356117cb81611796565b925060208401356117db81611796565b929592945050506040919091013590565b600080604083850312156117ff57600080fd5b823561180a81611796565b9150602083013561181a81611796565b809150509250929050565b60006020828403121561183757600080fd5b5035919050565b60006020828403121561185057600080fd5b813561185b81611796565b9392505050565b6000806040838503121561187557600080fd5b823561188081611796565b946020939093013593505050565b6000602082840312156118a057600080fd5b8151801515811461185b57600080fd5b6000602082840312156118c257600080fd5b5051919050565b6000602082840312156118db57600080fd5b815161185b81611796565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417611913576119136118e6565b92915050565b60008261193657634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115611913576119136118e6565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156119b35781516001600160a01b03168752958201959082019060010161198e565b509495945050505050565b8281526040602082015260006115fe604083018461197a565b600060208083850312156119ea57600080fd5b825167ffffffffffffffff80821115611a0257600080fd5b818501915085601f830112611a1657600080fd5b815181811115611a2857611a2861194e565b8060051b604051601f19603f83011681018181108582111715611a4d57611a4d61194e565b604052918252848201925083810185019188831115611a6b57600080fd5b938501935b82851015611a8957845184529385019392850192611a70565b98975050505050505050565b85815284602082015260a060408201526000611ab460a083018661197a565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215611ae657600080fd5b8351925060208401519150604084015190509250925092565b60005b83811015611b1a578181015183820152602001611b02565b50506000910152565b60008251611b35818460208701611aff565b9190910192915050565b6020815260008251806020840152611b5e816040850160208701611aff565b601f01601f1916919091016040019291505056fea264697066735822122089dfdb49184f7ec0076241dd44897ef801193b4bac977937df92bbd649986a4964736f6c634300081200330000000000000000000000002747f8ef90dfa11e33fbc14a246bbd108ca68118
Deployed Bytecode
0x6080604052600436106100f75760003560e01c8063a82ed9ec1161008a578063f0f4426011610059578063f0f4426014610297578063f2fde38b146102b7578063f3fef3a3146102d7578063fc0c546a146102f757600080fd5b8063a82ed9ec14610215578063b7bd08481461023d578063dc4c90d314610261578063dc8f7fa51461028157600080fd5b80636278d5ed116100c65780636278d5ed146101a2578063715018a6146101c25780637a81085c146101d75780638da5cb5b146101f757600080fd5b80631031387014610103578063485cc955146101255780634a27affb1461014557806361d027b31461016557600080fd5b366100fe57005b600080fd5b34801561010f57600080fd5b5061012361011e3660046117ab565b610317565b005b34801561013157600080fd5b506101236101403660046117ec565b610654565b34801561015157600080fd5b50610123610160366004611825565b6107c2565b34801561017157600080fd5b50600254610185906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101ae57600080fd5b506101236101bd366004611825565b610861565b3480156101ce57600080fd5b506101236108f4565b3480156101e357600080fd5b506101236101f2366004611825565b610908565b34801561020357600080fd5b506000546001600160a01b0316610185565b34801561022157600080fd5b50610185737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561024957600080fd5b5061025360055481565b604051908152602001610199565b34801561026d57600080fd5b50600154610185906001600160a01b031681565b34801561028d57600080fd5b5061025360045481565b3480156102a357600080fd5b506101236102b236600461183e565b6109a0565b3480156102c357600080fd5b506101236102d236600461183e565b610a65565b3480156102e357600080fd5b506101236102f2366004611862565b610af5565b34801561030357600080fd5b50600354610185906001600160a01b031681565b60075460ff16158061033057506001600160a01b038316155b1561033a57505050565b6001546040517f2842d7570000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015290911690632842d75790602401602060405180830381865afa15801561039d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c1919061188e565b6103ca57505050565b6003546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561042c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045091906118b0565b905060065481111561064e57600354600154604080517f9be3d69c00000000000000000000000000000000000000000000000000000000815290516000936001600160a01b03908116936370a0823193911691639be3d69c916004808201926020929091908290030181865afa1580156104ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f291906118c9565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561054e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057291906118b0565b905060006127106005548361058791906118fc565b6105919190611919565b905083600654116105a4576006546105a6565b835b9250808311156105b4578092505b6000614e20600454856105c791906118fc565b6105d19190611919565b905060006105df828661193b565b9050476105eb82610b3f565b60006105f7824761193b565b905060006127106004548361060c91906118fc565b6106169190611919565b90508415610628576106288582610dd0565b47801561064557600254610645906001600160a01b03168261113e565b50505050505050505b50505050565b61065c61125c565b60075460ff16156106b45760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a65640000000000000000000000000060448201526064015b60405180910390fd5b6001600160a01b03821661070a5760405162461bcd60e51b815260206004820152601860248201527f7472656173757279206973207a65726f2061646472657373000000000000000060448201526064016106ab565b6001600160a01b0381166107605760405162461bcd60e51b815260206004820152601d60248201527f746f6b656e2061646472657373206973207a65726f206164647265737300000060448201526064016106ab565b600280546001600160a01b0393841673ffffffffffffffffffffffffffffffffffffffff19918216179091556003805492909316911617905560006004556101f46005556a084595161401484a0000006006556007805460ff19166001179055565b6107ca61125c565b6105dc811061081b5760405162461bcd60e51b815260206004820152600e60248201527f546f6f20686967682076616c756500000000000000000000000000000000000060448201526064016106ab565b600580549082905560408051828152602081018490527ff033b469dcde9883de2ddbc43cedaa1822d16d33e0f6cc05f4bafd7f0c23030091015b60405180910390a15050565b61086961125c565b600081116108b95760405162461bcd60e51b815260206004820152600c60248201527f5a65726f2074617853776170000000000000000000000000000000000000000060448201526064016106ab565b60068190556040518181527f36f2860396acf3359439343061db48f01944e9a981b085f91adec2921fed79a09060200160405180910390a150565b6108fc61125c565b61090660006112b6565b565b61091061125c565b6127108111156109625760405162461bcd60e51b815260206004820152600c60248201527f4d6178206973203130303030000000000000000000000000000000000000000060448201526064016106ab565b600480549082905560408051828152602081018490527f30509903fd312ceb98221bbdccbef5c72abb85487de2c5053f343438195ded6c9101610855565b6109a861125c565b6001600160a01b0381166109fe5760405162461bcd60e51b815260206004820152600c60248201527f5a65726f2061646472657373000000000000000000000000000000000000000060448201526064016106ab565b600280546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527f430359a6d97ced2b6f93c77a91e7ce9dfd43252eb91e916adba170485cd8a6a49101610855565b610a6d61125c565b6001600160a01b038116610ae95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ab565b610af2816112b6565b50565b610afd61125c565b6001600160a01b038216610b2557600254610b21906001600160a01b03168261113e565b5050565b600254610b21906001600160a01b03848116911683611313565b604080516002808252606082018352600092602083019080368337505060035482519293506001600160a01b031691839150600090610b8057610b80611964565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1691906118c9565b81600181518110610c2957610c29611964565b6001600160a01b039092166020928302919091019091015260405163d06ca61f60e01b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063d06ca61f90610c7d90869086906004016119be565b600060405180830381865afa158015610c9a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610cc291908101906119d7565b90506000606482600181518110610cdb57610cdb611964565b6020026020010151610ced9190611919565b82600181518110610d0057610d00611964565b6020026020010151610d12919061193b565b600354909150610d40906001600160a01b0316737a250d5630b4cf539739df2c5dacb4c659f2488d866113bc565b6040517f791ac947000000000000000000000000000000000000000000000000000000008152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790610d989087908590889030904290600401611a95565b600060405180830381600087803b158015610db257600080fd5b505af1158015610dc6573d6000803e3d6000fd5b5050505050505050565b600354610dfb906001600160a01b0316737a250d5630b4cf539739df2c5dacb4c659f2488d846113bc565b604080516002808252606082018352600092602083019080368337505060035482519293506001600160a01b031691839150600090610e3c57610e3c611964565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed291906118c9565b81600181518110610ee557610ee5611964565b6001600160a01b039092166020928302919091019091015260405163d06ca61f60e01b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063d06ca61f90610f3990879086906004016119be565b600060405180830381865afa158015610f56573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f7e91908101906119d7565b90506000606482600081518110610f9757610f97611964565b6020026020010151610fa99190611919565b82600081518110610fbc57610fbc611964565b6020026020010151610fce919061193b565b90506000606483600181518110610fe757610fe7611964565b6020026020010151610ff99190611919565b8360018151811061100c5761100c611964565b602002602001015161101e919061193b565b6003546002546040517ff305d7190000000000000000000000000000000000000000000000000000000081526001600160a01b039283166004820152602481018a90526044810186905260648101849052911660848201524260a482015290915060009081908190737a250d5630b4cf539739df2c5dacb4c659f2488d9063f305d719908a9060c40160606040518083038185885af11580156110c5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110ea9190611ad1565b604080518481526020810184905290810182905292955090935091507fd7f28048575eead8851d024ead087913957dfb4fd1a02b4d1573f5352a5a2be39060600160405180910390a1505050505050505050565b8047101561118e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106ab565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146111db576040519150601f19603f3d011682016040523d82523d6000602084013e6111e0565b606091505b50509050806112575760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106ab565b505050565b6000546001600160a01b031633146109065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b0383166024820152604481018290526112579084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261150a565b80158061144f57506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144d91906118b0565b155b6114c15760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016106ab565b6040516001600160a01b0383166024820152604481018290526112579084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611358565b600061155f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166115ef9092919063ffffffff16565b805190915015611257578080602001905181019061157d919061188e565b6112575760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016106ab565b60606115fe8484600085611606565b949350505050565b60608247101561167e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016106ab565b600080866001600160a01b0316858760405161169a9190611b23565b60006040518083038185875af1925050503d80600081146116d7576040519150601f19603f3d011682016040523d82523d6000602084013e6116dc565b606091505b50915091506116ed878383876116f8565b979650505050505050565b60608315611767578251600003611760576001600160a01b0385163b6117605760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106ab565b50816115fe565b6115fe838381511561177c5781518083602001fd5b8060405162461bcd60e51b81526004016106ab9190611b3f565b6001600160a01b0381168114610af257600080fd5b6000806000606084860312156117c057600080fd5b83356117cb81611796565b925060208401356117db81611796565b929592945050506040919091013590565b600080604083850312156117ff57600080fd5b823561180a81611796565b9150602083013561181a81611796565b809150509250929050565b60006020828403121561183757600080fd5b5035919050565b60006020828403121561185057600080fd5b813561185b81611796565b9392505050565b6000806040838503121561187557600080fd5b823561188081611796565b946020939093013593505050565b6000602082840312156118a057600080fd5b8151801515811461185b57600080fd5b6000602082840312156118c257600080fd5b5051919050565b6000602082840312156118db57600080fd5b815161185b81611796565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417611913576119136118e6565b92915050565b60008261193657634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115611913576119136118e6565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156119b35781516001600160a01b03168752958201959082019060010161198e565b509495945050505050565b8281526040602082015260006115fe604083018461197a565b600060208083850312156119ea57600080fd5b825167ffffffffffffffff80821115611a0257600080fd5b818501915085601f830112611a1657600080fd5b815181811115611a2857611a2861194e565b8060051b604051601f19603f83011681018181108582111715611a4d57611a4d61194e565b604052918252848201925083810185019188831115611a6b57600080fd5b938501935b82851015611a8957845184529385019392850192611a70565b98975050505050505050565b85815284602082015260a060408201526000611ab460a083018661197a565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215611ae657600080fd5b8351925060208401519150604084015190509250925092565b60005b83811015611b1a578181015183820152602001611b02565b50506000910152565b60008251611b35818460208701611aff565b9190910192915050565b6020815260008251806020840152611b5e816040850160208701611aff565b601f01601f1916919091016040019291505056fea264697066735822122089dfdb49184f7ec0076241dd44897ef801193b4bac977937df92bbd649986a4964736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002747f8ef90dfa11e33fbc14a246bbd108ca68118
-----Decoded View---------------
Arg [0] : _poolManager (address): 0x2747F8Ef90DFa11e33FBc14A246bbd108Ca68118
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002747f8ef90dfa11e33fbc14a246bbd108ca68118
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.000861 | 9,175,234.006 | $7,896.39 |
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.