Source Code
Latest 25 from a total of 4,491 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim Rewards | 24103927 | 15 mins ago | IN | 0 ETH | 0.00002352 | ||||
| Claim Rewards | 24097850 | 20 hrs ago | IN | 0 ETH | 0.00067789 | ||||
| Claim Rewards | 24096646 | 24 hrs ago | IN | 0 ETH | 0.00002484 | ||||
| Claim Rewards | 24095638 | 28 hrs ago | IN | 0 ETH | 0.0000145 | ||||
| Claim Rewards | 24094680 | 31 hrs ago | IN | 0 ETH | 0.00000932 | ||||
| Claim Rewards | 24090464 | 45 hrs ago | IN | 0 ETH | 0.00203298 | ||||
| Claim Rewards | 24089102 | 2 days ago | IN | 0 ETH | 0.00002486 | ||||
| Claim Rewards | 24079265 | 3 days ago | IN | 0 ETH | 0.00000936 | ||||
| Claim Rewards | 24079240 | 3 days ago | IN | 0 ETH | 0.00002367 | ||||
| Claim Rewards | 24078470 | 3 days ago | IN | 0 ETH | 0.00000667 | ||||
| Claim Rewards | 24078218 | 3 days ago | IN | 0 ETH | 0.00001115 | ||||
| Claim Rewards | 24077848 | 3 days ago | IN | 0 ETH | 0.00001747 | ||||
| Claim Rewards | 24077846 | 3 days ago | IN | 0 ETH | 0.00002361 | ||||
| Claim Rewards | 24076791 | 3 days ago | IN | 0 ETH | 0.00003621 | ||||
| Claim Rewards | 24072483 | 4 days ago | IN | 0 ETH | 0.00000526 | ||||
| Claim Rewards | 24072477 | 4 days ago | IN | 0 ETH | 0.00000997 | ||||
| Claim Rewards | 24066870 | 5 days ago | IN | 0 ETH | 0.00000225 | ||||
| Claim Rewards | 24066640 | 5 days ago | IN | 0 ETH | 0.00064073 | ||||
| Claim Rewards | 24050007 | 7 days ago | IN | 0 ETH | 0.00002588 | ||||
| Claim Rewards | 24049517 | 7 days ago | IN | 0 ETH | 0.00001515 | ||||
| Claim Rewards | 24048941 | 7 days ago | IN | 0 ETH | 0.00000686 | ||||
| Claim Rewards | 24048938 | 7 days ago | IN | 0 ETH | 0.00000689 | ||||
| Claim Rewards | 24048935 | 7 days ago | IN | 0 ETH | 0.00000944 | ||||
| Claim Rewards | 24045542 | 8 days ago | IN | 0 ETH | 0.00001264 | ||||
| Claim Rewards | 24044173 | 8 days ago | IN | 0 ETH | 0.00102324 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
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 { ICrvDepositorWrapper } from "../interfaces/ICrvDepositorWrapper.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 crvDepositWrapper;
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 _crvDepositWrapper crvDepositWrapper (0x8014595F2AB54cD7c604B00E9fb932176fDc86Ae);
* @param _cvxCrvRewards cvxCrvRewards (0x3Fe65692bfCD0e6CF84cB1E7d24108E434A7587e);
* @param _locker vlCVX (0xD18140b4B819b895A3dba5442F959fA44994AF50);
* @param _compounder cvxCrv autocompounder vault
*/
constructor(
address _crv,
address _cvx,
address _cvxCrv,
address _crvDepositWrapper,
address _cvxCrvRewards,
address _locker,
address _compounder
) {
crv = _crv;
cvx = _cvx;
cvxCrv = _cvxCrv;
crvDepositWrapper = _crvDepositWrapper;
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, crvDepositWrapper);
_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 cvxCrv rewards
if (options.claimCvxCrv) {
IRewardStaking(cvxCrvRewards).getReward(msg.sender, true);
}
//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 view 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) {ICrvDepositorWrapper(crvDepositWrapper).deposit(
crvBalance,
amounts.minAmountOut,
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
uint 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
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;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
interface ICrvDepositorWrapper {
function getMinOut(uint256, uint256) external view returns (uint256);
function deposit(
uint256,
uint256,
bool,
address _stakeAddress
) external;
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
interface IAuraLocker {
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 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;
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
// 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);
}
}
}
}{
"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":"_crvDepositWrapper","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":"crvDepositWrapper","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
6101806040523480156200001257600080fd5b50604051620017f9380380620017f983398101604081905262000035916200008e565b6001600160a01b0396871660805294861660a05292851660c05290841660e0528316610100528216610120523361014052166101605262000123565b80516001600160a01b03811681146200008957600080fd5b919050565b600080600080600080600060e0888a031215620000aa57600080fd5b620000b58862000071565b9650620000c56020890162000071565b9550620000d56040890162000071565b9450620000e56060890162000071565b9350620000f56080890162000071565b92506200010560a0890162000071565b91506200011560c0890162000071565b905092959891949750929550565b60805160a05160c05160e051610100516101205161014051610160516115d66200022360003960008181610261015281816103ba0152610c3901526000818161018b015261028e01526000818161023a01528181610404015281816109260152610da20152600081816101d901528181610370015281816108970152610cd0015260008181610200015281816103260152610a8801526000818161015a0152818161034f01528181610399015281816105ce01528181610b480152610b8d0152600081816101b2015281816103e3015281816105430152610d5201526000818161011b01528181610305015281816104b80152610a4d01526115d66000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063923c1d6111610081578063d34640b21161005b578063d34640b214610222578063d7b96d4e14610235578063fa2cc3c01461025c57600080fd5b8063923c1d61146101ad578063a7404b70146101d4578063b9f6c292146101fb57600080fd5b806382480df9116100b257806382480df9146101555780638757b15b1461017c5780638da5cb5b1461018657600080fd5b806317d7de7c146100ce5780636a4874a114610116575b600080fd5b604080518082018252600d81527f436c61696d5a61702056332e30000000000000000000000000000000000000006020820152905161010d9190611330565b60405180910390f35b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161010d565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b610184610283565b005b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b6101846102303660046113d9565b61042a565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103005760405162461bcd60e51b815260206004820152600560248201527f216175746800000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b61034a7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006109b5565b6103947f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006109b5565b6103de7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006109b5565b6104287f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006109b5565b565b8483146104795760405162461bcd60e51b815260206004820152600760248201527f217061726974790000000000000000000000000000000000000000000000000060448201526064016102f7565b6000808061048d60a08501608086016114d3565b15801561049e575061049e846109e4565b15610644576040516370a0823160e01b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610507573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052b91906114f0565b6040516370a0823160e01b81523360048201529093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b691906114f0565b6040516370a0823160e01b81523360048201529092507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561061d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064191906114f0565b90505b60005b8c8110156106eb578d8d8281811061066157610661611509565b9050602002016020810190610676919061151f565b604051637050ccd960e01b8152336004820152600160248201526001600160a01b039190911690637050ccd990604401600060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b5050505080806106e39061155e565b915050610647565b5060005b8a81101561078c578b8b8281811061070957610709611509565b905060200201602081019061071e919061151f565b604051630c00007b60e41b81523360048201526001600160a01b03919091169063c00007b090602401600060405180830381600087803b15801561076157600080fd5b505af1158015610775573d6000803e3d6000fd5b5050505080806107849061155e565b9150506106ef565b5060005b88811015610868578989828181106107aa576107aa611509565b90506020020160208101906107bf919061151f565b6001600160a01b0316636b091695338a8a858181106107e0576107e0611509565b90506020020160208101906107f5919061151f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401600060405180830381600087803b15801561083d57600080fd5b505af1158015610851573d6000803e3d6000fd5b5050505080806108609061155e565b915050610790565b5061087660208501856114d3565b156108fc57604051637050ccd960e01b8152336004820152600160248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690637050ccd990604401600060405180830381600087803b1580156108e357600080fd5b505af11580156108f7573d6000803e3d6000fd5b505050505b61090c60408501602086016114d3565b1561098b57604051630c00007b60e41b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063c00007b090602401600060405180830381600087803b15801561097257600080fd5b505af1158015610986573d6000803e3d6000fd5b505050505b610994846109e4565b156109a6576109a68383838888610a3e565b50505050505050505050505050565b6109ca6001600160a01b038316826000610e12565b6109e06001600160a01b03831682600019610e12565b5050565b60006109f660608301604084016114d3565b80610a0c5750610a0c60808301606084016114d3565b80610a225750610a2260c0830160a084016114d3565b80610a385750610a3860e0830160c084016114d3565b92915050565b813515610b2e57600080610a747f0000000000000000000000000000000000000000000000000000000000000000888635610f7b565b915091508015610b2b576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016632968f616836020870135610ac360808801606089016114d3565b6040516001600160e01b031960e086901b168152600481019390935260248301919091521515604482015260006064820152608401600060405180830381600087803b158015610b1257600080fd5b505af1158015610b26573d6000803e3d6000fd5b505050505b50505b610b3e60608201604083016114d3565b15610b7557610b727f0000000000000000000000000000000000000000000000000000000000000000848460600135610f7b565b50505b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0091906114f0565b90508015610d3557610c1860c0830160a084016114d3565b15610cb457604051636e553f6560e01b8152600481018290523360248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636e553f65906044016020604051808303816000875af1158015610c8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cae91906114f0565b50610d35565b6040516305dc812160e31b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632ee4090890604401600060405180830381600087803b158015610d1c57600080fd5b505af1158015610d30573d6000803e3d6000fd5b505050505b610d4560e0830160c084016114d3565b15610e0a57600080610d7c7f0000000000000000000000000000000000000000000000000000000000000000888760400135610f7b565b915091508015610e075760405163282d3fdf60e01b8152336004820152602481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063282d3fdf90604401600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b505050505b50505b505050505050565b801580610e8c5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a91906114f0565b155b610efe5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016102f7565b6040516001600160a01b038316602482015260448101829052610f7690849063095ea7b360e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152611029565b505050565b6040516370a0823160e01b81523360048201526000908190610ff49085906001600160a01b038816906370a0823190602401602060405180830381865afa158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee91906114f0565b9061110e565b91506110008284611121565b915081156110215761101d6001600160a01b038616333085611137565b5060015b935093915050565b600061107e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111759092919063ffffffff16565b805190915015610f76578080602001905181019061109c9190611579565b610f765760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102f7565b600061111a8284611596565b9392505050565b6000818310611130578161111a565b5090919050565b6040516001600160a01b038085166024830152831660448201526064810182905261116f9085906323b872dd60e01b90608401610f2a565b50505050565b6060611184848460008561118c565b949350505050565b6060824710156112045760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102f7565b843b6112525760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102f7565b600080866001600160a01b0316858760405161126e91906115ad565b60006040518083038185875af1925050503d80600081146112ab576040519150601f19603f3d011682016040523d82523d6000602084013e6112b0565b606091505b50915091506112c08282866112cb565b979650505050505050565b606083156112da57508161111a565b8251156112ea5782518084602001fd5b8160405162461bcd60e51b81526004016102f79190611330565b60005b8381101561131f578181015183820152602001611307565b8381111561116f5750506000910152565b602081526000825180602084015261134f816040850160208701611304565b601f01601f19169190910160400192915050565b60008083601f84011261137557600080fd5b50813567ffffffffffffffff81111561138d57600080fd5b6020830191508360208260051b85010111156113a857600080fd5b9250929050565b6000608082840312156113c157600080fd5b50919050565b600060e082840312156113c157600080fd5b6000806000806000806000806000806101e08b8d0312156113f957600080fd5b8a3567ffffffffffffffff8082111561141157600080fd5b61141d8e838f01611363565b909c509a5060208d013591508082111561143657600080fd5b6114428e838f01611363565b909a50985060408d013591508082111561145b57600080fd5b6114678e838f01611363565b909850965060608d013591508082111561148057600080fd5b5061148d8d828e01611363565b90955093506114a190508c60808d016113af565b91506114b18c6101008d016113c7565b90509295989b9194979a5092959850565b80151581146114d057600080fd5b50565b6000602082840312156114e557600080fd5b813561111a816114c2565b60006020828403121561150257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561153157600080fd5b81356001600160a01b038116811461111a57600080fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561157257611572611548565b5060010190565b60006020828403121561158b57600080fd5b815161111a816114c2565b6000828210156115a8576115a8611548565b500390565b600082516115bf818460208701611304565b919091019291505056fea164736f6c634300080b000a000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d412300000000000000000000000000a7ba8ae7bca0b10a32ea1f8e2a1da980c6cad20000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac000000000000000000000000faa2ed111b4f580fcb85c48e6dc6782dc5fcd7a6
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c95760003560e01c8063923c1d6111610081578063d34640b21161005b578063d34640b214610222578063d7b96d4e14610235578063fa2cc3c01461025c57600080fd5b8063923c1d61146101ad578063a7404b70146101d4578063b9f6c292146101fb57600080fd5b806382480df9116100b257806382480df9146101555780638757b15b1461017c5780638da5cb5b1461018657600080fd5b806317d7de7c146100ce5780636a4874a114610116575b600080fd5b604080518082018252600d81527f436c61696d5a61702056332e30000000000000000000000000000000000000006020820152905161010d9190611330565b60405180910390f35b61013d7f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d81565b6040516001600160a01b03909116815260200161010d565b61013d7f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d81565b610184610283565b005b61013d7f00000000000000000000000030019eb135532bddf2da17659101cc000c73c8e481565b61013d7f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf81565b61013d7f00000000000000000000000000a7ba8ae7bca0b10a32ea1f8e2a1da980c6cad281565b61013d7f00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d412381565b6101846102303660046113d9565b61042a565b61013d7f0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac81565b61013d7f000000000000000000000000faa2ed111b4f580fcb85c48e6dc6782dc5fcd7a681565b336001600160a01b037f00000000000000000000000030019eb135532bddf2da17659101cc000c73c8e416146103005760405162461bcd60e51b815260206004820152600560248201527f216175746800000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b61034a7f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d7f00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d41236109b5565b6103947f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d7f00000000000000000000000000a7ba8ae7bca0b10a32ea1f8e2a1da980c6cad26109b5565b6103de7f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d7f000000000000000000000000faa2ed111b4f580fcb85c48e6dc6782dc5fcd7a66109b5565b6104287f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf7f0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac6109b5565b565b8483146104795760405162461bcd60e51b815260206004820152600760248201527f217061726974790000000000000000000000000000000000000000000000000060448201526064016102f7565b6000808061048d60a08501608086016114d3565b15801561049e575061049e846109e4565b15610644576040516370a0823160e01b81523360048201527f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d6001600160a01b0316906370a0823190602401602060405180830381865afa158015610507573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052b91906114f0565b6040516370a0823160e01b81523360048201529093507f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf6001600160a01b0316906370a0823190602401602060405180830381865afa158015610592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b691906114f0565b6040516370a0823160e01b81523360048201529092507f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d6001600160a01b0316906370a0823190602401602060405180830381865afa15801561061d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064191906114f0565b90505b60005b8c8110156106eb578d8d8281811061066157610661611509565b9050602002016020810190610676919061151f565b604051637050ccd960e01b8152336004820152600160248201526001600160a01b039190911690637050ccd990604401600060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b5050505080806106e39061155e565b915050610647565b5060005b8a81101561078c578b8b8281811061070957610709611509565b905060200201602081019061071e919061151f565b604051630c00007b60e41b81523360048201526001600160a01b03919091169063c00007b090602401600060405180830381600087803b15801561076157600080fd5b505af1158015610775573d6000803e3d6000fd5b5050505080806107849061155e565b9150506106ef565b5060005b88811015610868578989828181106107aa576107aa611509565b90506020020160208101906107bf919061151f565b6001600160a01b0316636b091695338a8a858181106107e0576107e0611509565b90506020020160208101906107f5919061151f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401600060405180830381600087803b15801561083d57600080fd5b505af1158015610851573d6000803e3d6000fd5b5050505080806108609061155e565b915050610790565b5061087660208501856114d3565b156108fc57604051637050ccd960e01b8152336004820152600160248201527f00000000000000000000000000a7ba8ae7bca0b10a32ea1f8e2a1da980c6cad26001600160a01b031690637050ccd990604401600060405180830381600087803b1580156108e357600080fd5b505af11580156108f7573d6000803e3d6000fd5b505050505b61090c60408501602086016114d3565b1561098b57604051630c00007b60e41b81523360048201527f0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac6001600160a01b03169063c00007b090602401600060405180830381600087803b15801561097257600080fd5b505af1158015610986573d6000803e3d6000fd5b505050505b610994846109e4565b156109a6576109a68383838888610a3e565b50505050505050505050505050565b6109ca6001600160a01b038316826000610e12565b6109e06001600160a01b03831682600019610e12565b5050565b60006109f660608301604084016114d3565b80610a0c5750610a0c60808301606084016114d3565b80610a225750610a2260c0830160a084016114d3565b80610a385750610a3860e0830160c084016114d3565b92915050565b813515610b2e57600080610a747f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d888635610f7b565b915091508015610b2b576001600160a01b037f00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d412316632968f616836020870135610ac360808801606089016114d3565b6040516001600160e01b031960e086901b168152600481019390935260248301919091521515604482015260006064820152608401600060405180830381600087803b158015610b1257600080fd5b505af1158015610b26573d6000803e3d6000fd5b505050505b50505b610b3e60608201604083016114d3565b15610b7557610b727f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d848460600135610f7b565b50505b6040516370a0823160e01b81523060048201526000907f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d6001600160a01b0316906370a0823190602401602060405180830381865afa158015610bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0091906114f0565b90508015610d3557610c1860c0830160a084016114d3565b15610cb457604051636e553f6560e01b8152600481018290523360248201527f000000000000000000000000faa2ed111b4f580fcb85c48e6dc6782dc5fcd7a66001600160a01b031690636e553f65906044016020604051808303816000875af1158015610c8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cae91906114f0565b50610d35565b6040516305dc812160e31b8152336004820152602481018290527f00000000000000000000000000a7ba8ae7bca0b10a32ea1f8e2a1da980c6cad26001600160a01b031690632ee4090890604401600060405180830381600087803b158015610d1c57600080fd5b505af1158015610d30573d6000803e3d6000fd5b505050505b610d4560e0830160c084016114d3565b15610e0a57600080610d7c7f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf888760400135610f7b565b915091508015610e075760405163282d3fdf60e01b8152336004820152602481018390527f0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac6001600160a01b03169063282d3fdf90604401600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b505050505b50505b505050505050565b801580610e8c5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a91906114f0565b155b610efe5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016102f7565b6040516001600160a01b038316602482015260448101829052610f7690849063095ea7b360e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152611029565b505050565b6040516370a0823160e01b81523360048201526000908190610ff49085906001600160a01b038816906370a0823190602401602060405180830381865afa158015610fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fee91906114f0565b9061110e565b91506110008284611121565b915081156110215761101d6001600160a01b038616333085611137565b5060015b935093915050565b600061107e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111759092919063ffffffff16565b805190915015610f76578080602001905181019061109c9190611579565b610f765760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102f7565b600061111a8284611596565b9392505050565b6000818310611130578161111a565b5090919050565b6040516001600160a01b038085166024830152831660448201526064810182905261116f9085906323b872dd60e01b90608401610f2a565b50505050565b6060611184848460008561118c565b949350505050565b6060824710156112045760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102f7565b843b6112525760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102f7565b600080866001600160a01b0316858760405161126e91906115ad565b60006040518083038185875af1925050503d80600081146112ab576040519150601f19603f3d011682016040523d82523d6000602084013e6112b0565b606091505b50915091506112c08282866112cb565b979650505050505050565b606083156112da57508161111a565b8251156112ea5782518084602001fd5b8160405162461bcd60e51b81526004016102f79190611330565b60005b8381101561131f578181015183820152602001611307565b8381111561116f5750506000910152565b602081526000825180602084015261134f816040850160208701611304565b601f01601f19169190910160400192915050565b60008083601f84011261137557600080fd5b50813567ffffffffffffffff81111561138d57600080fd5b6020830191508360208260051b85010111156113a857600080fd5b9250929050565b6000608082840312156113c157600080fd5b50919050565b600060e082840312156113c157600080fd5b6000806000806000806000806000806101e08b8d0312156113f957600080fd5b8a3567ffffffffffffffff8082111561141157600080fd5b61141d8e838f01611363565b909c509a5060208d013591508082111561143657600080fd5b6114428e838f01611363565b909a50985060408d013591508082111561145b57600080fd5b6114678e838f01611363565b909850965060608d013591508082111561148057600080fd5b5061148d8d828e01611363565b90955093506114a190508c60808d016113af565b91506114b18c6101008d016113c7565b90509295989b9194979a5092959850565b80151581146114d057600080fd5b50565b6000602082840312156114e557600080fd5b813561111a816114c2565b60006020828403121561150257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561153157600080fd5b81356001600160a01b038116811461111a57600080fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561157257611572611548565b5060010190565b60006020828403121561158b57600080fd5b815161111a816114c2565b6000828210156115a8576115a8611548565b500390565b600082516115bf818460208701611304565b919091019291505056fea164736f6c634300080b000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d412300000000000000000000000000a7ba8ae7bca0b10a32ea1f8e2a1da980c6cad20000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac000000000000000000000000faa2ed111b4f580fcb85c48e6dc6782dc5fcd7a6
-----Decoded View---------------
Arg [0] : _crv (address): 0xba100000625a3754423978a60c9317c58a424e3D
Arg [1] : _cvx (address): 0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF
Arg [2] : _cvxCrv (address): 0x616e8BfA43F920657B3497DBf40D6b1A02D4608d
Arg [3] : _crvDepositWrapper (address): 0x68655AD9852a99C87C0934c7290BB62CFa5D4123
Arg [4] : _cvxCrvRewards (address): 0x00A7BA8Ae7bca0B10A32Ea1f8e2a1Da980c6CAd2
Arg [5] : _locker (address): 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC
Arg [6] : _compounder (address): 0xfAA2eD111B4F580fCb85C48E6DC6782Dc5FCD7a6
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d
Arg [1] : 000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf
Arg [2] : 000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d
Arg [3] : 00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d4123
Arg [4] : 00000000000000000000000000a7ba8ae7bca0b10a32ea1f8e2a1da980c6cad2
Arg [5] : 0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac
Arg [6] : 000000000000000000000000faa2ed111b4f580fcb85c48e6dc6782dc5fcd7a6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.