Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,154 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 21459836 | 40 days ago | IN | 0 ETH | 0.00405972 | ||||
Deposit | 20671398 | 150 days ago | IN | 0 ETH | 0.00104421 | ||||
Deposit | 20666340 | 150 days ago | IN | 0 ETH | 0.0008228 | ||||
Deposit | 19200566 | 355 days ago | IN | 0 ETH | 0.01753457 | ||||
Deposit | 19070104 | 374 days ago | IN | 0 ETH | 0.01799056 | ||||
Deposit | 18911984 | 396 days ago | IN | 0 ETH | 0.00525426 | ||||
Deposit | 18823658 | 408 days ago | IN | 0 ETH | 0.01878553 | ||||
Deposit | 18817211 | 409 days ago | IN | 0 ETH | 0.02714768 | ||||
Deposit | 18746785 | 419 days ago | IN | 0 ETH | 0.0285233 | ||||
Deposit | 18673786 | 429 days ago | IN | 0 ETH | 0.0180981 | ||||
Deposit | 18606489 | 439 days ago | IN | 0 ETH | 0.01370485 | ||||
Deposit | 18518434 | 451 days ago | IN | 0 ETH | 0.01124242 | ||||
Deposit | 18497040 | 454 days ago | IN | 0 ETH | 0.01120535 | ||||
Deposit | 18484545 | 456 days ago | IN | 0 ETH | 0.02403529 | ||||
Deposit | 18393149 | 469 days ago | IN | 0 ETH | 0.00595361 | ||||
Deposit | 18390175 | 469 days ago | IN | 0 ETH | 0.00505176 | ||||
Deposit | 18368145 | 472 days ago | IN | 0 ETH | 0.00331538 | ||||
Deposit | 18340772 | 476 days ago | IN | 0 ETH | 0.00671487 | ||||
Deposit | 18311931 | 480 days ago | IN | 0 ETH | 0.00305358 | ||||
Deposit | 18299433 | 482 days ago | IN | 0 ETH | 0.00381828 | ||||
Deposit | 18257309 | 488 days ago | IN | 0 ETH | 0.00706472 | ||||
Deposit | 18255674 | 488 days ago | IN | 0 ETH | 0.00497204 | ||||
Deposit | 18241016 | 490 days ago | IN | 0 ETH | 0.00365775 | ||||
Deposit | 18231022 | 491 days ago | IN | 0 ETH | 0.00459261 | ||||
Deposit | 18203371 | 495 days ago | IN | 0 ETH | 0.00366412 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CrvDepositorWrapper
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 { IVault, ICrvDepositorWrapper } from "./Interfaces.sol"; import { BalInvestor } from "./BalInvestor.sol"; interface ICrvDepositor { function depositFor( address to, uint256 _amount, bool _lock, address _stakeAddress ) external; } /** * @title CrvDepositorWrapper * @notice Converts BAL -> balBPT and then wraps to auraBAL via the crvDepositor */ contract CrvDepositorWrapper is ICrvDepositorWrapper, BalInvestor { address public immutable crvDeposit; constructor( address _crvDeposit, IVault _balancerVault, address _bal, address _weth, bytes32 _balETHPoolId ) BalInvestor(_balancerVault, _bal, _weth, _balETHPoolId) { crvDeposit = _crvDeposit; } function setApprovals() external { _setApprovals(); require(IERC20(BALANCER_POOL_TOKEN).approve(crvDeposit, type(uint256).max), "!approval"); } /** * @dev Gets minimum output based on BPT oracle price * @param _amount Units of BAL to deposit * @param _outputBps Multiplier where 100% == 10000, 99.5% == 9950 and 98% == 9800 * @return minOut Units of BPT to expect as output */ function getMinOut(uint256 _amount, uint256 _outputBps) external view returns (uint256) { return _getMinOut(_amount, _outputBps); } function deposit( uint256 _amount, uint256 _minOut, bool _lock, address _stakeAddress ) external { _investBalToPool(_amount, _minOut); uint256 bptBalance = IERC20(BALANCER_POOL_TOKEN).balanceOf(address(this)); ICrvDepositor(crvDeposit).depositFor(msg.sender, bptBalance, _lock, _stakeAddress); } }
// 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 pragma 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) external view returns (uint256[] memory results); } interface IVault { enum PoolSpecialization { GENERAL, MINIMAL_SWAP_INFO, TWO_TOKEN } enum JoinKind { INIT, EXACT_TOKENS_IN_FOR_BPT_OUT, TOKEN_IN_FOR_EXACT_BPT_OUT, ALL_TOKENS_IN_FOR_EXACT_BPT_OUT } enum SwapKind { GIVEN_IN, GIVEN_OUT } struct SingleSwap { bytes32 poolId; SwapKind kind; IAsset assetIn; IAsset assetOut; uint256 amount; bytes userData; } struct FundManagement { address sender; bool fromInternalBalance; address payable recipient; bool toInternalBalance; } struct JoinPoolRequest { IAsset[] assets; uint256[] maxAmountsIn; bytes userData; bool fromInternalBalance; } function getPool(bytes32 poolId) external view returns (address, PoolSpecialization); function getPoolTokens(bytes32 poolId) external view returns ( address[] memory tokens, uint256[] memory balances, uint256 lastChangeBlock ); function joinPool( bytes32 poolId, address sender, address recipient, JoinPoolRequest memory request ) external payable; function swap( SingleSwap memory singleSwap, FundManagement memory funds, uint256 limit, uint256 deadline ) external returns (uint256 amountCalculated); function exitPool( bytes32 poolId, address sender, address payable recipient, ExitPoolRequest memory request ) external; struct ExitPoolRequest { IAsset[] assets; uint256[] minAmountsOut; bytes userData; bool toInternalBalance; } enum ExitKind { EXACT_BPT_IN_FOR_ONE_TOKEN_OUT, EXACT_BPT_IN_FOR_TOKENS_OUT, BPT_IN_FOR_EXACT_TOKENS_OUT, MANAGEMENT_FEE_TOKENS_OUT // for ManagedPool } } interface IAsset { // solhint-disable-previous-line no-empty-blocks } 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; } interface IExtraRewardsDistributor { function addReward(address _token, uint256 _amount) external; } 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; pragma abicoder v2; import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol"; import { IVault, IPriceOracle, IAsset } from "./Interfaces.sol"; /** * @title BalInvestor * @notice Deposits $BAL into a BAL/WETH BPT. Hooks into TWAP to determine minOut. * @dev Abstract contract for depositing BAL -> balBPT -> auraBAL via crvDepositor */ abstract contract BalInvestor { using SafeERC20 for IERC20; IVault public immutable BALANCER_VAULT; address public immutable BAL; address public immutable WETH; address public immutable BALANCER_POOL_TOKEN; bytes32 public immutable BAL_ETH_POOL_ID; constructor( IVault _balancerVault, address _bal, address _weth, bytes32 _balETHPoolId ) { ( address poolAddress, /* */ ) = _balancerVault.getPool(_balETHPoolId); require(poolAddress != address(0), "!poolAddress"); BALANCER_VAULT = _balancerVault; BAL = _bal; WETH = _weth; BALANCER_POOL_TOKEN = poolAddress; BAL_ETH_POOL_ID = _balETHPoolId; } function _setApprovals() internal { IERC20(WETH).safeApprove(address(BALANCER_VAULT), type(uint256).max); IERC20(BAL).safeApprove(address(BALANCER_VAULT), type(uint256).max); } function _getBptPrice() internal view returns (uint256) { IPriceOracle.OracleAverageQuery[] memory queries = new IPriceOracle.OracleAverageQuery[](1); queries[0].variable = IPriceOracle.Variable.BPT_PRICE; queries[0].secs = 3600; // last hour queries[0].ago = 0; // now // Gets the balancer time weighted average price denominated in BAL return IPriceOracle(BALANCER_POOL_TOKEN).getTimeWeightedAverage(queries)[0]; } function _getMinOut(uint256 amount, uint256 minOutBps) internal view returns (uint256) { // Gets the balancer time weighted average price denominated in BAL // e.g. if 1 BAL == 0.4 BPT, bptOraclePrice == 2.5 uint256 bptOraclePrice = _getBptPrice(); // e.g. minOut = (((100e18 * 1e18) / 2.5e18) * 9980) / 10000; // e.g. minout = 39.92e18 uint256 minOut = (((amount * 1e18) / bptOraclePrice) * minOutBps) / 10000; return minOut; } function _investBalToPool(uint256 amount, uint256 minOut) internal { IERC20(BAL).safeTransferFrom(msg.sender, address(this), amount); IAsset[] memory assets = new IAsset[](2); assets[0] = IAsset(BAL); assets[1] = IAsset(WETH); uint256[] memory maxAmountsIn = new uint256[](2); maxAmountsIn[0] = amount; maxAmountsIn[1] = 0; BALANCER_VAULT.joinPool( BAL_ETH_POOL_ID, address(this), address(this), IVault.JoinPoolRequest( assets, maxAmountsIn, abi.encode(IVault.JoinKind.EXACT_TOKENS_IN_FOR_BPT_OUT, maxAmountsIn, minOut), false // Don't use internal balances ) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "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
[{"inputs":[{"internalType":"address","name":"_crvDeposit","type":"address"},{"internalType":"contract IVault","name":"_balancerVault","type":"address"},{"internalType":"address","name":"_bal","type":"address"},{"internalType":"address","name":"_weth","type":"address"},{"internalType":"bytes32","name":"_balETHPoolId","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BAL","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BALANCER_POOL_TOKEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BALANCER_VAULT","outputs":[{"internalType":"contract IVault","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BAL_ETH_POOL_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crvDeposit","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minOut","type":"uint256"},{"internalType":"bool","name":"_lock","type":"bool"},{"internalType":"address","name":"_stakeAddress","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_outputBps","type":"uint256"}],"name":"getMinOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b50604051620014793803806200147983398101604081905262000035916200014a565b838383836000846001600160a01b031663f6c00927836040518263ffffffff1660e01b81526004016200006a91815260200190565b6040805180830381865afa15801562000087573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000ad9190620001be565b5090506001600160a01b038116620000fa5760405162461bcd60e51b815260206004820152600c60248201526b21706f6f6c4164647265737360a01b604482015260640160405180910390fd5b6001600160a01b0394851660805292841660a05290831660c05290821660e052610100529490941661012052506200020092505050565b6001600160a01b03811681146200014757600080fd5b50565b600080600080600060a086880312156200016357600080fd5b8551620001708162000131565b6020870151909550620001838162000131565b6040870151909450620001968162000131565b6060870151909350620001a98162000131565b80925050608086015190509295509295909350565b60008060408385031215620001d257600080fd5b8251620001df8162000131565b602084015190925060038110620001f557600080fd5b809150509250929050565b60805160a05160c05160e05161010051610120516111c8620002b16000396000818161017d015281816102cc015261035001526000818161012f015261061801526000818160e80152818161022201528181610380015261086e0152600081816101560152818161053901526106e50152600081816101cb0152818161049a015281816104e5015261073b0152600081816101a4015281816105e901528181610707015261075d01526111c86000f3fe608060405234801561001057600080fd5b50600436106100a35760003560e01c80638f1483f311610076578063b026e2271161005b578063b026e22714610178578063bc1638461461019f578063beeadf16146101c657600080fd5b80638f1483f31461012a578063ad5c46481461015157600080fd5b806323f15c17146100a85780632968f616146100ce578063804cca0a146100e35780638757b15b14610122575b600080fd5b6100bb6100b6366004610d50565b6101ed565b6040519081526020015b60405180910390f35b6100e16100dc366004610d83565b610200565b005b61010a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100c5565b6100e1610331565b6100bb7f000000000000000000000000000000000000000000000000000000000000000081565b61010a7f000000000000000000000000000000000000000000000000000000000000000081565b61010a7f000000000000000000000000000000000000000000000000000000000000000081565b61010a7f000000000000000000000000000000000000000000000000000000000000000081565b61010a7f000000000000000000000000000000000000000000000000000000000000000081565b60006101f98383610440565b9392505050565b61020a848461048d565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610271573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102959190610dd9565b604051631e97b6e960e01b81523360048201526024810182905284151560448201526001600160a01b0384811660648301529192507f000000000000000000000000000000000000000000000000000000000000000090911690631e97b6e990608401600060405180830381600087803b15801561031257600080fd5b505af1158015610326573d6000803e3d6000fd5b505050505050505050565b6103396106d8565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af11580156103c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103ed9190610df2565b61043e5760405162461bcd60e51b815260206004820152600960248201527f21617070726f76616c000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b565b60008061044b610784565b90506000612710848361046688670de0b6b3a7640000610e0f565b6104709190610e3c565b61047a9190610e0f565b6104849190610e3c565b95945050505050565b6104c26001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308561091d565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061051757610517610e74565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000008160018151811061056b5761056b610e74565b6001600160a01b0392909216602092830291909101820152604080516002808252606082018352600093919290918301908036833701905050905083816000815181106105ba576105ba610e74565b6020026020010181815250506000816001815181106105db576105db610e74565b6020026020010181815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b95cac287f0000000000000000000000000000000000000000000000000000000000000000303060405180608001604052808881526020018781526020016001888b60405160200161066693929190610ea0565b6040516020818303038152906040528152602001600015158152506040518563ffffffff1660e01b81526004016106a09493929190610f9a565b600060405180830381600087803b1580156106ba57600080fd5b505af11580156106ce573d6000803e3d6000fd5b5050505050505050565b61072e6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000006000196109bb565b61043e6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000006000196109bb565b604080516001808252818301909252600091829190816020015b6107c36040805160608101909152806000815260200160008152602001600081525090565b81526020019060019003908161079e5790505090506001816000815181106107ed576107ed610e74565b602002602001015160000190600281111561080a5761080a610e8a565b9081600281111561081d5761081d610e8a565b81525050610e108160008151811061083757610837610e74565b6020026020010151602001818152505060008160008151811061085c5761085c610e74565b602002602001015160400181815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316631dccd830826040518263ffffffff1660e01b81526004016108b89190611065565b600060405180830381865afa1580156108d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108fd91908101906110ce565b60008151811061090f5761090f610e74565b602002602001015191505090565b6040516001600160a01b03808516602483015283166044820152606481018290526109b59085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610adc565b50505050565b801580610a355750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610a0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a339190610dd9565b155b610aa75760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610435565b6040516001600160a01b038316602482015260448101829052610ad790849063095ea7b360e01b90606401610951565b505050565b6000610b31826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610bc19092919063ffffffff16565b805190915015610ad75780806020019051810190610b4f9190610df2565b610ad75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610435565b6060610bd08484600085610bd8565b949350505050565b606082471015610c505760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610435565b843b610c9e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610435565b600080866001600160a01b03168587604051610cba919061118c565b60006040518083038185875af1925050503d8060008114610cf7576040519150601f19603f3d011682016040523d82523d6000602084013e610cfc565b606091505b5091509150610d0c828286610d17565b979650505050505050565b60608315610d265750816101f9565b825115610d365782518084602001fd5b8160405162461bcd60e51b815260040161043591906111a8565b60008060408385031215610d6357600080fd5b50508035926020909101359150565b8015158114610d8057600080fd5b50565b60008060008060808587031215610d9957600080fd5b84359350602085013592506040850135610db281610d72565b915060608501356001600160a01b0381168114610dce57600080fd5b939692955090935050565b600060208284031215610deb57600080fd5b5051919050565b600060208284031215610e0457600080fd5b81516101f981610d72565b6000816000190483118215151615610e3757634e487b7160e01b600052601160045260246000fd5b500290565b600082610e5957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60006060820160048610610eb657610eb6610e8a565b8583526020606081850152818651808452608086019150828801935060005b81811015610ef157845183529383019391830191600101610ed5565b5050809350505050826040830152949350505050565b600081518084526020808501945080840160005b83811015610f3757815187529582019590820190600101610f1b565b509495945050505050565b60005b83811015610f5d578181015183820152602001610f45565b838111156109b55750506000910152565b60008151808452610f86816020860160208601610f42565b601f01601f19169290920160200192915050565b848152600060206001600160a01b038087168285015280861660408501526080606085015261010084018551608080870152818151808452610120880191508583019350600092505b8083101561100557835185168252928501926001929092019190850190610fe3565b50848801519450607f199350838782030160a08801526110258186610f07565b94505050506040850151818584030160c08601526110438382610f6e565b92505050606084015161105a60e085018215159052565b509695505050505050565b602080825282518282018190526000919060409081850190868401855b828110156110c157815180516003811061109e5761109e610e8a565b855280870151878601528501518585015260609093019290850190600101611082565b5091979650505050505050565b600060208083850312156110e157600080fd5b825167ffffffffffffffff808211156110f957600080fd5b818501915085601f83011261110d57600080fd5b81518181111561111f5761111f610e5e565b8060051b604051601f19603f8301168101818110858211171561114457611144610e5e565b60405291825284820192508381018501918883111561116257600080fd5b938501935b8285101561118057845184529385019392850192611167565b98975050505050505050565b6000825161119e818460208701610f42565b9190910192915050565b6020815260006101f96020830184610f6e56fea164736f6c634300080b000a000000000000000000000000ead792b55340aa20181a80d6a16db6a0ecd1b827000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25c6ee304399dbdb9c8ef030ab642b10820db8f56000200000000000000000014
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a35760003560e01c80638f1483f311610076578063b026e2271161005b578063b026e22714610178578063bc1638461461019f578063beeadf16146101c657600080fd5b80638f1483f31461012a578063ad5c46481461015157600080fd5b806323f15c17146100a85780632968f616146100ce578063804cca0a146100e35780638757b15b14610122575b600080fd5b6100bb6100b6366004610d50565b6101ed565b6040519081526020015b60405180910390f35b6100e16100dc366004610d83565b610200565b005b61010a7f0000000000000000000000005c6ee304399dbdb9c8ef030ab642b10820db8f5681565b6040516001600160a01b0390911681526020016100c5565b6100e1610331565b6100bb7f5c6ee304399dbdb9c8ef030ab642b10820db8f5600020000000000000000001481565b61010a7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b61010a7f000000000000000000000000ead792b55340aa20181a80d6a16db6a0ecd1b82781565b61010a7f000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c881565b61010a7f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d81565b60006101f98383610440565b9392505050565b61020a848461048d565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000005c6ee304399dbdb9c8ef030ab642b10820db8f566001600160a01b0316906370a0823190602401602060405180830381865afa158015610271573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102959190610dd9565b604051631e97b6e960e01b81523360048201526024810182905284151560448201526001600160a01b0384811660648301529192507f000000000000000000000000ead792b55340aa20181a80d6a16db6a0ecd1b82790911690631e97b6e990608401600060405180830381600087803b15801561031257600080fd5b505af1158015610326573d6000803e3d6000fd5b505050505050505050565b6103396106d8565b60405163095ea7b360e01b81526001600160a01b037f000000000000000000000000ead792b55340aa20181a80d6a16db6a0ecd1b8278116600483015260001960248301527f0000000000000000000000005c6ee304399dbdb9c8ef030ab642b10820db8f56169063095ea7b3906044016020604051808303816000875af11580156103c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103ed9190610df2565b61043e5760405162461bcd60e51b815260206004820152600960248201527f21617070726f76616c000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b565b60008061044b610784565b90506000612710848361046688670de0b6b3a7640000610e0f565b6104709190610e3c565b61047a9190610e0f565b6104849190610e3c565b95945050505050565b6104c26001600160a01b037f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d1633308561091d565b6040805160028082526060820183526000926020830190803683370190505090507f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d8160008151811061051757610517610e74565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061056b5761056b610e74565b6001600160a01b0392909216602092830291909101820152604080516002808252606082018352600093919290918301908036833701905050905083816000815181106105ba576105ba610e74565b6020026020010181815250506000816001815181106105db576105db610e74565b6020026020010181815250507f000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c86001600160a01b031663b95cac287f5c6ee304399dbdb9c8ef030ab642b10820db8f56000200000000000000000014303060405180608001604052808881526020018781526020016001888b60405160200161066693929190610ea0565b6040516020818303038152906040528152602001600015158152506040518563ffffffff1660e01b81526004016106a09493929190610f9a565b600060405180830381600087803b1580156106ba57600080fd5b505af11580156106ce573d6000803e3d6000fd5b5050505050505050565b61072e6001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2167f000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c86000196109bb565b61043e6001600160a01b037f000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d167f000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c86000196109bb565b604080516001808252818301909252600091829190816020015b6107c36040805160608101909152806000815260200160008152602001600081525090565b81526020019060019003908161079e5790505090506001816000815181106107ed576107ed610e74565b602002602001015160000190600281111561080a5761080a610e8a565b9081600281111561081d5761081d610e8a565b81525050610e108160008151811061083757610837610e74565b6020026020010151602001818152505060008160008151811061085c5761085c610e74565b602002602001015160400181815250507f0000000000000000000000005c6ee304399dbdb9c8ef030ab642b10820db8f566001600160a01b0316631dccd830826040518263ffffffff1660e01b81526004016108b89190611065565b600060405180830381865afa1580156108d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108fd91908101906110ce565b60008151811061090f5761090f610e74565b602002602001015191505090565b6040516001600160a01b03808516602483015283166044820152606481018290526109b59085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610adc565b50505050565b801580610a355750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610a0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a339190610dd9565b155b610aa75760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610435565b6040516001600160a01b038316602482015260448101829052610ad790849063095ea7b360e01b90606401610951565b505050565b6000610b31826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610bc19092919063ffffffff16565b805190915015610ad75780806020019051810190610b4f9190610df2565b610ad75760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610435565b6060610bd08484600085610bd8565b949350505050565b606082471015610c505760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610435565b843b610c9e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610435565b600080866001600160a01b03168587604051610cba919061118c565b60006040518083038185875af1925050503d8060008114610cf7576040519150601f19603f3d011682016040523d82523d6000602084013e610cfc565b606091505b5091509150610d0c828286610d17565b979650505050505050565b60608315610d265750816101f9565b825115610d365782518084602001fd5b8160405162461bcd60e51b815260040161043591906111a8565b60008060408385031215610d6357600080fd5b50508035926020909101359150565b8015158114610d8057600080fd5b50565b60008060008060808587031215610d9957600080fd5b84359350602085013592506040850135610db281610d72565b915060608501356001600160a01b0381168114610dce57600080fd5b939692955090935050565b600060208284031215610deb57600080fd5b5051919050565b600060208284031215610e0457600080fd5b81516101f981610d72565b6000816000190483118215151615610e3757634e487b7160e01b600052601160045260246000fd5b500290565b600082610e5957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60006060820160048610610eb657610eb6610e8a565b8583526020606081850152818651808452608086019150828801935060005b81811015610ef157845183529383019391830191600101610ed5565b5050809350505050826040830152949350505050565b600081518084526020808501945080840160005b83811015610f3757815187529582019590820190600101610f1b565b509495945050505050565b60005b83811015610f5d578181015183820152602001610f45565b838111156109b55750506000910152565b60008151808452610f86816020860160208601610f42565b601f01601f19169290920160200192915050565b848152600060206001600160a01b038087168285015280861660408501526080606085015261010084018551608080870152818151808452610120880191508583019350600092505b8083101561100557835185168252928501926001929092019190850190610fe3565b50848801519450607f199350838782030160a08801526110258186610f07565b94505050506040850151818584030160c08601526110438382610f6e565b92505050606084015161105a60e085018215159052565b509695505050505050565b602080825282518282018190526000919060409081850190868401855b828110156110c157815180516003811061109e5761109e610e8a565b855280870151878601528501518585015260609093019290850190600101611082565b5091979650505050505050565b600060208083850312156110e157600080fd5b825167ffffffffffffffff808211156110f957600080fd5b818501915085601f83011261110d57600080fd5b81518181111561111f5761111f610e5e565b8060051b604051601f19603f8301168101818110858211171561114457611144610e5e565b60405291825284820192508381018501918883111561116257600080fd5b938501935b8285101561118057845184529385019392850192611167565b98975050505050505050565b6000825161119e818460208701610f42565b9190910192915050565b6020815260006101f96020830184610f6e56fea164736f6c634300080b000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ead792b55340aa20181a80d6a16db6a0ecd1b827000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25c6ee304399dbdb9c8ef030ab642b10820db8f56000200000000000000000014
-----Decoded View---------------
Arg [0] : _crvDeposit (address): 0xeAd792B55340Aa20181A80d6a16db6A0ECd1b827
Arg [1] : _balancerVault (address): 0xBA12222222228d8Ba445958a75a0704d566BF2C8
Arg [2] : _bal (address): 0xba100000625a3754423978a60c9317c58a424e3D
Arg [3] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [4] : _balETHPoolId (bytes32): 0x5c6ee304399dbdb9c8ef030ab642b10820db8f56000200000000000000000014
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000ead792b55340aa20181a80d6a16db6a0ecd1b827
Arg [1] : 000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8
Arg [2] : 000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d
Arg [3] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [4] : 5c6ee304399dbdb9c8ef030ab642b10820db8f56000200000000000000000014
Loading...
Loading
Loading...
Loading
OVERVIEW
This is the entry point for BAL > auraBAL wrapping. It accepts BAL and converts it to B-80BAL-20WETH BPT to then send to "auraBALBptDepositor".Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.