Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,040 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Redeem In Single... | 11937938 | 1427 days ago | IN | 0 ETH | 0.18736577 | ||||
Redeem In Single... | 11935631 | 1427 days ago | IN | 0 ETH | 0.20362198 | ||||
Mint | 11928304 | 1428 days ago | IN | 0 ETH | 0.14060777 | ||||
Redeem In Single... | 11919534 | 1430 days ago | IN | 0 ETH | 0.24702268 | ||||
Mint | 11908946 | 1431 days ago | IN | 0 ETH | 0.2584287 | ||||
Mint | 11907018 | 1432 days ago | IN | 0 ETH | 0.34363818 | ||||
Mint | 11872417 | 1437 days ago | IN | 0 ETH | 0.17959077 | ||||
Mint | 11872241 | 1437 days ago | IN | 0 ETH | 0.25026643 | ||||
Mint | 11872192 | 1437 days ago | IN | 0 ETH | 0.18345384 | ||||
Mint | 11871078 | 1437 days ago | IN | 0 ETH | 0.19068079 | ||||
Mint | 11871029 | 1437 days ago | IN | 0 ETH | 0.19256998 | ||||
Redeem In Single... | 11869246 | 1437 days ago | IN | 0 ETH | 0.25460952 | ||||
Redeem In Single... | 11864150 | 1438 days ago | IN | 0 ETH | 0.20260036 | ||||
Mint | 11852187 | 1440 days ago | IN | 0 ETH | 0.12000865 | ||||
Redeem In Single... | 11846282 | 1441 days ago | IN | 0 ETH | 0.2232154 | ||||
Redeem In Single... | 11845987 | 1441 days ago | IN | 0 ETH | 0.09748596 | ||||
Redeem In Single... | 11845984 | 1441 days ago | IN | 0 ETH | 0.05480003 | ||||
Mint | 11808310 | 1447 days ago | IN | 0 ETH | 0.14174351 | ||||
Mint | 11794666 | 1449 days ago | IN | 0 ETH | 0.14960244 | ||||
Mint | 11783924 | 1451 days ago | IN | 0 ETH | 0.18898025 | ||||
Mint | 11781422 | 1451 days ago | IN | 0 ETH | 0.15467766 | ||||
Mint | 11781056 | 1451 days ago | IN | 0 ETH | 0.0126 | ||||
Mint | 11778017 | 1451 days ago | IN | 0 ETH | 0.01409467 | ||||
Mint | 11772775 | 1452 days ago | IN | 0 ETH | 0.20133254 | ||||
Mint | 11772660 | 1452 days ago | IN | 0 ETH | 0.20883967 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
YVaultZap
Compiler Version
v0.5.17+commit.d19bba13
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-22 */ pragma solidity 0.5.17; 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); } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } library SafeERC20 { using SafeMath for uint256; 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)); } 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' // solhint-disable-next-line max-line-length 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).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } interface ICurveDeposit { function add_liquidity(uint[4] calldata uamounts, uint min_mint_amount) external; function remove_liquidity(uint amount, uint[4] calldata min_uamounts) external; function remove_liquidity_imbalance(uint[4] calldata uamounts, uint max_burn_amount) external; function remove_liquidity_one_coin(uint _token_amount, int128 i, uint min_uamount) external; function calc_withdraw_one_coin(uint _token_amount, int128 i) external view returns(uint); } interface ICurve { function add_liquidity(uint[4] calldata uamounts, uint min_mint_amount) external; function remove_liquidity_imbalance(uint[4] calldata uamounts, uint max_burn_amount) external; function remove_liquidity(uint amount, uint[4] calldata min_amounts) external; function calc_token_amount(uint[4] calldata inAmounts, bool deposit) external view returns(uint); function balances(int128 i) external view returns(uint); function get_virtual_price() external view returns(uint); function exchange(int128 i, int128 j, uint256 dx, uint256 min_dy) external; // for tests function mock_add_to_balance(uint[4] calldata amounts) external; } library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? 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); } } interface ICore { function mint(uint dusdAmount, address account) external returns(uint usd); function redeem(uint dusdAmount, address account) external returns(uint usd); function dusdToUsd(uint _dusd, bool fee) external view returns(uint usd); function peaks(address peak) external view returns (uint,uint,uint8); } interface IPeak { function portfolioValue() external view returns(uint); } contract IController { function earn(address _token) external; function vaultWithdraw(IERC20 token, uint _shares) external; function withdraw(IERC20 token, uint amount) external; function getPricePerFullShare(address token) external view returns(uint); } contract Initializable { bool initialized = false; modifier notInitialized() { require(!initialized, "already initialized"); initialized = true; _; } // Reserved storage space to allow for layout changes in the future. uint256[20] private _gap; function getStore(uint a) internal view returns(uint) { require(a < 20, "Not allowed"); return _gap[a]; } function setStore(uint a, uint val) internal { require(a < 20, "Not allowed"); _gap[a] = val; } } contract OwnableProxy { bytes32 constant OWNER_SLOT = keccak256("proxy.owner"); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() internal { _transferOwnership(msg.sender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns(address _owner) { bytes32 position = OWNER_SLOT; assembly { _owner := sload(position) } } modifier onlyOwner() { require(isOwner(), "NOT_OWNER"); _; } function isOwner() public view returns (bool) { return owner() == msg.sender; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "OwnableProxy: new owner is the zero address"); emit OwnershipTransferred(owner(), newOwner); bytes32 position = OWNER_SLOT; assembly { sstore(position, newOwner) } } } contract YVaultPeak is OwnableProxy, Initializable, IPeak { using SafeERC20 for IERC20; using SafeMath for uint; using Math for uint; string constant ERR_INSUFFICIENT_FUNDS = "INSUFFICIENT_FUNDS"; uint constant MAX = 10000; uint min; uint redeemMultiplier; uint[4] feed; // unused for now but might need later ICore core; ICurve ySwap; IERC20 yCrv; IERC20 yUSD; IController controller; function initialize(IController _controller) public notInitialized { controller = _controller; // these need to be initialzed here, because the contract is used via a proxy core = ICore(0xE449Ca7d10b041255E7e989D158Bee355d8f88d3); ySwap = ICurve(0x45F783CCE6B7FF23B2ab2D70e416cdb7D6055f51); yCrv = IERC20(0xdF5e0e81Dff6FAF3A7e52BA697820c5e32D806A8); yUSD = IERC20(0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c); _setParams( 200, // 200.div(10000) implies to keep 2% of yCRV in the contract 9998 // 9998.div(10000) implies a redeem fee of .02% ); } function mintWithYcrv(uint inAmount) external returns(uint dusdAmount) { yCrv.safeTransferFrom(msg.sender, address(this), inAmount); dusdAmount = calcMintWithYcrv(inAmount); core.mint(dusdAmount, msg.sender); // best effort at keeping min.div(MAX) funds here uint farm = toFarm(); if (farm > 0) { yCrv.safeTransfer(address(controller), farm); controller.earn(address(yCrv)); // this is acting like a callback } } // Sets minimum required on-hand to keep small withdrawals cheap function toFarm() internal view returns (uint) { (uint here, uint total) = yCrvDistribution(); uint shouldBeHere = total.mul(min).div(MAX); if (here > shouldBeHere) { return here.sub(shouldBeHere); } return 0; } function yCrvDistribution() public view returns (uint here, uint total) { here = yCrv.balanceOf(address(this)); total = yUSD.balanceOf(address(controller)) .mul(controller.getPricePerFullShare(address(yCrv))) .div(1e18) .add(here); } function calcMintWithYcrv(uint inAmount) public view returns (uint dusdAmount) { return inAmount.mul(yCrvToUsd()).div(1e18); } function redeemInYcrv(uint dusdAmount, uint minOut) external returns(uint _yCrv) { core.redeem(dusdAmount, msg.sender); _yCrv = dusdAmount.mul(1e18).div(yCrvToUsd()).mul(redeemMultiplier).div(MAX); uint here = yCrv.balanceOf(address(this)); if (here < _yCrv) { // withdraw only as much as needed from the vault uint _withdraw = _yCrv.sub(here).mul(1e18).div(controller.getPricePerFullShare(address(yCrv))); controller.vaultWithdraw(yCrv, _withdraw); _yCrv = yCrv.balanceOf(address(this)); } require(_yCrv >= minOut, ERR_INSUFFICIENT_FUNDS); yCrv.safeTransfer(msg.sender, _yCrv); } function calcRedeemInYcrv(uint dusdAmount) public view returns (uint _yCrv) { _yCrv = dusdAmount.mul(1e18).div(yCrvToUsd()).mul(redeemMultiplier).div(MAX); (,uint total) = yCrvDistribution(); return _yCrv.min(total); } function yCrvToUsd() public view returns (uint) { return ySwap.get_virtual_price(); } // yUSD function mintWithYusd(uint inAmount) external { yUSD.safeTransferFrom(msg.sender, address(controller), inAmount); core.mint(calcMintWithYusd(inAmount), msg.sender); } function calcMintWithYusd(uint inAmount) public view returns (uint dusdAmount) { return inAmount.mul(yUSDToUsd()).div(1e18); } function redeemInYusd(uint dusdAmount, uint minOut) external { core.redeem(dusdAmount, msg.sender); uint r = dusdAmount.mul(1e18).div(yUSDToUsd()).mul(redeemMultiplier).div(MAX); // there should be no reason that this contracts has yUSD, however being safe doesn't hurt uint b = yUSD.balanceOf(address(this)); if (b < r) { controller.withdraw(yUSD, r.sub(b)); r = yUSD.balanceOf(address(this)); } require(r >= minOut, ERR_INSUFFICIENT_FUNDS); yUSD.safeTransfer(msg.sender, r); } function calcRedeemInYusd(uint dusdAmount) public view returns (uint) { uint r = dusdAmount.mul(1e18).div(yUSDToUsd()).mul(redeemMultiplier).div(MAX); return r.min( yUSD.balanceOf(address(this)) .add(yUSD.balanceOf(address(controller)))); } function yUSDToUsd() public view returns (uint) { return controller.getPricePerFullShare(address(yCrv)) // # yCrv .mul(yCrvToUsd()) // USD price .div(1e18); } function portfolioValue() external view returns(uint) { (,uint total) = yCrvDistribution(); return total.mul(yCrvToUsd()).div(1e18); } function vars() external view returns( address _core, address _ySwap, address _yCrv, address _yUSD, address _controller, uint _redeemMultiplier, uint _min ) { return( address(core), address(ySwap), address(yCrv), address(yUSD), address(controller), redeemMultiplier, min ); } // Privileged methods function setParams(uint _min, uint _redeemMultiplier) external onlyOwner { _setParams(_min, _redeemMultiplier); } function _setParams(uint _min, uint _redeemMultiplier) internal { require(min <= MAX && redeemMultiplier <= MAX, "Invalid"); min = _min; redeemMultiplier = _redeemMultiplier; } } contract YVaultZap { using SafeMath for uint; using SafeERC20 for IERC20; uint constant N_COINS = 4; string constant ERR_SLIPPAGE = "ERR_SLIPPAGE"; uint[N_COINS] ZEROES = [uint(0),uint(0),uint(0),uint(0)]; address[N_COINS] coins = [ 0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01, // ydai 0xd6aD7a6750A7593E092a9B218d66C0A814a3436e, // yusdc 0x83f798e925BcD4017Eb265844FDDAbb448f1707D, // yusdt 0x73a052500105205d34Daf004eAb301916DA8190f // ytusd ]; address[N_COINS] underlyingCoins = [ 0x6B175474E89094C44Da98b954EedeAC495271d0F, // dai 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48, // usdc 0xdAC17F958D2ee523a2206206994597C13D831ec7, // usdt 0x0000000000085d4780B73119b644AE5ecd22b376 // tusd ]; ICurveDeposit yDeposit = ICurveDeposit(0xbBC81d23Ea2c3ec7e56D39296F0cbB648873a5d3); ICurve ySwap = ICurve(0x45F783CCE6B7FF23B2ab2D70e416cdb7D6055f51); IERC20 yCrv = IERC20(0xdF5e0e81Dff6FAF3A7e52BA697820c5e32D806A8); IERC20 dusd = IERC20(0x5BC25f649fc4e26069dDF4cF4010F9f706c23831); YVaultPeak yVaultPeak; constructor (YVaultPeak _yVaultPeak) public { yVaultPeak = _yVaultPeak; } /** * @dev Mint DUSD * @param inAmounts Exact inAmounts in the same order as required by the curve pool * @param minDusdAmount Minimum DUSD to mint, used for capping slippage */ function mint(uint[N_COINS] calldata inAmounts, uint minDusdAmount) external returns (uint dusdAmount) { address[N_COINS] memory _coins = underlyingCoins; for (uint i = 0; i < N_COINS; i++) { if (inAmounts[i] > 0) { IERC20(_coins[i]).safeTransferFrom(msg.sender, address(this), inAmounts[i]); IERC20(_coins[i]).safeApprove(address(yDeposit), inAmounts[i]); } } yDeposit.add_liquidity(inAmounts, 0); uint inAmount = yCrv.balanceOf(address(this)); yCrv.safeApprove(address(yVaultPeak), 0); yCrv.safeApprove(address(yVaultPeak), inAmount); dusdAmount = yVaultPeak.mintWithYcrv(inAmount); require(dusdAmount >= minDusdAmount, ERR_SLIPPAGE); dusd.safeTransfer(msg.sender, dusdAmount); } function calcMint(uint[N_COINS] memory inAmounts) public view returns (uint dusdAmount) { for(uint i = 0; i < N_COINS; i++) { inAmounts[i] = inAmounts[i].mul(1e18).div(yERC20(coins[i]).getPricePerFullShare()); } uint _yCrv = ySwap.calc_token_amount(inAmounts, true /* deposit */); return yVaultPeak.calcMintWithYcrv(_yCrv); } /** * @dev Redeem DUSD * @param dusdAmount Exact dusdAmount to burn * @param minAmounts Min expected amounts to cap slippage */ function redeem(uint dusdAmount, uint[N_COINS] calldata minAmounts) external { dusd.safeTransferFrom(msg.sender, address(this), dusdAmount); uint r = yVaultPeak.redeemInYcrv(dusdAmount, 0); yCrv.safeApprove(address(yDeposit), r); yDeposit.remove_liquidity(r, ZEROES); address[N_COINS] memory _coins = underlyingCoins; uint toTransfer; for (uint i = 0; i < N_COINS; i++) { toTransfer = IERC20(_coins[i]).balanceOf(address(this)); require(toTransfer >= minAmounts[i], ERR_SLIPPAGE); IERC20(_coins[i]).safeTransfer(msg.sender, toTransfer); } } function calcRedeem(uint dusdAmount) public view returns (uint[N_COINS] memory amounts) { uint _yCrv = yVaultPeak.calcRedeemInYcrv(dusdAmount); uint totalSupply = yCrv.totalSupply(); for(uint i = 0; i < N_COINS; i++) { amounts[i] = ySwap.balances(int128(i)) .mul(_yCrv) .div(totalSupply) .mul(yERC20(coins[i]).getPricePerFullShare()) .div(1e18); } } function redeemInSingleCoin(uint dusdAmount, uint i, uint minOut) external { dusd.safeTransferFrom(msg.sender, address(this), dusdAmount); uint r = yVaultPeak.redeemInYcrv(dusdAmount, 0); yCrv.safeApprove(address(yDeposit), r); yDeposit.remove_liquidity_one_coin(r, int128(i), minOut); // checks for slippage IERC20 coin = IERC20(underlyingCoins[i]); uint toTransfer = coin.balanceOf(address(this)); coin.safeTransfer(msg.sender, toTransfer); } function calcRedeemInSingleCoin(uint dusdAmount, uint i) public view returns(uint) { uint _yCrv = yVaultPeak.calcRedeemInYcrv(dusdAmount); return yDeposit.calc_withdraw_one_coin(_yCrv, int128(i)); } } interface yERC20 { function getPricePerFullShare() external view returns(uint); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract YVaultPeak","name":"_yVaultPeak","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":true,"inputs":[{"internalType":"uint256[4]","name":"inAmounts","type":"uint256[4]"}],"name":"calcMint","outputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"}],"name":"calcRedeem","outputs":[{"internalType":"uint256[4]","name":"amounts","type":"uint256[4]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"},{"internalType":"uint256","name":"i","type":"uint256"}],"name":"calcRedeemInSingleCoin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[4]","name":"inAmounts","type":"uint256[4]"},{"internalType":"uint256","name":"minDusdAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"},{"internalType":"uint256[4]","name":"minAmounts","type":"uint256[4]"}],"name":"redeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"},{"internalType":"uint256","name":"i","type":"uint256"},{"internalType":"uint256","name":"minOut","type":"uint256"}],"name":"redeemInSingleCoin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060800160405280600081526020016000815260200160008152602001600081525060009060046200003b9291906200047f565b5060405180608001604052807316de59092dae5ccf4a1e6439d611fd0653f0bd0173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173d6ad7a6750a7593e092a9b218d66c0a814a3436e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017383f798e925bcd4017eb265844fddabb448f1707d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017373a052500105205d34daf004eab301916da8190f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060049060046200016f929190620004c4565b506040518060800160405280736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173dac17f958d2ee523a2206206994597c13d831ec773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016e085d4780b73119b644ae5ecd22b37673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060089060046200029e929190620004c4565b5073bbc81d23ea2c3ec7e56d39296f0cbb648873a5d3600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507345f783cce6b7ff23b2ab2d70e416cdb7d6055f51600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073df5e0e81dff6faf3a7e52ba697820c5e32d806a8600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735bc25f649fc4e26069ddf4cf4010f9f706c23831600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200040057600080fd5b506040516200268f3803806200268f833981810160405260208110156200042657600080fd5b810190808051906020019092919050505080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620005b4565b8260048101928215620004b1579160200282015b82811115620004b057825182559160200191906001019062000493565b5b509050620004c0919062000546565b5090565b826004810192821562000533579160200282015b82811115620005325782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620004d8565b5b5090506200054291906200056e565b5090565b6200056b91905b80821115620005675760008160009055506001016200054d565b5090565b90565b620005b191905b80821115620005ad57600081816101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555060010162000575565b5090565b90565b6120cb80620005c46000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80630ab72e4f1461006757806385874a89146100a9578063acc41161146100f5578063cfa84cd014610141578063ed21b975146101ba578063f52a242114610224575b600080fd5b6100a76004803603606081101561007d57600080fd5b8101908080359060200190929190803590602001909291908035906020019092919050505061025c565b005b6100df600480360360408110156100bf57600080fd5b81019080803590602001909291908035906020019092919050505061059c565b6040518082815260200191505060405180910390f35b61012b600480360360a081101561010b57600080fd5b810190808060800190919291929080359060200190929190505050610714565b6040518082815260200191505060405180910390f35b6101a46004803603608081101561015757600080fd5b8101908080608001906004806020026040519081016040528092919082600460200280828437600081840152601f19601f8201169050808301925050505050509192919290505050610cdb565b6040518082815260200191505060405180910390f35b6101e6600480360360208110156101d057600080fd5b8101908080359060200190929190505050610f97565b6040518082600460200280838360005b838110156102115780820151818401526020810190506101f6565b5050505090500191505060405180910390f35b61025a600480360360a081101561023a57600080fd5b8101908080359060200190929190806080019091929192905050506112e3565b005b6102ab333085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117ae909392919063ffffffff16565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321295d878560006040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b15801561032b57600080fd5b505af115801561033f573d6000803e3d6000fd5b505050506040513d602081101561035557600080fd5b810190808051906020019092919050505090506103d7600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a4d01d28285856040518463ffffffff1660e01b81526004018084815260200183600f0b600f0b81526020018281526020019350505050600060405180830381600087803b15801561046257600080fd5b505af1158015610476573d6000803e3d6000fd5b5050505060006008846004811061048957fe5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561052c57600080fd5b505afa158015610540573d6000803e3d6000fd5b505050506040513d602081101561055657600080fd5b8101908080519060200190929190505050905061059433828473ffffffffffffffffffffffffffffffffffffffff16611ad49092919063ffffffff16565b505050505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663613bce30856040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561061257600080fd5b505afa158015610626573d6000803e3d6000fd5b505050506040513d602081101561063c57600080fd5b81019080805190602001909291905050509050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc2b27d782856040518363ffffffff1660e01b81526004018083815260200182600f0b600f0b81526020019250505060206040518083038186803b1580156106d057600080fd5b505afa1580156106e4573d6000803e3d6000fd5b505050506040513d60208110156106fa57600080fd5b810190808051906020019092919050505091505092915050565b600061071e611fd1565b600860048060200260405190810160405280929190826004801561078d576020028201915b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610743575b5050505050905060008090505b60048110156108845760008582600481106107b157fe5b602002013511156108775761080933308784600481106107cd57fe5b60200201358585600481106107de57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166117ae909392919063ffffffff16565b610876600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686836004811061083b57fe5b602002013584846004811061084c57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b5b808060010191505061079a565b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663029b2f348560006040518363ffffffff1660e01b81526004018083600460200280828437600081840152601f19601f82011690508083019250505082815260200192505050600060405180830381600087803b15801561091e57600080fd5b505af1158015610932573d6000803e3d6000fd5b505050506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156109d757600080fd5b505afa1580156109eb573d6000803e3d6000fd5b505050506040513d6020811015610a0157600080fd5b81019080805190602001909291905050509050610a84601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b610af3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166380ae5528826040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b158015610b6857600080fd5b505af1158015610b7c573d6000803e3d6000fd5b505050506040513d6020811015610b9257600080fd5b81019080805190602001909291905050509250838310156040518060400160405280600c81526020017f4552525f534c495050414745000000000000000000000000000000000000000081525090610c85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c4a578082015181840152602081019050610c2f565b50505050905090810190601f168015610c775780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50610cd33384600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ad49092919063ffffffff16565b505092915050565b600080600090505b6004811015610df957610dd760048260048110610cfc57fe5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377c7b8fc6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d6357600080fd5b505afa158015610d77573d6000803e3d6000fd5b505050506040513d6020811015610d8d57600080fd5b8101908080519060200190929190505050610dc9670de0b6b3a7640000868560048110610db657fe5b6020020151611ba590919063ffffffff16565b611c2b90919063ffffffff16565b838260048110610de357fe5b6020020181815250508080600101915050610ce3565b506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf701ff78460016040518363ffffffff1660e01b81526004018083600460200280838360005b83811015610e77578082015181840152602081019050610e5c565b50505050905001821515151581526020019250505060206040518083038186803b158015610ea457600080fd5b505afa158015610eb8573d6000803e3d6000fd5b505050506040513d6020811015610ece57600080fd5b81019080805190602001909291905050509050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633cd2e794826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610f5457600080fd5b505afa158015610f68573d6000803e3d6000fd5b505050506040513d6020811015610f7e57600080fd5b8101908080519060200190929190505050915050919050565b610f9f611ff3565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663613bce30846040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561101457600080fd5b505afa158015611028573d6000803e3d6000fd5b505050506040513d602081101561103e57600080fd5b810190808051906020019092919050505090506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110bb57600080fd5b505afa1580156110cf573d6000803e3d6000fd5b505050506040513d60208110156110e557600080fd5b8101908080519060200190929190505050905060008090505b60048110156112db576112b9670de0b6b3a76400006112ab6004846004811061112357fe5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377c7b8fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561118a57600080fd5b505afa15801561119e573d6000803e3d6000fd5b505050506040513d60208110156111b457600080fd5b810190808051906020019092919050505061129d8661128f89600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663065a80d88a6040518263ffffffff1660e01b81526004018082600f0b600f0b815260200191505060206040518083038186803b15801561124657600080fd5b505afa15801561125a573d6000803e3d6000fd5b505050506040513d602081101561127057600080fd5b8101908080519060200190929190505050611ba590919063ffffffff16565b611c2b90919063ffffffff16565b611ba590919063ffffffff16565b611c2b90919063ffffffff16565b8482600481106112c557fe5b60200201818152505080806001019150506110fe565b505050919050565b611332333084600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117ae909392919063ffffffff16565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321295d878460006040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b1580156113b257600080fd5b505af11580156113c6573d6000803e3d6000fd5b505050506040513d60208110156113dc57600080fd5b8101908080519060200190929190505050905061145e600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d49d8758260006040518363ffffffff1660e01b81526004018083815260200182600480156114dc576020028201915b8154815260200190600101908083116114c8575b505092505050600060405180830381600087803b1580156114fc57600080fd5b505af1158015611510573d6000803e3d6000fd5b5050505061151c611fd1565b600860048060200260405190810160405280929190826004801561158b576020028201915b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611541575b50505050509050600080600090505b60048110156117a6578281600481106115af57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561163057600080fd5b505afa158015611644573d6000803e3d6000fd5b505050506040513d602081101561165a57600080fd5b8101908080519060200190929190505050915084816004811061167957fe5b60200201358210156040518060400160405280600c81526020017f4552525f534c49505041474500000000000000000000000000000000000000008152509061175d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611722578082015181840152602081019050611707565b50505050905090810190601f16801561174f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50611799338385846004811061176f57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff16611ad49092919063ffffffff16565b808060010191505061159a565b505050505050565b6118ae848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c75565b50505050565b60008114806119ae575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d602081101561199b57600080fd5b8101908080519060200190929190505050145b611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806120616036913960400191505060405180910390fd5b611acf838473ffffffffffffffffffffffffffffffffffffffff1663095ea7b3905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c75565b505050565b611ba0838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c75565b505050565b600080831415611bb85760009050611c25565b6000828402905082848281611bc957fe5b0414611c20576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120166021913960400191505060405180910390fd5b809150505b92915050565b6000611c6d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ec0565b905092915050565b611c948273ffffffffffffffffffffffffffffffffffffffff16611f86565b611d06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b60208310611d555780518252602082019150602081019050602083039250611d32565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611db7576040519150601f19603f3d011682016040523d82523d6000602084013e611dbc565b606091505b509150915081611e34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115611eba57808060200190516020811015611e5357600080fd5b8101908080519060200190929190505050611eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612037602a913960400191505060405180910390fd5b5b50505050565b60008083118290611f6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f31578082015181840152602081019050611f16565b50505050905090810190601f168015611f5e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611f7857fe5b049050809150509392505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015611fc857506000801b8214155b92505050919050565b6040518060800160405280600490602082028038833980820191505090505090565b604051806080016040528060049060208202803883398082019150509050509056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820492569f9db811e31666f3a703a8621ce7422294c4864032aaec4ec4a72b1db8964736f6c63430005110032000000000000000000000000a89bd606d5dadda60242e8dedeebc95c41ad8986
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100625760003560e01c80630ab72e4f1461006757806385874a89146100a9578063acc41161146100f5578063cfa84cd014610141578063ed21b975146101ba578063f52a242114610224575b600080fd5b6100a76004803603606081101561007d57600080fd5b8101908080359060200190929190803590602001909291908035906020019092919050505061025c565b005b6100df600480360360408110156100bf57600080fd5b81019080803590602001909291908035906020019092919050505061059c565b6040518082815260200191505060405180910390f35b61012b600480360360a081101561010b57600080fd5b810190808060800190919291929080359060200190929190505050610714565b6040518082815260200191505060405180910390f35b6101a46004803603608081101561015757600080fd5b8101908080608001906004806020026040519081016040528092919082600460200280828437600081840152601f19601f8201169050808301925050505050509192919290505050610cdb565b6040518082815260200191505060405180910390f35b6101e6600480360360208110156101d057600080fd5b8101908080359060200190929190505050610f97565b6040518082600460200280838360005b838110156102115780820151818401526020810190506101f6565b5050505090500191505060405180910390f35b61025a600480360360a081101561023a57600080fd5b8101908080359060200190929190806080019091929192905050506112e3565b005b6102ab333085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117ae909392919063ffffffff16565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321295d878560006040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b15801561032b57600080fd5b505af115801561033f573d6000803e3d6000fd5b505050506040513d602081101561035557600080fd5b810190808051906020019092919050505090506103d7600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a4d01d28285856040518463ffffffff1660e01b81526004018084815260200183600f0b600f0b81526020018281526020019350505050600060405180830381600087803b15801561046257600080fd5b505af1158015610476573d6000803e3d6000fd5b5050505060006008846004811061048957fe5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561052c57600080fd5b505afa158015610540573d6000803e3d6000fd5b505050506040513d602081101561055657600080fd5b8101908080519060200190929190505050905061059433828473ffffffffffffffffffffffffffffffffffffffff16611ad49092919063ffffffff16565b505050505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663613bce30856040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561061257600080fd5b505afa158015610626573d6000803e3d6000fd5b505050506040513d602081101561063c57600080fd5b81019080805190602001909291905050509050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc2b27d782856040518363ffffffff1660e01b81526004018083815260200182600f0b600f0b81526020019250505060206040518083038186803b1580156106d057600080fd5b505afa1580156106e4573d6000803e3d6000fd5b505050506040513d60208110156106fa57600080fd5b810190808051906020019092919050505091505092915050565b600061071e611fd1565b600860048060200260405190810160405280929190826004801561078d576020028201915b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610743575b5050505050905060008090505b60048110156108845760008582600481106107b157fe5b602002013511156108775761080933308784600481106107cd57fe5b60200201358585600481106107de57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166117ae909392919063ffffffff16565b610876600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686836004811061083b57fe5b602002013584846004811061084c57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b5b808060010191505061079a565b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663029b2f348560006040518363ffffffff1660e01b81526004018083600460200280828437600081840152601f19601f82011690508083019250505082815260200192505050600060405180830381600087803b15801561091e57600080fd5b505af1158015610932573d6000803e3d6000fd5b505050506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156109d757600080fd5b505afa1580156109eb573d6000803e3d6000fd5b505050506040513d6020811015610a0157600080fd5b81019080805190602001909291905050509050610a84601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b610af3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166380ae5528826040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b158015610b6857600080fd5b505af1158015610b7c573d6000803e3d6000fd5b505050506040513d6020811015610b9257600080fd5b81019080805190602001909291905050509250838310156040518060400160405280600c81526020017f4552525f534c495050414745000000000000000000000000000000000000000081525090610c85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c4a578082015181840152602081019050610c2f565b50505050905090810190601f168015610c775780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50610cd33384600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ad49092919063ffffffff16565b505092915050565b600080600090505b6004811015610df957610dd760048260048110610cfc57fe5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377c7b8fc6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d6357600080fd5b505afa158015610d77573d6000803e3d6000fd5b505050506040513d6020811015610d8d57600080fd5b8101908080519060200190929190505050610dc9670de0b6b3a7640000868560048110610db657fe5b6020020151611ba590919063ffffffff16565b611c2b90919063ffffffff16565b838260048110610de357fe5b6020020181815250508080600101915050610ce3565b506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf701ff78460016040518363ffffffff1660e01b81526004018083600460200280838360005b83811015610e77578082015181840152602081019050610e5c565b50505050905001821515151581526020019250505060206040518083038186803b158015610ea457600080fd5b505afa158015610eb8573d6000803e3d6000fd5b505050506040513d6020811015610ece57600080fd5b81019080805190602001909291905050509050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633cd2e794826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610f5457600080fd5b505afa158015610f68573d6000803e3d6000fd5b505050506040513d6020811015610f7e57600080fd5b8101908080519060200190929190505050915050919050565b610f9f611ff3565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663613bce30846040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561101457600080fd5b505afa158015611028573d6000803e3d6000fd5b505050506040513d602081101561103e57600080fd5b810190808051906020019092919050505090506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110bb57600080fd5b505afa1580156110cf573d6000803e3d6000fd5b505050506040513d60208110156110e557600080fd5b8101908080519060200190929190505050905060008090505b60048110156112db576112b9670de0b6b3a76400006112ab6004846004811061112357fe5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377c7b8fc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561118a57600080fd5b505afa15801561119e573d6000803e3d6000fd5b505050506040513d60208110156111b457600080fd5b810190808051906020019092919050505061129d8661128f89600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663065a80d88a6040518263ffffffff1660e01b81526004018082600f0b600f0b815260200191505060206040518083038186803b15801561124657600080fd5b505afa15801561125a573d6000803e3d6000fd5b505050506040513d602081101561127057600080fd5b8101908080519060200190929190505050611ba590919063ffffffff16565b611c2b90919063ffffffff16565b611ba590919063ffffffff16565b611c2b90919063ffffffff16565b8482600481106112c557fe5b60200201818152505080806001019150506110fe565b505050919050565b611332333084600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117ae909392919063ffffffff16565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321295d878460006040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b1580156113b257600080fd5b505af11580156113c6573d6000803e3d6000fd5b505050506040513d60208110156113dc57600080fd5b8101908080519060200190929190505050905061145e600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b49092919063ffffffff16565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d49d8758260006040518363ffffffff1660e01b81526004018083815260200182600480156114dc576020028201915b8154815260200190600101908083116114c8575b505092505050600060405180830381600087803b1580156114fc57600080fd5b505af1158015611510573d6000803e3d6000fd5b5050505061151c611fd1565b600860048060200260405190810160405280929190826004801561158b576020028201915b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611541575b50505050509050600080600090505b60048110156117a6578281600481106115af57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561163057600080fd5b505afa158015611644573d6000803e3d6000fd5b505050506040513d602081101561165a57600080fd5b8101908080519060200190929190505050915084816004811061167957fe5b60200201358210156040518060400160405280600c81526020017f4552525f534c49505041474500000000000000000000000000000000000000008152509061175d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611722578082015181840152602081019050611707565b50505050905090810190601f16801561174f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50611799338385846004811061176f57fe5b602002015173ffffffffffffffffffffffffffffffffffffffff16611ad49092919063ffffffff16565b808060010191505061159a565b505050505050565b6118ae848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c75565b50505050565b60008114806119ae575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d602081101561199b57600080fd5b8101908080519060200190929190505050145b611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806120616036913960400191505060405180910390fd5b611acf838473ffffffffffffffffffffffffffffffffffffffff1663095ea7b3905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c75565b505050565b611ba0838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c75565b505050565b600080831415611bb85760009050611c25565b6000828402905082848281611bc957fe5b0414611c20576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120166021913960400191505060405180910390fd5b809150505b92915050565b6000611c6d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ec0565b905092915050565b611c948273ffffffffffffffffffffffffffffffffffffffff16611f86565b611d06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b60208310611d555780518252602082019150602081019050602083039250611d32565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611db7576040519150601f19603f3d011682016040523d82523d6000602084013e611dbc565b606091505b509150915081611e34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115611eba57808060200190516020811015611e5357600080fd5b8101908080519060200190929190505050611eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612037602a913960400191505060405180910390fd5b5b50505050565b60008083118290611f6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f31578082015181840152602081019050611f16565b50505050905090810190601f168015611f5e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611f7857fe5b049050809150509392505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015611fc857506000801b8214155b92505050919050565b6040518060800160405280600490602082028038833980820191505090505090565b604051806080016040528060049060208202803883398082019150509050509056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820492569f9db811e31666f3a703a8621ce7422294c4864032aaec4ec4a72b1db8964736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a89bd606d5dadda60242e8dedeebc95c41ad8986
-----Decoded View---------------
Arg [0] : _yVaultPeak (address): 0xA89BD606d5DadDa60242E8DEDeebC95c41aD8986
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a89bd606d5dadda60242e8dedeebc95c41ad8986
Loading...
Loading
Loading...
Loading
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.