More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 157 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Distribute | 21977564 | 3 days ago | IN | 0 ETH | 0.0003259 | ||||
Distribute | 21927383 | 10 days ago | IN | 0 ETH | 0.0003259 | ||||
Distribute | 21877296 | 17 days ago | IN | 0 ETH | 0.00034548 | ||||
Distribute | 21827321 | 24 days ago | IN | 0 ETH | 0.00034551 | ||||
Distribute | 21777174 | 31 days ago | IN | 0 ETH | 0.00103636 | ||||
Distribute | 21727061 | 38 days ago | IN | 0 ETH | 0.00103636 | ||||
Distribute | 21676905 | 45 days ago | IN | 0 ETH | 0.00345484 | ||||
Distribute | 21626762 | 52 days ago | IN | 0 ETH | 0.00171388 | ||||
Distribute | 21576639 | 59 days ago | IN | 0 ETH | 0.0020729 | ||||
Distribute | 21526491 | 66 days ago | IN | 0 ETH | 0.00138181 | ||||
Distribute | 21476363 | 73 days ago | IN | 0 ETH | 0.00138193 | ||||
Distribute | 21426297 | 80 days ago | IN | 0 ETH | 0.00345484 | ||||
Distribute | 21376148 | 87 days ago | IN | 0 ETH | 0.00518226 | ||||
Distribute | 21326016 | 94 days ago | IN | 0 ETH | 0.00587373 | ||||
Distribute | 21275982 | 101 days ago | IN | 0 ETH | 0.00445663 | ||||
Distribute | 21225825 | 108 days ago | IN | 0 ETH | 0.00376998 | ||||
Distribute | 21175643 | 115 days ago | IN | 0 ETH | 0.00959515 | ||||
Distribute | 21125506 | 122 days ago | IN | 0 ETH | 0.00411271 | ||||
Distribute | 21075360 | 129 days ago | IN | 0 ETH | 0.00342756 | ||||
Distribute | 21025156 | 136 days ago | IN | 0 ETH | 0.00205708 | ||||
Distribute | 20975004 | 143 days ago | IN | 0 ETH | 0.00325905 | ||||
Distribute | 20924906 | 150 days ago | IN | 0 ETH | 0.00754199 | ||||
Distribute | 20877693 | 156 days ago | IN | 0 ETH | 0.00239951 | ||||
Distribute | 20874687 | 157 days ago | IN | 0 ETH | 0.00244674 | ||||
Distribute | 20824503 | 164 days ago | IN | 0 ETH | 0.01130896 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
AuraStakingProxy
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)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.11;import { Address } from "@openzeppelin/contracts-0.8/utils/Address.sol";import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol";import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol";import { SafeMath } from "@openzeppelin/contracts-0.8/utils/math/SafeMath.sol";import { IAuraLocker, ICrvDepositorWrapper } from "./Interfaces.sol";/*** @title AuraStakingProxy* @author adapted from ConvexFinance* @notice Receives CRV from the Booster as overall reward, then distributes to vlCVX holders. Also* acts as a depositor proxy to support deposit/withdrawals from the CVX staking contract.* @dev From CVX:* - receive tokens to stake* - get current staked balance* - withdraw staked tokens* - send rewards back to owner(cvx locker)* - register token types that can be distributed*/contract AuraStakingProxy {using SafeERC20 for IERC20;using Address for address;using SafeMath for uint256;
1234567891011121314151617181920212223242526// 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* ====*/
1234567891011121314151617181920212223242526// 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.*/
1234567891011121314151617181920212223242526// 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));
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)pragma solidity ^0.8.0;// CAUTION// This version of SafeMath should only be used with Solidity 0.8 or later,// because it relies on the compiler's built in overflow checks./*** @dev Wrappers over Solidity's arithmetic operations.** NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler* now has built in overflow checking.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);return (true, c);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.11;interface IPriceOracle {struct OracleAverageQuery {Variable variable;uint256 secs;uint256 ago;}enum Variable {PAIR_PRICE,BPT_PRICE,INVARIANT}function getTimeWeightedAverage(OracleAverageQuery[] memory queries)externalviewreturns (uint256[] memory results);}interface IVault {enum PoolSpecialization {GENERAL,MINIMAL_SWAP_INFO,TWO_TOKEN
12345678910111213141516171819202122{"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":"_rewards","type":"address"},{"internalType":"address","name":"_crv","type":"address"},{"internalType":"address","name":"_cvx","type":"address"},{"internalType":"address","name":"_cvxCrv","type":"address"},{"internalType":"address","name":"_crvDepositorWrapper","type":"address"},{"internalType":"uint256","name":"_outputBps","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"incentive","type":"uint256"}],"name":"CallIncentiveChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsDistributed","type":"event"},{"inputs":[],"name":"applyPendingOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callIncentive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crv","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crvDepositorWrapper","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":"denominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minOut","type":"uint256"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"distributeOther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_incentive","type":"uint256"}],"name":"setCallIncentive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_crvDepositorWrapper","type":"address"},{"internalType":"uint256","name":"_outputBps","type":"uint256"}],"name":"setCrvDepositorWrapper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_po","type":"address"}],"name":"setPendingOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewards","type":"address"}],"name":"setRewards","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260196006553480156200001657600080fd5b50604051620017cc380380620017cc8339810160408190526200003991620000aa565b600380546001600160a01b03199081166001600160a01b0398891617909155600480543390831617905594861660805292851660a05290841660c05260018054909316931692909217905560025562000122565b80516001600160a01b0381168114620000a557600080fd5b919050565b60008060008060008060c08789031215620000c457600080fd5b620000cf876200008d565b9550620000df602088016200008d565b9450620000ef604088016200008d565b9350620000ff606088016200008d565b92506200010f608088016200008d565b915060a087015190509295509295509295565b60805160a05160c051611618620001b460003960008181610213015281816104170152818161054b015281816109050152818161094001528181610ff6015281816110a9015281816110ea015261115801526000818161026801526103d90152600081816101b40152818161039c0152818161050e0152818161088e015281816108c90152610e6301526116186000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c806399183f0a116100d8578063cc7554eb1161008c578063e30c397811610066578063e30c397814610325578063e4fc6b6d14610338578063ec38a8621461034057600080fd5b8063cc7554eb146102f6578063dc66a54114610309578063dfa736cf1461031c57600080fd5b8063aced1661116100bd578063aced1661146102c7578063c42069ec146102da578063cb22356b146102ed57600080fd5b806399183f0a146102a15780639ec5a894146102b457600080fd5b806382480df91161013a57806391c05b0b1161011457806391c05b0b14610250578063923c1d611461026357806396ce07951461028a57600080fd5b806382480df91461020e5780638757b15b146102355780638da5cb5b1461023d57600080fd5b80636a4874a11161016b5780636a4874a1146101af5780636d4a2ea1146101f3578063748747e6146101fb57600080fd5b80634707d0001461018757806351c92b131461019c575b600080fd5b61019a610195366004611448565b610353565b005b61019a6101aa366004611481565b61050c565b6101d67f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b61019a610758565b61019a610209366004611481565b610819565b6101d67f000000000000000000000000000000000000000000000000000000000000000081565b61019a61087d565b6004546101d6906001600160a01b031681565b61019a61025e36600461149e565b61096d565b6101d67f000000000000000000000000000000000000000000000000000000000000000081565b61029361271081565b6040519081526020016101ea565b6001546101d6906001600160a01b031681565b6003546101d6906001600160a01b031681565b6000546101d6906001600160a01b031681565b61019a6102e8366004611481565b6109bb565b61029360065481565b61019a61030436600461149e565b610a1f565b61019a6103173660046114b7565b610aed565b61029360025481565b6005546101d6906001600160a01b031681565b61019a610bb3565b61019a61034e366004611481565b610c10565b6004546001600160a01b0316331461039a5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b60448201526064015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415801561040e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561044c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b6104865760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b6044820152606401610391565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156104cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f191906114e3565b90506105076001600160a01b0384168383610c74565b505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561058057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b6105ba5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b6044820152606401610391565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610601573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062591906114e3565b9050801561075457600061065061271061064a60065485610d0490919063ffffffff16565b90610d17565b905061065c8282610d23565b91506106726001600160a01b0384163383610c74565b60035461068d906001600160a01b0385811691166000610d2f565b6003546106a9906001600160a01b038581169116600019610d2f565b6003546040516304d0c2c560e01b81526001600160a01b03858116600483015260248201859052909116906304d0c2c590604401600060405180830381600087803b1580156106f757600080fd5b505af115801561070b573d6000803e3d6000fd5b50505050826001600160a01b03167fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece0868360405161074a91815260200190565b60405180910390a2505b5050565b6004546001600160a01b0316331461079a5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b6005546001600160a01b03166107f25760405162461bcd60e51b815260206004820152600d60248201527f696e76616c6964206f776e6572000000000000000000000000000000000000006044820152606401610391565b60058054600480546001600160a01b03199081166001600160a01b03841617909155169055565b6004546001600160a01b0316331461085b5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001546108b8906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691166000610d2f565b6001546108f4906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169116600019610d2f565b60035461092f906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691166000610d2f565b60035461096b906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169116600019610d2f565b565b6000546001600160a01b031633146109af5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b6109b881610e4b565b50565b6004546001600160a01b031633146109fd5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314610a615760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b6064811115610ab25760405162461bcd60e51b815260206004820152600860248201527f746f6f20686967680000000000000000000000000000000000000000000000006044820152606401610391565b60068190556040518181527f951fa38a4b6a55f348bea16d4f02732f22ecf8f7d4f58cf94ea81083935fa4fa9060200160405180910390a150565b6004546001600160a01b03163314610b2f5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b61232881118015610b41575061271081105b610b8d5760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964206f75747075742062707300000000000000000000000000006044820152606401610391565b600180546001600160a01b0319166001600160a01b039390931692909217909155600255565b6000546001600160a01b031615610c06576000546001600160a01b03163314610c065760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b61096b6000610e4b565b6004546001600160a01b03163314610c525760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6040516001600160a01b03831660248201526044810182905261050790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526111bf565b6000610d108284611512565b9392505050565b6000610d108284611531565b6000610d108284611553565b801580610da95750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610d83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da791906114e3565b155b610e1b5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610391565b6040516001600160a01b03831660248201526044810182905261050790849063095ea7b360e01b90606401610ca0565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610eb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed691906114e3565b90508015610fde57600082610f62576001546002546040516323f15c1760e01b81526004810185905260248101919091526001600160a01b03909116906323f15c1790604401602060405180830381865afa158015610f39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5d91906114e3565b610f64565b825b600180546040516314b47b0b60e11b815260048101869052602481018490526044810192909252600060648301529192506001600160a01b0390911690632968f61690608401600060405180830381600087803b158015610fc457600080fd5b505af1158015610fd8573d6000803e3d6000fd5b50505050505b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015611045573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106991906114e3565b9050801561050757600061108e61271061064a60065485610d0490919063ffffffff16565b905061109a8282610d23565b91506110d06001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163383610c74565b6003546040516304d0c2c560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260248201859052909116906304d0c2c590604401600060405180830381600087803b15801561113e57600080fd5b505af1158015611152573d6000803e3d6000fd5b505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece086836040516111b191815260200190565b60405180910390a250505050565b6000611214826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112a49092919063ffffffff16565b8051909150156105075780806020019051810190611232919061156a565b6105075760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610391565b60606112b384846000856112bb565b949350505050565b6060824710156113335760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610391565b843b6113815760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610391565b600080866001600160a01b0316858760405161139d91906115bc565b60006040518083038185875af1925050503d80600081146113da576040519150601f19603f3d011682016040523d82523d6000602084013e6113df565b606091505b50915091506113ef8282866113fa565b979650505050505050565b60608315611409575081610d10565b8251156114195782518084602001fd5b8160405162461bcd60e51b815260040161039191906115d8565b6001600160a01b03811681146109b857600080fd5b6000806040838503121561145b57600080fd5b823561146681611433565b9150602083013561147681611433565b809150509250929050565b60006020828403121561149357600080fd5b8135610d1081611433565b6000602082840312156114b057600080fd5b5035919050565b600080604083850312156114ca57600080fd5b82356114d581611433565b946020939093013593505050565b6000602082840312156114f557600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561152c5761152c6114fc565b500290565b60008261154e57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611565576115656114fc565b500390565b60006020828403121561157c57600080fd5b81518015158114610d1057600080fd5b60005b838110156115a757818101518382015260200161158f565b838111156115b6576000848401525b50505050565b600082516115ce81846020870161158c565b9190910192915050565b60208152600082518060208401526115f781604085016020870161158c565b601f01601f1916919091016040019291505056fea164736f6c634300080b000a0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d412300000000000000000000000000000000000000000000000000000000000026de
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101825760003560e01c806399183f0a116100d8578063cc7554eb1161008c578063e30c397811610066578063e30c397814610325578063e4fc6b6d14610338578063ec38a8621461034057600080fd5b8063cc7554eb146102f6578063dc66a54114610309578063dfa736cf1461031c57600080fd5b8063aced1661116100bd578063aced1661146102c7578063c42069ec146102da578063cb22356b146102ed57600080fd5b806399183f0a146102a15780639ec5a894146102b457600080fd5b806382480df91161013a57806391c05b0b1161011457806391c05b0b14610250578063923c1d611461026357806396ce07951461028a57600080fd5b806382480df91461020e5780638757b15b146102355780638da5cb5b1461023d57600080fd5b80636a4874a11161016b5780636a4874a1146101af5780636d4a2ea1146101f3578063748747e6146101fb57600080fd5b80634707d0001461018757806351c92b131461019c575b600080fd5b61019a610195366004611448565b610353565b005b61019a6101aa366004611481565b61050c565b6101d67f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d81565b6040516001600160a01b0390911681526020015b60405180910390f35b61019a610758565b61019a610209366004611481565b610819565b6101d67f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d81565b61019a61087d565b6004546101d6906001600160a01b031681565b61019a61025e36600461149e565b61096d565b6101d67f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf81565b61029361271081565b6040519081526020016101ea565b6001546101d6906001600160a01b031681565b6003546101d6906001600160a01b031681565b6000546101d6906001600160a01b031681565b61019a6102e8366004611481565b6109bb565b61029360065481565b61019a61030436600461149e565b610a1f565b61019a6103173660046114b7565b610aed565b61029360025481565b6005546101d6906001600160a01b031681565b61019a610bb3565b61019a61034e366004611481565b610c10565b6004546001600160a01b0316331461039a5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b60448201526064015b60405180910390fd5b7f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d6001600160a01b0316826001600160a01b03161415801561040e57507f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf6001600160a01b0316826001600160a01b031614155b801561044c57507f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d6001600160a01b0316826001600160a01b031614155b6104865760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b6044820152606401610391565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156104cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f191906114e3565b90506105076001600160a01b0384168383610c74565b505050565b7f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d6001600160a01b0316816001600160a01b03161415801561058057507f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d6001600160a01b0316816001600160a01b031614155b6105ba5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b6044820152606401610391565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610601573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062591906114e3565b9050801561075457600061065061271061064a60065485610d0490919063ffffffff16565b90610d17565b905061065c8282610d23565b91506106726001600160a01b0384163383610c74565b60035461068d906001600160a01b0385811691166000610d2f565b6003546106a9906001600160a01b038581169116600019610d2f565b6003546040516304d0c2c560e01b81526001600160a01b03858116600483015260248201859052909116906304d0c2c590604401600060405180830381600087803b1580156106f757600080fd5b505af115801561070b573d6000803e3d6000fd5b50505050826001600160a01b03167fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece0868360405161074a91815260200190565b60405180910390a2505b5050565b6004546001600160a01b0316331461079a5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b6005546001600160a01b03166107f25760405162461bcd60e51b815260206004820152600d60248201527f696e76616c6964206f776e6572000000000000000000000000000000000000006044820152606401610391565b60058054600480546001600160a01b03199081166001600160a01b03841617909155169055565b6004546001600160a01b0316331461085b5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001546108b8906001600160a01b037f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d811691166000610d2f565b6001546108f4906001600160a01b037f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d81169116600019610d2f565b60035461092f906001600160a01b037f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d811691166000610d2f565b60035461096b906001600160a01b037f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d81169116600019610d2f565b565b6000546001600160a01b031633146109af5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b6109b881610e4b565b50565b6004546001600160a01b031633146109fd5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314610a615760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b6064811115610ab25760405162461bcd60e51b815260206004820152600860248201527f746f6f20686967680000000000000000000000000000000000000000000000006044820152606401610391565b60068190556040518181527f951fa38a4b6a55f348bea16d4f02732f22ecf8f7d4f58cf94ea81083935fa4fa9060200160405180910390a150565b6004546001600160a01b03163314610b2f5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b61232881118015610b41575061271081105b610b8d5760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964206f75747075742062707300000000000000000000000000006044820152606401610391565b600180546001600160a01b0319166001600160a01b039390931692909217909155600255565b6000546001600160a01b031615610c06576000546001600160a01b03163314610c065760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b61096b6000610e4b565b6004546001600160a01b03163314610c525760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610391565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6040516001600160a01b03831660248201526044810182905261050790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526111bf565b6000610d108284611512565b9392505050565b6000610d108284611531565b6000610d108284611553565b801580610da95750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610d83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da791906114e3565b155b610e1b5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610391565b6040516001600160a01b03831660248201526044810182905261050790849063095ea7b360e01b90606401610ca0565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d6001600160a01b0316906370a0823190602401602060405180830381865afa158015610eb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed691906114e3565b90508015610fde57600082610f62576001546002546040516323f15c1760e01b81526004810185905260248101919091526001600160a01b03909116906323f15c1790604401602060405180830381865afa158015610f39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5d91906114e3565b610f64565b825b600180546040516314b47b0b60e11b815260048101869052602481018490526044810192909252600060648301529192506001600160a01b0390911690632968f61690608401600060405180830381600087803b158015610fc457600080fd5b505af1158015610fd8573d6000803e3d6000fd5b50505050505b6040516370a0823160e01b81523060048201526000907f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d6001600160a01b0316906370a0823190602401602060405180830381865afa158015611045573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106991906114e3565b9050801561050757600061108e61271061064a60065485610d0490919063ffffffff16565b905061109a8282610d23565b91506110d06001600160a01b037f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d163383610c74565b6003546040516304d0c2c560e01b81526001600160a01b037f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d8116600483015260248201859052909116906304d0c2c590604401600060405180830381600087803b15801561113e57600080fd5b505af1158015611152573d6000803e3d6000fd5b505050507f000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d6001600160a01b03167fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece086836040516111b191815260200190565b60405180910390a250505050565b6000611214826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112a49092919063ffffffff16565b8051909150156105075780806020019051810190611232919061156a565b6105075760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610391565b60606112b384846000856112bb565b949350505050565b6060824710156113335760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610391565b843b6113815760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610391565b600080866001600160a01b0316858760405161139d91906115bc565b60006040518083038185875af1925050503d80600081146113da576040519150601f19603f3d011682016040523d82523d6000602084013e6113df565b606091505b50915091506113ef8282866113fa565b979650505050505050565b60608315611409575081610d10565b8251156114195782518084602001fd5b8160405162461bcd60e51b815260040161039191906115d8565b6001600160a01b03811681146109b857600080fd5b6000806040838503121561145b57600080fd5b823561146681611433565b9150602083013561147681611433565b809150509250929050565b60006020828403121561149357600080fd5b8135610d1081611433565b6000602082840312156114b057600080fd5b5035919050565b600080604083850312156114ca57600080fd5b82356114d581611433565b946020939093013593505050565b6000602082840312156114f557600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561152c5761152c6114fc565b500290565b60008261154e57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611565576115656114fc565b500390565b60006020828403121561157c57600080fd5b81518015158114610d1057600080fd5b60005b838110156115a757818101518382015260200161158f565b838111156115b6576000848401525b50505050565b600082516115ce81846020870161158c565b9190910192915050565b60208152600082518060208401526115f781604085016020870161158c565b601f01601f1916919091016040019291505056fea164736f6c634300080b000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d412300000000000000000000000000000000000000000000000000000000000026de
-----Decoded View---------------
Arg [0] : _rewards (address): 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC
Arg [1] : _crv (address): 0xba100000625a3754423978a60c9317c58a424e3D
Arg [2] : _cvx (address): 0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF
Arg [3] : _cvxCrv (address): 0x616e8BfA43F920657B3497DBf40D6b1A02D4608d
Arg [4] : _crvDepositorWrapper (address): 0x68655AD9852a99C87C0934c7290BB62CFa5D4123
Arg [5] : _outputBps (uint256): 9950
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000003fa73f1e5d8a792c80f426fc8f84fbf7ce9bbcac
Arg [1] : 000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d
Arg [2] : 000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf
Arg [3] : 000000000000000000000000616e8bfa43f920657b3497dbf40d6b1a02d4608d
Arg [4] : 00000000000000000000000068655ad9852a99c87c0934c7290bb62cfa5d4123
Arg [5] : 00000000000000000000000000000000000000000000000000000000000026de
Loading...
Loading
Loading...
Loading
OVERVIEW
Receives BAL from the Booster as overall reward, then distributes to vlAURA holders.Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1.6 | 1,523.9329 | $2,438.29 |
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.