Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 201 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Rewards | 18187548 | 2 days ago | IN | 0 ETH | 0.00000021 | ||||
Claim Rewards | 18057876 | 5 days ago | IN | 0 ETH | 0.00000008 | ||||
Claim Rewards | 17931747 | 8 days ago | IN | 0 ETH | 0.00000032 | ||||
Claim Rewards | 17857280 | 10 days ago | IN | 0 ETH | 0.00000109 | ||||
Claim Rewards | 17820582 | 11 days ago | IN | 0 ETH | 0.00000033 | ||||
Claim Rewards | 17725671 | 13 days ago | IN | 0 ETH | 0.00000011 | ||||
Claim Rewards | 17718406 | 13 days ago | IN | 0 ETH | 0.00000004 | ||||
Claim Rewards | 17700566 | 13 days ago | IN | 0 ETH | 0.00000034 | ||||
Claim Rewards | 17688392 | 14 days ago | IN | 0 ETH | 0.00000027 | ||||
Claim Rewards | 17684861 | 14 days ago | IN | 0 ETH | 0.0000004 | ||||
Claim Rewards | 17675003 | 14 days ago | IN | 0 ETH | 0.00000012 | ||||
Claim Rewards | 17656016 | 14 days ago | IN | 0 ETH | 0.00000008 | ||||
Claim Rewards | 17647560 | 15 days ago | IN | 0 ETH | 0 | ||||
Claim Rewards | 17631507 | 15 days ago | IN | 0 ETH | 0 | ||||
Claim Rewards | 17612429 | 15 days ago | IN | 0 ETH | 0.00000002 | ||||
Claim Rewards | 17600089 | 16 days ago | IN | 0 ETH | 0.00000211 | ||||
Claim Rewards | 17586039 | 16 days ago | IN | 0 ETH | 0.00000177 | ||||
Claim Rewards | 17569548 | 16 days ago | IN | 0 ETH | 0 | ||||
Claim Rewards | 17558943 | 17 days ago | IN | 0 ETH | 0 | ||||
Claim Rewards | 17544079 | 17 days ago | IN | 0 ETH | 0 | ||||
Claim Rewards | 17526139 | 17 days ago | IN | 0 ETH | 0.00000005 | ||||
Claim Rewards | 17513208 | 18 days ago | IN | 0 ETH | 0.00000173 | ||||
Claim Rewards | 17482775 | 18 days ago | IN | 0 ETH | 0.00000038 | ||||
Claim Rewards | 17388209 | 21 days ago | IN | 0 ETH | 0.00000003 | ||||
Claim Rewards | 17383970 | 21 days ago | IN | 0 ETH | 0.00000004 |
Loading...
Loading
Contract Name:
AuraClaimZapV3
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol"; import { AuraMath } from "../utils/AuraMath.sol"; import { ICrvDepositor } from "../interfaces/ICrvDepositor.sol"; import { IAuraLocker } from "../interfaces/IAuraLocker.sol"; import { IRewardStaking } from "../interfaces/IRewardStaking.sol"; import { IRewardPool4626 } from "../interfaces/IRewardPool4626.sol"; /** * @title ClaimZap * @author ConvexFinance -> AuraFinance * @notice Claim zap to bundle various reward claims * @dev Claims from all pools, and stakes cvxCrv and CVX if wanted. * v2: * - change exchange to use curve pool * - add getReward(address,token) type * - add option to lock cvx * - add option use all funds in wallet * v3: * - add option to deposit to compounder * - reduce calls to cvxcrv rewards/compounder * - removed enum and option bitshifting * - introduced options struct * - gas optimisation on use all funds balances * - helper functions to reduce code repetition */ contract AuraClaimZapV3 { using SafeERC20 for IERC20; using AuraMath for uint256; address public immutable crv; address public immutable cvx; address public immutable cvxCrv; address public immutable crvDepositor; address public immutable cvxCrvRewards; address public immutable locker; address public immutable owner; address public immutable compounder; /** * @dev Claim rewards amounts. * - depositCrvMaxAmount The max amount of CRV to deposit if converting to crvCvx * - minAmountOut The min amount out for crv:cvxCrv swaps if swapping. Set this to zero if you * want to use CrvDepositor instead of balancer swap * - depositCvxMaxAmount The max amount of CVX to deposit if locking CVX * - depositCvxCrvMaxAmount The max amount of CVXCVR to stake. */ struct ClaimRewardsAmounts { uint256 depositCrvMaxAmount; uint256 minAmountOut; uint256 depositCvxMaxAmount; uint256 depositCvxCrvMaxAmount; } /** * @dev options. * - claimCvxCrv Flag: claim from the cvxCrv rewards contract * - claimLockedCvx Flag: claim from the cvx locker contract * - lockCvxCrv Flag: pull users cvxCrvBalance ready for locking * - lockCrvDeposit Flag: locks crv rewards as cvxCrv * - useAllWalletFunds Flag: lock rewards and existing balance * - useCompounder Flag: deposit cvxCrv into autocompounder * - lockCvx Flag: lock cvx rewards in locker */ struct Options { bool claimCvxCrv; bool claimLockedCvx; bool lockCvxCrv; bool lockCrvDeposit; bool useAllWalletFunds; bool useCompounder; bool lockCvx; } /** * @param _crv CRV token (0xD533a949740bb3306d119CC777fa900bA034cd52); * @param _cvx CVX token (0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B); * @param _cvxCrv cvxCRV token (0x62B9c7356A2Dc64a1969e19C23e4f579F9810Aa7); * @param _crvDepositor crvDepositor; * @param _cvxCrvRewards cvxCrvRewards (0x3Fe65692bfCD0e6CF84cB1E7d24108E434A7587e); * @param _locker vlCVX (0xD18140b4B819b895A3dba5442F959fA44994AF50); * @param _compounder cvxCrv autocompounder vault */ constructor( address _crv, address _cvx, address _cvxCrv, address _crvDepositor, address _cvxCrvRewards, address _locker, address _compounder ) { crv = _crv; cvx = _cvx; cvxCrv = _cvxCrv; crvDepositor = _crvDepositor; cvxCrvRewards = _cvxCrvRewards; locker = _locker; owner = msg.sender; compounder = _compounder; } /** * @notice Returns meta data of contract. */ function getName() external pure returns (string memory) { return "ClaimZap V3.0"; } /** * @notice Approve spending of: * crv -> crvDepositor * cvxCrv -> cvxCrvRewards * cvxCrv -> Compounder * cvx -> Locker */ function setApprovals() external { require(msg.sender == owner, "!auth"); _approveToken(crv, crvDepositor); _approveToken(cvxCrv, cvxCrvRewards); _approveToken(cvxCrv, compounder); _approveToken(cvx, locker); } /** * @notice Allows a spender to spend a token * @param _token Token that will be spend * @param _spender Address that will be spending */ function _approveToken(address _token, address _spender) internal { IERC20(_token).safeApprove(address(_spender), 0); IERC20(_token).safeApprove(address(_spender), type(uint256).max); } /** * @notice Claim all the rewards * @param rewardContracts Array of addresses for LP token rewards * @param extraRewardContracts Array of addresses for extra rewards * @param tokenRewardContracts Array of addresses for token rewards e.g vlCvxExtraRewardDistribution * @param tokenRewardTokens Array of token reward addresses to use with tokenRewardContracts * @param amounts Claim rewards amounts. * @param options Claim options */ function claimRewards( address[] calldata rewardContracts, address[] calldata extraRewardContracts, address[] calldata tokenRewardContracts, address[] calldata tokenRewardTokens, ClaimRewardsAmounts calldata amounts, Options calldata options ) external { require(tokenRewardContracts.length == tokenRewardTokens.length, "!parity"); //Read balances prior to reward claims only if required uint256 crvBalance; uint256 cvxBalance; uint256 cvxCrvBalance; if (!options.useAllWalletFunds && _callRelockRewards(options)) { crvBalance = IERC20(crv).balanceOf(msg.sender); cvxBalance = IERC20(cvx).balanceOf(msg.sender); cvxCrvBalance = IERC20(cvxCrv).balanceOf(msg.sender); } //claim from main curve LP pools for (uint256 i = 0; i < rewardContracts.length; i++) { IRewardStaking(rewardContracts[i]).getReward(msg.sender, true); } //claim from extra rewards for (uint256 i = 0; i < extraRewardContracts.length; i++) { IRewardStaking(extraRewardContracts[i]).getReward(msg.sender); } //claim from multi reward token contract for (uint256 i = 0; i < tokenRewardContracts.length; i++) { IRewardStaking(tokenRewardContracts[i]).getReward(msg.sender, tokenRewardTokens[i]); } //claim from locker if (options.claimLockedCvx) { IAuraLocker(locker).getReward(msg.sender); } // deposit/lock/stake if (_callRelockRewards(options)) { _relockRewards(crvBalance, cvxBalance, cvxCrvBalance, amounts, options); } } /** * @notice returns a bool if relocking of rewards should occur * @param options Claim options */ function _callRelockRewards(Options calldata options) internal pure returns (bool) { return (options.lockCvxCrv || options.lockCrvDeposit || options.useCompounder || options.lockCvx); } /** * @notice Claim additional rewards from: * - cvxCrvRewards * - cvxLocker * @param removeCrvBalance crvBalance to ignore and not redeposit (starting Crv balance) * @param removeCvxBalance cvxBalance to ignore and not redeposit (starting Cvx balance) * @param removeCvxCrvBalance cvxcrvBalance to ignore and not redeposit (starting CvxCrv balance) * @param amounts Claim rewards amoutns. * @param options see claimRewards */ // prettier-ignore function _relockRewards( // solhint-disable-line uint256 removeCrvBalance, uint256 removeCvxBalance, uint256 removeCvxCrvBalance, ClaimRewardsAmounts calldata amounts, Options calldata options ) internal { //lock upto given amount of crv as cvxCrv if (amounts.depositCrvMaxAmount > 0) { (uint256 crvBalance, bool continued) = _checkBalanceAndPullToken( crv, removeCrvBalance, amounts.depositCrvMaxAmount ); if (continued) {ICrvDepositor(crvDepositor).depositFor( msg.sender, crvBalance, options.lockCrvDeposit, address(0) );} } //Pull cvxCrv to contract if user wants to stake if (options.lockCvxCrv) { _checkBalanceAndPullToken(cvxCrv, removeCvxCrvBalance, amounts.depositCvxCrvMaxAmount); } //Locks CvxCrv balance held on contract //deposit in the autocompounder if flag is set, or stake in rewards contract if not set uint256 cvxCrvBalanceToLock = IERC20(cvxCrv).balanceOf(address(this)); if(cvxCrvBalanceToLock > 0){ if(options.useCompounder) { IRewardPool4626(compounder).deposit(cvxCrvBalanceToLock, msg.sender); } else{ IRewardStaking(cvxCrvRewards).stakeFor(msg.sender, cvxCrvBalanceToLock); } } //stake up to given amount of cvx if (options.lockCvx) { (uint256 cvxBalance, bool continued) = _checkBalanceAndPullToken( cvx, removeCvxBalance, amounts.depositCvxMaxAmount ); if(continued){IAuraLocker(locker).lock(msg.sender, cvxBalance);} } } /** * @notice Calculates the amount of a token to pull in, if this is above 0 then pulls token * @param _token the token to evaluate and pull * @param _removeAmount quantity of token to ignore and not redeposit (ie starting balance) * @param _maxAmount the maximum amount of a token */ // prettier-ignore function _checkBalanceAndPullToken( address _token, uint256 _removeAmount, uint256 _maxAmount ) internal returns (uint256 _balance, bool continued) { _balance = IERC20(_token).balanceOf(msg.sender).sub(_removeAmount); _balance = AuraMath.min(_balance, _maxAmount); if (_balance > 0) { IERC20(_token).safeTransferFrom(msg.sender, address(this), _balance); continued = true; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12; interface IAuraLocker { function isShutdown() external view returns (bool); function lock(address _account, uint256 _amount) external; function checkpointEpoch() external; function epochCount() external view returns (uint256); function balanceAtEpochOf(uint256 _epoch, address _user) external view returns (uint256 amount); function totalSupplyAtEpoch(uint256 _epoch) external view returns (uint256 supply); function queueNewRewards(address _rewardsToken, uint256 reward) external; function getReward(address _account, bool _stake) external; function getReward(address _account) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; interface ICrvDepositor { function depositFor( address to, uint256 _amount, bool _lock, address _stakeAddress ) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; interface IRewardPool4626 { function withdraw( uint256 assets, address receiver, address owner ) external returns (uint256 shares); function deposit(uint256 assets, address receiver) external returns (uint256 shares); function asset() external view returns (address); function balanceOf(address account) external view returns (uint256); function processIdleRewards() external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; interface IRewardStaking { function getReward(address _account, bool _claimExtras) external; function getReward(address _account) external; function getReward(address _account, address _token) external; function stakeFor(address, uint256) external; function processIdleRewards() external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; /// @notice A library for performing overflow-/underflow-safe math, /// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math). library AuraMath { /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute. return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } function to224(uint256 a) internal pure returns (uint224 c) { require(a <= type(uint224).max, "AuraMath: uint224 Overflow"); c = uint224(a); } function to128(uint256 a) internal pure returns (uint128 c) { require(a <= type(uint128).max, "AuraMath: uint128 Overflow"); c = uint128(a); } function to112(uint256 a) internal pure returns (uint112 c) { require(a <= type(uint112).max, "AuraMath: uint112 Overflow"); c = uint112(a); } function to96(uint256 a) internal pure returns (uint96 c) { require(a <= type(uint96).max, "AuraMath: uint96 Overflow"); c = uint96(a); } function to32(uint256 a) internal pure returns (uint32 c) { require(a <= type(uint32).max, "AuraMath: uint32 Overflow"); c = uint32(a); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32. library AuraMath32 { function sub(uint32 a, uint32 b) internal pure returns (uint32 c) { c = a - b; } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint112. library AuraMath112 { function add(uint112 a, uint112 b) internal pure returns (uint112 c) { c = a + b; } function sub(uint112 a, uint112 b) internal pure returns (uint112 c) { c = a - b; } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint224. library AuraMath224 { function add(uint224 a, uint224 b) internal pure returns (uint224 c) { c = a + b; } }
{ "metadata": { "bytecodeHash": "none" }, "optimizer": { "enabled": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_crv","type":"address"},{"internalType":"address","name":"_cvx","type":"address"},{"internalType":"address","name":"_cvxCrv","type":"address"},{"internalType":"address","name":"_crvDepositor","type":"address"},{"internalType":"address","name":"_cvxCrvRewards","type":"address"},{"internalType":"address","name":"_locker","type":"address"},{"internalType":"address","name":"_compounder","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address[]","name":"rewardContracts","type":"address[]"},{"internalType":"address[]","name":"extraRewardContracts","type":"address[]"},{"internalType":"address[]","name":"tokenRewardContracts","type":"address[]"},{"internalType":"address[]","name":"tokenRewardTokens","type":"address[]"},{"components":[{"internalType":"uint256","name":"depositCrvMaxAmount","type":"uint256"},{"internalType":"uint256","name":"minAmountOut","type":"uint256"},{"internalType":"uint256","name":"depositCvxMaxAmount","type":"uint256"},{"internalType":"uint256","name":"depositCvxCrvMaxAmount","type":"uint256"}],"internalType":"struct AuraClaimZapV3.ClaimRewardsAmounts","name":"amounts","type":"tuple"},{"components":[{"internalType":"bool","name":"claimCvxCrv","type":"bool"},{"internalType":"bool","name":"claimLockedCvx","type":"bool"},{"internalType":"bool","name":"lockCvxCrv","type":"bool"},{"internalType":"bool","name":"lockCrvDeposit","type":"bool"},{"internalType":"bool","name":"useAllWalletFunds","type":"bool"},{"internalType":"bool","name":"useCompounder","type":"bool"},{"internalType":"bool","name":"lockCvx","type":"bool"}],"internalType":"struct AuraClaimZapV3.Options","name":"options","type":"tuple"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compounder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crv","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crvDepositor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvx","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvxCrv","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvxCrvRewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"locker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101806040523480156200001257600080fd5b50604051620017633803806200176383398101604081905262000035916200008e565b6001600160a01b0396871660805294861660a05292851660c05290841660e0528316610100528216610120523361014052166101605262000123565b80516001600160a01b03811681146200008957600080fd5b919050565b600080600080600080600060e0888a031215620000aa57600080fd5b620000b58862000071565b9650620000c56020890162000071565b9550620000d56040890162000071565b9450620000e56060890162000071565b9350620000f56080890162000071565b92506200010560a0890162000071565b91506200011560c0890162000071565b905092959891949750929550565b60805160a05160c05160e051610100516101205161014051610160516115476200021c60003960008181610261015281816103ba0152610baa0152600081816101b2015261028e01526000818161023a01528181610404015281816108930152610d13015260008181610200015281816103700152610c4101526000818161011b0152818161032601526109f50152600081816101810152818161034f01528181610399015281816105ce01528181610ab90152610afe0152600081816101d9015281816103e3015281816105430152610cc301526000818161015a01528181610305015281816104b801526109ba01526115476000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80638da5cb5b11610081578063d34640b21161005b578063d34640b214610222578063d7b96d4e14610235578063fa2cc3c01461025c57600080fd5b80638da5cb5b146101ad578063923c1d61146101d4578063a7404b70146101fb57600080fd5b80636a4874a1116100b25780636a4874a11461015557806382480df91461017c5780638757b15b146101a357600080fd5b806317d7de7c146100ce57806355f4f1b914610116575b600080fd5b604080518082018252600d81527f436c61696d5a61702056332e30000000000000000000000000000000000000006020820152905161010d91906112a1565b60405180910390f35b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161010d565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b6101ab610283565b005b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b6101ab61023036600461134a565b61042a565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103005760405162461bcd60e51b815260206004820152600560248201527f216175746800000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b61034a7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610922565b6103947f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610922565b6103de7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610922565b6104287f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610922565b565b8483146104795760405162461bcd60e51b815260206004820152600760248201527f217061726974790000000000000000000000000000000000000000000000000060448201526064016102f7565b6000808061048d60a0850160808601611444565b15801561049e575061049e84610951565b15610644576040516370a0823160e01b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610507573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052b9190611461565b6040516370a0823160e01b81523360048201529093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b69190611461565b6040516370a0823160e01b81523360048201529092507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561061d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106419190611461565b90505b60005b8c8110156106eb578d8d828181106106615761066161147a565b90506020020160208101906106769190611490565b604051637050ccd960e01b8152336004820152600160248201526001600160a01b039190911690637050ccd990604401600060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b5050505080806106e3906114cf565b915050610647565b5060005b8a81101561078c578b8b828181106107095761070961147a565b905060200201602081019061071e9190611490565b604051630c00007b60e41b81523360048201526001600160a01b03919091169063c00007b090602401600060405180830381600087803b15801561076157600080fd5b505af1158015610775573d6000803e3d6000fd5b505050508080610784906114cf565b9150506106ef565b5060005b88811015610868578989828181106107aa576107aa61147a565b90506020020160208101906107bf9190611490565b6001600160a01b0316636b091695338a8a858181106107e0576107e061147a565b90506020020160208101906107f59190611490565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401600060405180830381600087803b15801561083d57600080fd5b505af1158015610851573d6000803e3d6000fd5b505050508080610860906114cf565b915050610790565b506108796040850160208601611444565b156108f857604051630c00007b60e41b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063c00007b090602401600060405180830381600087803b1580156108df57600080fd5b505af11580156108f3573d6000803e3d6000fd5b505050505b61090184610951565b156109135761091383838388886109ab565b50505050505050505050505050565b6109376001600160a01b038316826000610d83565b61094d6001600160a01b03831682600019610d83565b5050565b60006109636060830160408401611444565b8061097957506109796080830160608401611444565b8061098f575061098f60c0830160a08401611444565b806109a557506109a560e0830160c08401611444565b92915050565b813515610a9f576000806109e17f0000000000000000000000000000000000000000000000000000000000000000888635610eec565b915091508015610a9c576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631e97b6e93384610a2c6080880160608901611444565b6040516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091521515604482015260006064820152608401600060405180830381600087803b158015610a8357600080fd5b505af1158015610a97573d6000803e3d6000fd5b505050505b50505b610aaf6060820160408301611444565b15610ae657610ae37f0000000000000000000000000000000000000000000000000000000000000000848460600135610eec565b50505b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610b4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b719190611461565b90508015610ca657610b8960c0830160a08401611444565b15610c2557604051636e553f6560e01b8152600481018290523360248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636e553f65906044016020604051808303816000875af1158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f9190611461565b50610ca6565b6040516305dc812160e31b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632ee4090890604401600060405180830381600087803b158015610c8d57600080fd5b505af1158015610ca1573d6000803e3d6000fd5b505050505b610cb660e0830160c08401611444565b15610d7b57600080610ced7f0000000000000000000000000000000000000000000000000000000000000000888760400135610eec565b915091508015610d785760405163282d3fdf60e01b8152336004820152602481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063282d3fdf90604401600060405180830381600087803b158015610d5f57600080fd5b505af1158015610d73573d6000803e3d6000fd5b505050505b50505b505050505050565b801580610dfd5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfb9190611461565b155b610e6f5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016102f7565b6040516001600160a01b038316602482015260448101829052610ee790849063095ea7b360e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152610f9a565b505050565b6040516370a0823160e01b81523360048201526000908190610f659085906001600160a01b038816906370a0823190602401602060405180830381865afa158015610f3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5f9190611461565b9061107f565b9150610f718284611092565b91508115610f9257610f8e6001600160a01b0386163330856110a8565b5060015b935093915050565b6000610fef826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110e69092919063ffffffff16565b805190915015610ee7578080602001905181019061100d91906114ea565b610ee75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102f7565b600061108b8284611507565b9392505050565b60008183106110a1578161108b565b5090919050565b6040516001600160a01b03808516602483015283166044820152606481018290526110e09085906323b872dd60e01b90608401610e9b565b50505050565b60606110f584846000856110fd565b949350505050565b6060824710156111755760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102f7565b843b6111c35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102f7565b600080866001600160a01b031685876040516111df919061151e565b60006040518083038185875af1925050503d806000811461121c576040519150601f19603f3d011682016040523d82523d6000602084013e611221565b606091505b509150915061123182828661123c565b979650505050505050565b6060831561124b57508161108b565b82511561125b5782518084602001fd5b8160405162461bcd60e51b81526004016102f791906112a1565b60005b83811015611290578181015183820152602001611278565b838111156110e05750506000910152565b60208152600082518060208401526112c0816040850160208701611275565b601f01601f19169190910160400192915050565b60008083601f8401126112e657600080fd5b50813567ffffffffffffffff8111156112fe57600080fd5b6020830191508360208260051b850101111561131957600080fd5b9250929050565b60006080828403121561133257600080fd5b50919050565b600060e0828403121561133257600080fd5b6000806000806000806000806000806101e08b8d03121561136a57600080fd5b8a3567ffffffffffffffff8082111561138257600080fd5b61138e8e838f016112d4565b909c509a5060208d01359150808211156113a757600080fd5b6113b38e838f016112d4565b909a50985060408d01359150808211156113cc57600080fd5b6113d88e838f016112d4565b909850965060608d01359150808211156113f157600080fd5b506113fe8d828e016112d4565b909550935061141290508c60808d01611320565b91506114228c6101008d01611338565b90509295989b9194979a5092959850565b801515811461144157600080fd5b50565b60006020828403121561145657600080fd5b813561108b81611433565b60006020828403121561147357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114a257600080fd5b81356001600160a01b038116811461108b57600080fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156114e3576114e36114b9565b5060010190565b6000602082840312156114fc57600080fd5b815161108b81611433565b600082821015611519576115196114b9565b500390565b60008251611530818460208701611275565b919091019291505056fea164736f6c634300080b000a000000000000000000000000e36072dd051ce26261bf50cd966311cab62c596e000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec7900000000000000000000000009af27cfbe0bc537dbc47fc314934353dad7b8919000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c95760003560e01c80638da5cb5b11610081578063d34640b21161005b578063d34640b214610222578063d7b96d4e14610235578063fa2cc3c01461025c57600080fd5b80638da5cb5b146101ad578063923c1d61146101d4578063a7404b70146101fb57600080fd5b80636a4874a1116100b25780636a4874a11461015557806382480df91461017c5780638757b15b146101a357600080fd5b806317d7de7c146100ce57806355f4f1b914610116575b600080fd5b604080518082018252600d81527f436c61696d5a61702056332e30000000000000000000000000000000000000006020820152905161010d91906112a1565b60405180910390f35b61013d7f0000000000000000000000009af27cfbe0bc537dbc47fc314934353dad7b891981565b6040516001600160a01b03909116815260200161010d565b61013d7f000000000000000000000000e36072dd051ce26261bf50cd966311cab62c596e81565b61013d7f000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec79081565b6101ab610283565b005b61013d7f000000000000000000000000197970ea89f2c9e82a9c80b1f3de899b7261ce4b81565b61013d7f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd3181565b61013d7f000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd781565b6101ab61023036600461134a565b61042a565b61013d7f000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e81565b61013d7f000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd781565b336001600160a01b037f000000000000000000000000197970ea89f2c9e82a9c80b1f3de899b7261ce4b16146103005760405162461bcd60e51b815260206004820152600560248201527f216175746800000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b61034a7f000000000000000000000000e36072dd051ce26261bf50cd966311cab62c596e7f0000000000000000000000009af27cfbe0bc537dbc47fc314934353dad7b8919610922565b6103947f000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec7907f000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7610922565b6103de7f000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec7907f000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7610922565b6104287f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd317f000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e610922565b565b8483146104795760405162461bcd60e51b815260206004820152600760248201527f217061726974790000000000000000000000000000000000000000000000000060448201526064016102f7565b6000808061048d60a0850160808601611444565b15801561049e575061049e84610951565b15610644576040516370a0823160e01b81523360048201527f000000000000000000000000e36072dd051ce26261bf50cd966311cab62c596e6001600160a01b0316906370a0823190602401602060405180830381865afa158015610507573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052b9190611461565b6040516370a0823160e01b81523360048201529093507f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd316001600160a01b0316906370a0823190602401602060405180830381865afa158015610592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b69190611461565b6040516370a0823160e01b81523360048201529092507f000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec7906001600160a01b0316906370a0823190602401602060405180830381865afa15801561061d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106419190611461565b90505b60005b8c8110156106eb578d8d828181106106615761066161147a565b90506020020160208101906106769190611490565b604051637050ccd960e01b8152336004820152600160248201526001600160a01b039190911690637050ccd990604401600060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b5050505080806106e3906114cf565b915050610647565b5060005b8a81101561078c578b8b828181106107095761070961147a565b905060200201602081019061071e9190611490565b604051630c00007b60e41b81523360048201526001600160a01b03919091169063c00007b090602401600060405180830381600087803b15801561076157600080fd5b505af1158015610775573d6000803e3d6000fd5b505050508080610784906114cf565b9150506106ef565b5060005b88811015610868578989828181106107aa576107aa61147a565b90506020020160208101906107bf9190611490565b6001600160a01b0316636b091695338a8a858181106107e0576107e061147a565b90506020020160208101906107f59190611490565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401600060405180830381600087803b15801561083d57600080fd5b505af1158015610851573d6000803e3d6000fd5b505050508080610860906114cf565b915050610790565b506108796040850160208601611444565b156108f857604051630c00007b60e41b81523360048201527f000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e6001600160a01b03169063c00007b090602401600060405180830381600087803b1580156108df57600080fd5b505af11580156108f3573d6000803e3d6000fd5b505050505b61090184610951565b156109135761091383838388886109ab565b50505050505050505050505050565b6109376001600160a01b038316826000610d83565b61094d6001600160a01b03831682600019610d83565b5050565b60006109636060830160408401611444565b8061097957506109796080830160608401611444565b8061098f575061098f60c0830160a08401611444565b806109a557506109a560e0830160c08401611444565b92915050565b813515610a9f576000806109e17f000000000000000000000000e36072dd051ce26261bf50cd966311cab62c596e888635610eec565b915091508015610a9c576001600160a01b037f0000000000000000000000009af27cfbe0bc537dbc47fc314934353dad7b891916631e97b6e93384610a2c6080880160608901611444565b6040516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091521515604482015260006064820152608401600060405180830381600087803b158015610a8357600080fd5b505af1158015610a97573d6000803e3d6000fd5b505050505b50505b610aaf6060820160408301611444565b15610ae657610ae37f000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec790848460600135610eec565b50505b6040516370a0823160e01b81523060048201526000907f000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec7906001600160a01b0316906370a0823190602401602060405180830381865afa158015610b4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b719190611461565b90508015610ca657610b8960c0830160a08401611444565b15610c2557604051636e553f6560e01b8152600481018290523360248201527f000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd76001600160a01b031690636e553f65906044016020604051808303816000875af1158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f9190611461565b50610ca6565b6040516305dc812160e31b8152336004820152602481018290527f000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd76001600160a01b031690632ee4090890604401600060405180830381600087803b158015610c8d57600080fd5b505af1158015610ca1573d6000803e3d6000fd5b505050505b610cb660e0830160c08401611444565b15610d7b57600080610ced7f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31888760400135610eec565b915091508015610d785760405163282d3fdf60e01b8152336004820152602481018390527f000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e6001600160a01b03169063282d3fdf90604401600060405180830381600087803b158015610d5f57600080fd5b505af1158015610d73573d6000803e3d6000fd5b505050505b50505b505050505050565b801580610dfd5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfb9190611461565b155b610e6f5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016102f7565b6040516001600160a01b038316602482015260448101829052610ee790849063095ea7b360e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152610f9a565b505050565b6040516370a0823160e01b81523360048201526000908190610f659085906001600160a01b038816906370a0823190602401602060405180830381865afa158015610f3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5f9190611461565b9061107f565b9150610f718284611092565b91508115610f9257610f8e6001600160a01b0386163330856110a8565b5060015b935093915050565b6000610fef826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110e69092919063ffffffff16565b805190915015610ee7578080602001905181019061100d91906114ea565b610ee75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102f7565b600061108b8284611507565b9392505050565b60008183106110a1578161108b565b5090919050565b6040516001600160a01b03808516602483015283166044820152606481018290526110e09085906323b872dd60e01b90608401610e9b565b50505050565b60606110f584846000856110fd565b949350505050565b6060824710156111755760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102f7565b843b6111c35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102f7565b600080866001600160a01b031685876040516111df919061151e565b60006040518083038185875af1925050503d806000811461121c576040519150601f19603f3d011682016040523d82523d6000602084013e611221565b606091505b509150915061123182828661123c565b979650505050505050565b6060831561124b57508161108b565b82511561125b5782518084602001fd5b8160405162461bcd60e51b81526004016102f791906112a1565b60005b83811015611290578181015183820152602001611278565b838111156110e05750506000910152565b60208152600082518060208401526112c0816040850160208701611275565b601f01601f19169190910160400192915050565b60008083601f8401126112e657600080fd5b50813567ffffffffffffffff8111156112fe57600080fd5b6020830191508360208260051b850101111561131957600080fd5b9250929050565b60006080828403121561133257600080fd5b50919050565b600060e0828403121561133257600080fd5b6000806000806000806000806000806101e08b8d03121561136a57600080fd5b8a3567ffffffffffffffff8082111561138257600080fd5b61138e8e838f016112d4565b909c509a5060208d01359150808211156113a757600080fd5b6113b38e838f016112d4565b909a50985060408d01359150808211156113cc57600080fd5b6113d88e838f016112d4565b909850965060608d01359150808211156113f157600080fd5b506113fe8d828e016112d4565b909550935061141290508c60808d01611320565b91506114228c6101008d01611338565b90509295989b9194979a5092959850565b801515811461144157600080fd5b50565b60006020828403121561145657600080fd5b813561108b81611433565b60006020828403121561147357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114a257600080fd5b81356001600160a01b038116811461108b57600080fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156114e3576114e36114b9565b5060010190565b6000602082840312156114fc57600080fd5b815161108b81611433565b600082821015611519576115196114b9565b500390565b60008251611530818460208701611275565b919091019291505056fea164736f6c634300080b000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e36072dd051ce26261bf50cd966311cab62c596e000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec7900000000000000000000000009af27cfbe0bc537dbc47fc314934353dad7b8919000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7
-----Decoded View---------------
Arg [0] : _crv (address): 0xE36072DD051Ce26261BF50CD966311cab62C596e
Arg [1] : _cvx (address): 0xEC73284E4EC9bcea1A7DDDf489eAA324C3F7dd31
Arg [2] : _cvxCrv (address): 0x569FcbDa292f1a69AB14e401bAD13Cc0E1DEC790
Arg [3] : _crvDepositor (address): 0x9af27cFBe0bc537dbC47fC314934353Dad7B8919
Arg [4] : _cvxCrvRewards (address): 0xd07e6F460cb55203433fa3eD744D279BcC05cfd7
Arg [5] : _locker (address): 0xc1De2d060a18CFfAB121E90118e380629d11977E
Arg [6] : _compounder (address): 0xd07e6F460cb55203433fa3eD744D279BcC05cfd7
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000e36072dd051ce26261bf50cd966311cab62c596e
Arg [1] : 000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31
Arg [2] : 000000000000000000000000569fcbda292f1a69ab14e401bad13cc0e1dec790
Arg [3] : 0000000000000000000000009af27cfbe0bc537dbc47fc314934353dad7b8919
Arg [4] : 000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7
Arg [5] : 000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e
Arg [6] : 000000000000000000000000d07e6f460cb55203433fa3ed744d279bcc05cfd7
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.