More Info
Private Name Tags
ContractCreator
Latest 7 internal transactions
Advanced mode:
Loading...
Loading
Contract Name:
TokenRewards
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** * @title Earnmates, the DN404 token standard and Volatility Farming * @author [email protected] * website: https://twitter.com/earnmates * telegram: https://t.me/earnmates * docs: https://docs.earnmates.io */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {Context} from "@openzeppelin/contracts/utils/Context.sol"; import {FixedPoint96} from "@uniswap/v3-core/contracts/libraries/FixedPoint96.sol"; import {ISwapRouter} from "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol"; import {IPeripheryImmutableState} from "@uniswap/v3-periphery/contracts/interfaces/IPeripheryImmutableState.sol"; import {IDecentralizedIndex} from "./interfaces/IDecentralizedIndex.sol"; import {ITokenRewards} from "./interfaces/ITokenRewards.sol"; import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol"; import {BokkyPooBahsDateTimeLibrary} from "./libraries/BokkyPooBahsDateTimeLibrary.sol"; import {PoolAddress} from "./libraries/PoolAddress.sol"; contract TokenRewards is ITokenRewards, Context { using SafeERC20 for IERC20; address constant V3_ROUTER = 0xE592427A0AEce92De3Edee1F18E0157C05861564; uint256 constant PRECISION = 10 ** 36; uint24 constant REWARDS_POOL_FEE = 10000; // 1% address immutable INDEX_FUND; address immutable WETH; struct Reward { uint256 excluded; uint256 realized; } address public immutable override trackingToken; address public immutable override rewardsToken; uint256 public override totalShares; uint256 public override totalStakers; mapping(address => uint256) public shares; mapping(address => Reward) public rewards; uint256 _rewardsSwapSlippage = 10; // 1% uint256 _rewardsPerShare; uint256 public rewardsDistributed; uint256 public rewardsDeposited; mapping(uint256 => uint256) public rewardsDepMonthly; modifier onlyTrackingToken() { require(_msgSender() == trackingToken, "UNAUTHORIZED"); _; } constructor( address _indexFund, address _trackingToken, address _rewardsToken, address _weth ) { INDEX_FUND = _indexFund; trackingToken = _trackingToken; rewardsToken = _rewardsToken; WETH = _weth; } function setShares( address _wallet, uint256 _amount, bool _sharesRemoving ) external override onlyTrackingToken { _setShares(_wallet, _amount, _sharesRemoving); } function _setShares( address _wallet, uint256 _amount, bool _sharesRemoving ) internal { if (_sharesRemoving) { _removeShares(_wallet, _amount); emit RemoveShares(_wallet, _amount); } else { _addShares(_wallet, _amount); emit AddShares(_wallet, _amount); } } function _addShares(address _wallet, uint256 _amount) internal { if (shares[_wallet] > 0) { _distributeReward(_wallet); } uint256 sharesBefore = shares[_wallet]; totalShares += _amount; shares[_wallet] += _amount; if (sharesBefore == 0 && shares[_wallet] > 0) { totalStakers++; } rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]); } function _removeShares(address _wallet, uint256 _amount) internal { require(shares[_wallet] > 0 && _amount <= shares[_wallet], "REMOVE"); _distributeReward(_wallet); totalShares -= _amount; shares[_wallet] -= _amount; if (shares[_wallet] == 0) { totalStakers--; } rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]); } function depositFromETH(uint256 _ethAmount) public payable override { require(_ethAmount > 0, "NEEDTKN"); _depositFromETH(_ethAmount); } function _depositFromETH(uint256 _ethAmount) internal { uint256 rewardsAmount = ISwapRouter(V3_ROUTER).exactInputSingle{ value: _ethAmount }( ISwapRouter.ExactInputSingleParams({ tokenIn: WETH, tokenOut: rewardsToken, fee: REWARDS_POOL_FEE, recipient: address(this), deadline: block.timestamp, amountIn: _ethAmount, amountOutMinimum: 0, sqrtPriceLimitX96: 0 }) ); _depositRewards(rewardsAmount); } function depositRewards(uint256 _amount) external override { require(_amount > 0, "DEPAM"); uint256 _rewardsBalBefore = IERC20(rewardsToken).balanceOf( address(this) ); IERC20(rewardsToken).safeTransferFrom( _msgSender(), address(this), _amount ); _depositRewards( IERC20(rewardsToken).balanceOf(address(this)) - _rewardsBalBefore ); } function depositRewardsFromIndexFund(uint256 _amount) external override { require(_msgSender() == INDEX_FUND, "UNAUTHORIZED"); _depositRewards(_amount); } function _depositRewards(uint256 _amountTotal) internal { if (_amountTotal == 0) { return; } if (totalShares == 0) { IERC20(rewardsToken).transfer( Ownable(address(rewardsToken)).owner(), IERC20(rewardsToken).balanceOf(address(this)) ); return; } uint256 _depositAmount = _amountTotal; rewardsDeposited += _depositAmount; rewardsDepMonthly[beginningOfMonth(block.timestamp)] += _depositAmount; _rewardsPerShare += (PRECISION * _depositAmount) / totalShares; emit DepositRewards(_msgSender(), _depositAmount); } function _distributeReward(address _wallet) internal { if (shares[_wallet] == 0) { return; } uint256 _amount = getUnpaid(_wallet); rewards[_wallet].realized += _amount; rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]); if (_amount > 0) { rewardsDistributed += _amount; IERC20(rewardsToken).safeTransfer(_wallet, _amount); emit DistributeReward(_wallet, _amount); } } function beginningOfMonth( uint256 _timestamp ) public pure returns (uint256) { (, , uint256 _dayOfMonth) = BokkyPooBahsDateTimeLibrary.timestampToDate( _timestamp ); return _timestamp - ((_dayOfMonth - 1) * 1 days) - (_timestamp % 1 days); } function claimReward(address _wallet) external override { _distributeReward(_wallet); emit ClaimReward(_wallet); } function getUnpaid(address _wallet) public view returns (uint256) { if (shares[_wallet] == 0) { return 0; } uint256 earnedRewards = _cumulativeRewards(shares[_wallet]); uint256 rewardsExcluded = rewards[_wallet].excluded; if (earnedRewards <= rewardsExcluded) { return 0; } return earnedRewards - rewardsExcluded; } function _cumulativeRewards( uint256 _share ) internal view returns (uint256) { return (_share * _rewardsPerShare) / PRECISION; } receive() external payable { uint256 ethAmount = msg.value; if (ethAmount > 0) { _depositFromETH(ethAmount); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.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; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ 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"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.4.0; /// @title FixedPoint96 /// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format) /// @dev Used in SqrtPriceMath.sol library FixedPoint96 { uint8 internal constant RESOLUTION = 96; uint256 internal constant Q96 = 0x1000000000000000000000000; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol'; /// @title Router token swapping functionality /// @notice Functions for swapping tokens via Uniswap V3 interface ISwapRouter is IUniswapV3SwapCallback { struct ExactInputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; uint160 sqrtPriceLimitX96; } /// @notice Swaps `amountIn` of one token for as much as possible of another token /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata /// @return amountOut The amount of the received token function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut); struct ExactInputParams { bytes path; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; } /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata /// @return amountOut The amount of the received token function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut); struct ExactOutputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; uint160 sqrtPriceLimitX96; } /// @notice Swaps as little as possible of one token for `amountOut` of another token /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata /// @return amountIn The amount of the input token function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn); struct ExactOutputParams { bytes path; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; } /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed) /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata /// @return amountIn The amount of the input token function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Immutable state /// @notice Functions that return immutable state of the router interface IPeripheryImmutableState { /// @return Returns the address of the Uniswap V3 factory function factory() external view returns (address); /// @return Returns the address of WETH9 function WETH9() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IDecentralizedIndex is IERC20 { // all fees: 1 == 0.01%, 10 == 0.1%, 100 == 1% struct Fees { uint256 bond; uint256 debond; uint256 buy; uint256 sell; } event Create(address indexed newIdx, address indexed wallet); event Bond( address indexed wallet, address indexed token, uint256 amountTokensBonded, uint256 amountTokensMinted ); event Debond(address indexed wallet, uint256 amountDebonded); event AddLiquidity(address indexed wallet, uint256 amountTokens, uint256 amountDAI); event RemoveLiquidity(address indexed wallet, uint256 amountLiquidity); function BOND_FEE() external view returns (uint256); function DEBOND_FEE() external view returns (uint256); function WETH() external view returns (address); function created() external view returns (uint256); function lpStakingPool() external view returns (address); function lpRewardsToken() external view returns (address); function getTokenPriceUSDX96(address token) external view returns (uint256); function processPreSwapFeesAndSwap() external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface ITokenRewards { event AddShares(address indexed wallet, uint256 amount); event RemoveShares(address indexed wallet, uint256 amount); event ClaimReward(address indexed wallet); event DistributeReward(address indexed wallet, uint256 amount); event DepositRewards(address indexed wallet, uint256 amount); function totalShares() external view returns (uint256); function totalStakers() external view returns (uint256); function rewardsToken() external view returns (address); function trackingToken() external view returns (address); function depositFromETH(uint256 amount) external payable; function depositRewards(uint256 amount) external; function claimReward(address wallet) external; function setShares( address wallet, uint256 amount, bool sharesRemoving ) external; function depositRewardsFromIndexFund(uint256 amount) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface IUniswapV2Router02 { function factory() external view returns (address); function WETH() external view returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; // ---------------------------------------------------------------------------- // BokkyPooBah's DateTime Library v1.00 // // A gas-efficient Solidity date and time library // // https://github.com/bokkypoobah/BokkyPooBahsDateTimeLibrary // // Tested date range 1970/01/01 to 2345/12/31 // // Conventions: // Unit | Range | Notes // :-------- |:-------------:|:----- // timestamp | >= 0 | Unix timestamp, number of seconds since 1970/01/01 00:00:00 UTC // year | 1970 ... 2345 | // month | 1 ... 12 | // day | 1 ... 31 | // hour | 0 ... 23 | // minute | 0 ... 59 | // second | 0 ... 59 | // dayOfWeek | 1 ... 7 | 1 = Monday, ..., 7 = Sunday // // // Enjoy. (c) BokkyPooBah / Bok Consulting Pty Ltd 2018. // // GNU Lesser General Public License 3.0 // https://www.gnu.org/licenses/lgpl-3.0.en.html // ---------------------------------------------------------------------------- library BokkyPooBahsDateTimeLibrary { uint256 constant SECONDS_PER_DAY = 24 * 60 * 60; int256 constant OFFSET19700101 = 2440588; // ------------------------------------------------------------------------ // Calculate year/month/day from the number of days since 1970/01/01 using // the date conversion algorithm from // http://aa.usno.navy.mil/faq/docs/JD_Formula.php // and adding the offset 2440588 so that 1970/01/01 is day 0 // // int L = days + 68569 + offset // int N = 4 * L / 146097 // L = L - (146097 * N + 3) / 4 // year = 4000 * (L + 1) / 1461001 // L = L - 1461 * year / 4 + 31 // month = 80 * L / 2447 // dd = L - 2447 * month / 80 // L = month / 11 // month = month + 2 - 12 * L // year = 100 * (N - 49) + year + L // ------------------------------------------------------------------------ function _daysToDate(uint256 _days) internal pure returns (uint256 year, uint256 month, uint256 day) { int256 __days = int256(_days); int256 L = __days + 68569 + OFFSET19700101; int256 N = (4 * L) / 146097; L = L - (146097 * N + 3) / 4; int256 _year = (4000 * (L + 1)) / 1461001; L = L - (1461 * _year) / 4 + 31; int256 _month = (80 * L) / 2447; int256 _day = L - (2447 * _month) / 80; L = _month / 11; _month = _month + 2 - 12 * L; _year = 100 * (N - 49) + _year + L; year = uint256(_year); month = uint256(_month); day = uint256(_day); } function timestampToDate(uint256 timestamp) internal pure returns (uint256 year, uint256 month, uint256 day) { (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Provides functions for deriving a pool address from the factory, tokens, and the fee library PoolAddress { bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54; /// @notice The identifying key of the pool struct PoolKey { address token0; address token1; uint24 fee; } /// @notice Returns PoolKey: the ordered tokens with the matched fee levels /// @param tokenA The first token of a pool, unsorted /// @param tokenB The second token of a pool, unsorted /// @param fee The fee level of the pool /// @return Poolkey The pool details with ordered token0 and token1 assignments function getPoolKey(address tokenA, address tokenB, uint24 fee) internal pure returns (PoolKey memory) { if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA); return PoolKey({token0: tokenA, token1: tokenB, fee: fee}); } /// @notice Deterministically computes the pool address given the factory and PoolKey /// @param factory The Uniswap V3 factory contract address /// @param key The PoolKey /// @return pool The contract address of the V3 pool function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) { require(key.token0 < key.token1); pool = address( uint160( uint256( keccak256( abi.encodePacked( hex"ff", factory, keccak256(abi.encode(key.token0, key.token1, key.fee)), POOL_INIT_CODE_HASH ) ) ) ) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for IUniswapV3PoolActions#swap /// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface interface IUniswapV3SwapCallback { /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap. /// @dev In the implementation you must pay the pool tokens owed for the swap. /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory. /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped. /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token0 to the pool. /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token1 to the pool. /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata data ) external; }
{ "remappings": [ "@uniswap/v2-core/=lib/v2-core/", "@uniswap/v2-periphery/=lib/v2-periphery/", "@uniswap/v3-core/=lib/v3-core/", "@uniswap/v3-periphery/=lib/v3-periphery/", "@dn404/=lib/dn404/src/", "@openzeppelin/=lib/openzeppelin-contracts/", "dn404/=lib/dn404/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "murky/=lib/dn404/lib/murky/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "solady/=lib/dn404/lib/solady/src/", "v2-core/=lib/v2-core/contracts/", "v2-periphery/=lib/v2-periphery/contracts/", "v3-core/=lib/v3-core/", "v3-periphery/=lib/v3-periphery/contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_indexFund","type":"address"},{"internalType":"address","name":"_trackingToken","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddShares","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"ClaimReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DistributeReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RemoveShares","type":"event"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"beginningOfMonth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ethAmount","type":"uint256"}],"name":"depositFromETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositRewardsFromIndexFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getUnpaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"excluded","type":"uint256"},{"internalType":"uint256","name":"realized","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardsDepMonthly","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDeposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_sharesRemoving","type":"bool"}],"name":"setShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trackingToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052600a6004553480156200001757600080fd5b50604051620017e5380380620017e58339810160408190526200003a916200007a565b6001600160a01b0393841660805291831660c052821660e0521660a052620000d7565b80516001600160a01b03811681146200007557600080fd5b919050565b600080600080608085870312156200009157600080fd5b6200009c856200005d565b9350620000ac602086016200005d565b9250620000bc604086016200005d565b9150620000cc606086016200005d565b905092959194509250565b60805160a05160c05160e05161169562000150600039600081816102df015281816103ae015281816105a50152818161061f01528181610672015281816108be015281816108ed015281816109820152610cb60152600081816102460152610781015260006103890152600061083e01526116956000f3fe6080604052600436106100f75760003560e01c8063bde308181161008a578063d279c19111610059578063d279c19114610301578063d6460b4b14610321578063ec5cc43d14610341578063ed6ff7401461035457600080fd5b8063bde3081814610234578063ce7c2ac214610280578063d076eabc146102ad578063d1af0c7d146102cd57600080fd5b80638bdf67f2116100c65780638bdf67f2146101bb5780639c1454d4146101db578063a95ae7eb146101f1578063ba32722e1461020757600080fd5b80630700037d146101135780633a98ef3914610161578063869890381461018557806389d969171461019b57600080fd5b3661010e5734801561010c5761010c81610374565b005b600080fd5b34801561011f57600080fd5b5061014761012e3660046113a5565b6003602052600090815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561016d57600080fd5b5061017760005481565b604051908152602001610158565b34801561019157600080fd5b5061017760015481565b3480156101a757600080fd5b506101776101b63660046113a5565b6104c8565b3480156101c757600080fd5b5061010c6101d63660046113c2565b610550565b3480156101e757600080fd5b5061017760065481565b3480156101fd57600080fd5b5061017760075481565b34801561021357600080fd5b506101776102223660046113c2565b60086020526000908152604090205481565b34801561024057600080fd5b506102687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610158565b34801561028c57600080fd5b5061017761029b3660046113a5565b60026020526000908152604090205481565b3480156102b957600080fd5b506101776102c83660046113c2565b6106ec565b3480156102d957600080fd5b506102687f000000000000000000000000000000000000000000000000000000000000000081565b34801561030d57600080fd5b5061010c61031c3660046113a5565b61073e565b34801561032d57600080fd5b5061010c61033c3660046113e9565b61077e565b61010c61034f3660046113c2565b6107f5565b34801561036057600080fd5b5061010c61036f3660046113c2565b61083b565b60408051610100810182526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811682527f00000000000000000000000000000000000000000000000000000000000000008116602083019081526127108385019081523060608501908152426080860190815260a08601888152600060c0880181815260e08901828152995163414bf38960e01b81529851881660048a0152955187166024890152935162ffffff1660448801529151851660648701525160848601525160a4850152905160c484015292511660e482015273e592427a0aece92de3edee1f18e0157c058615649063414bf3899084906101040160206040518083038185885af1158015610494573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906104b9919061142b565b90506104c4816108a7565b5050565b6001600160a01b03811660009081526002602052604081205481036104ef57506000919050565b6001600160a01b03821660009081526002602052604081205461051190610b27565b6001600160a01b03841660009081526003602052604090205490915080821161053e575060009392505050565b610548818361145a565b949350505050565b6000811161058d5760405162461bcd60e51b8152602060048201526005602482015264444550414d60d81b60448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156105f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610618919061142b565b905061064f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316333085610b57565b6040516370a0823160e01b81523060048201526104c49082906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa1580156106b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dd919061142b565b6106e7919061145a565b6108a7565b6000806106f883610bc8565b92505050620151808361070b9190611483565b61071660018361145a565b6107239062015180611497565b61072d908561145a565b610737919061145a565b9392505050565b61074781610bee565b6040516001600160a01b038216907f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e890600090a250565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146107e55760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606401610584565b6107f0838383610d18565b505050565b6000811161082f5760405162461bcd60e51b81526020600482015260076024820152662722a2a22a25a760c91b6044820152606401610584565b61083881610374565b50565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146108a25760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606401610584565b610838815b806000036108b25750565b600054600003610a64577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096d91906114ae565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156109d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f5919061142b565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610a40573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c491906114cb565b60008190508060076000828254610a7b91906114e8565b9091555081905060086000610a8f426106ec565b81526020019081526020016000206000828254610aac91906114e8565b9091555050600054610acd826ec097ce7bc90715b34b9f1000000000611497565b610ad791906114fb565b60056000828254610ae891906114e8565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d5613409906020015b60405180910390a25050565b60006ec097ce7bc90715b34b9f100000000060055483610b479190611497565b610b5191906114fb565b92915050565b6040516001600160a01b0380851660248301528316604482015260648101829052610bc29085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610db5565b50505050565b60008080610be1610bdc62015180866114fb565b610e8a565b9196909550909350915050565b6001600160a01b0381166000908152600260205260408120549003610c105750565b6000610c1b826104c8565b6001600160a01b038316600090815260036020526040812060010180549293508392909190610c4b9084906114e8565b90915550506001600160a01b038216600090815260026020526040902054610c7290610b27565b6001600160a01b03831660009081526003602052604090205580156104c4578060066000828254610ca391906114e8565b90915550610cdd90506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383610ffe565b816001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db782604051610b1b91815260200190565b8015610d7057610d28838361102e565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f83604051610d6391815260200190565b60405180910390a2505050565b610d7a8383611165565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd38883604051610d6391815260200190565b6000610e0a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661126d9092919063ffffffff16565b9050805160001480610e2b575080806020019051810190610e2b91906114cb565b6107f05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610584565b60008080838162253d8c610ea18362010bd961150f565b610eab919061150f565b9050600062023ab1610ebe836004611537565b610ec89190611567565b90506004610ed98262023ab1611537565b610ee490600361150f565b610eee9190611567565b610ef89083611595565b9150600062164b09610f0b84600161150f565b610f1790610fa0611537565b610f219190611567565b90506004610f31826105b5611537565b610f3b9190611567565b610f459084611595565b610f5090601f61150f565b9250600061098f610f62856050611537565b610f6c9190611567565b905060006050610f7e8361098f611537565b610f889190611567565b610f929086611595565b9050610f9f600b83611567565b9450610fac85600c611537565b610fb783600261150f565b610fc19190611595565b91508483610fd0603187611595565b610fdb906064611537565b610fe5919061150f565b610fef919061150f565b9a919950975095505050505050565b6040516001600160a01b0383166024820152604481018290526107f090849063a9059cbb60e01b90606401610b8b565b6001600160a01b0382166000908152600260205260409020541580159061106d57506001600160a01b0382166000908152600260205260409020548111155b6110a25760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b6044820152606401610584565b6110ab82610bee565b806000808282546110bc919061145a565b90915550506001600160a01b038216600090815260026020526040812080548392906110e990849061145a565b90915550506001600160a01b0382166000908152600260205260408120549003611123576001805490600061111d836115bc565b91905055505b6001600160a01b03821660009081526002602052604090205461114590610b27565b6001600160a01b0390921660009081526003602052604090209190915550565b6001600160a01b0382166000908152600260205260409020541561118c5761118c82610bee565b6001600160a01b03821660009081526002602052604081205481549091839181906111b89084906114e8565b90915550506001600160a01b038316600090815260026020526040812080548492906111e59084906114e8565b90915550508015801561120f57506001600160a01b03831660009081526002602052604090205415155b1561122a5760018054906000611224836115d3565b91905055505b6001600160a01b03831660009081526002602052604090205461124c90610b27565b6001600160a01b039093166000908152600360205260409020929092555050565b6060610548848460008585600080866001600160a01b031685876040516112949190611610565b60006040518083038185875af1925050503d80600081146112d1576040519150601f19603f3d011682016040523d82523d6000602084013e6112d6565b606091505b50915091506112e7878383876112f2565b979650505050505050565b6060831561136157825160000361135a576001600160a01b0385163b61135a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610584565b5081610548565b61054883838151156113765781518083602001fd5b8060405162461bcd60e51b8152600401610584919061162c565b6001600160a01b038116811461083857600080fd5b6000602082840312156113b757600080fd5b813561073781611390565b6000602082840312156113d457600080fd5b5035919050565b801515811461083857600080fd5b6000806000606084860312156113fe57600080fd5b833561140981611390565b9250602084013591506040840135611420816113db565b809150509250925092565b60006020828403121561143d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610b5157610b51611444565b634e487b7160e01b600052601260045260246000fd5b6000826114925761149261146d565b500690565b8082028115828204841417610b5157610b51611444565b6000602082840312156114c057600080fd5b815161073781611390565b6000602082840312156114dd57600080fd5b8151610737816113db565b80820180821115610b5157610b51611444565b60008261150a5761150a61146d565b500490565b808201828112600083128015821682158216171561152f5761152f611444565b505092915050565b80820260008212600160ff1b8414161561155357611553611444565b8181058314821517610b5157610b51611444565b6000826115765761157661146d565b600160ff1b82146000198414161561159057611590611444565b500590565b81810360008312801583831316838312821617156115b5576115b5611444565b5092915050565b6000816115cb576115cb611444565b506000190190565b6000600182016115e5576115e5611444565b5060010190565b60005b838110156116075781810151838201526020016115ef565b50506000910152565b600082516116228184602087016115ec565b9190910192915050565b602081526000825180602084015261164b8160408501602087016115ec565b601f01601f1916919091016040019291505056fea26469706673582212207a205bb06d0d501e0e1c152196f1946005b635834a968c55e6ecfd3145261cf064736f6c63430008130033000000000000000000000000661746a9ac04d64183736ab0beb79d30b64a9377000000000000000000000000e2329d670b3290991c743743183cb9a33233eeca000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106100f75760003560e01c8063bde308181161008a578063d279c19111610059578063d279c19114610301578063d6460b4b14610321578063ec5cc43d14610341578063ed6ff7401461035457600080fd5b8063bde3081814610234578063ce7c2ac214610280578063d076eabc146102ad578063d1af0c7d146102cd57600080fd5b80638bdf67f2116100c65780638bdf67f2146101bb5780639c1454d4146101db578063a95ae7eb146101f1578063ba32722e1461020757600080fd5b80630700037d146101135780633a98ef3914610161578063869890381461018557806389d969171461019b57600080fd5b3661010e5734801561010c5761010c81610374565b005b600080fd5b34801561011f57600080fd5b5061014761012e3660046113a5565b6003602052600090815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561016d57600080fd5b5061017760005481565b604051908152602001610158565b34801561019157600080fd5b5061017760015481565b3480156101a757600080fd5b506101776101b63660046113a5565b6104c8565b3480156101c757600080fd5b5061010c6101d63660046113c2565b610550565b3480156101e757600080fd5b5061017760065481565b3480156101fd57600080fd5b5061017760075481565b34801561021357600080fd5b506101776102223660046113c2565b60086020526000908152604090205481565b34801561024057600080fd5b506102687f000000000000000000000000e2329d670b3290991c743743183cb9a33233eeca81565b6040516001600160a01b039091168152602001610158565b34801561028c57600080fd5b5061017761029b3660046113a5565b60026020526000908152604090205481565b3480156102b957600080fd5b506101776102c83660046113c2565b6106ec565b3480156102d957600080fd5b506102687f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa81565b34801561030d57600080fd5b5061010c61031c3660046113a5565b61073e565b34801561032d57600080fd5b5061010c61033c3660046113e9565b61077e565b61010c61034f3660046113c2565b6107f5565b34801561036057600080fd5b5061010c61036f3660046113c2565b61083b565b60408051610100810182526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2811682527f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa8116602083019081526127108385019081523060608501908152426080860190815260a08601888152600060c0880181815260e08901828152995163414bf38960e01b81529851881660048a0152955187166024890152935162ffffff1660448801529151851660648701525160848601525160a4850152905160c484015292511660e482015273e592427a0aece92de3edee1f18e0157c058615649063414bf3899084906101040160206040518083038185885af1158015610494573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906104b9919061142b565b90506104c4816108a7565b5050565b6001600160a01b03811660009081526002602052604081205481036104ef57506000919050565b6001600160a01b03821660009081526002602052604081205461051190610b27565b6001600160a01b03841660009081526003602052604090205490915080821161053e575060009392505050565b610548818361145a565b949350505050565b6000811161058d5760405162461bcd60e51b8152602060048201526005602482015264444550414d60d81b60448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000907f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa6001600160a01b0316906370a0823190602401602060405180830381865afa1580156105f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610618919061142b565b905061064f7f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa6001600160a01b0316333085610b57565b6040516370a0823160e01b81523060048201526104c49082906001600160a01b037f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa16906370a0823190602401602060405180830381865afa1580156106b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dd919061142b565b6106e7919061145a565b6108a7565b6000806106f883610bc8565b92505050620151808361070b9190611483565b61071660018361145a565b6107239062015180611497565b61072d908561145a565b610737919061145a565b9392505050565b61074781610bee565b6040516001600160a01b038216907f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e890600090a250565b337f000000000000000000000000e2329d670b3290991c743743183cb9a33233eeca6001600160a01b0316146107e55760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606401610584565b6107f0838383610d18565b505050565b6000811161082f5760405162461bcd60e51b81526020600482015260076024820152662722a2a22a25a760c91b6044820152606401610584565b61083881610374565b50565b337f000000000000000000000000661746a9ac04d64183736ab0beb79d30b64a93776001600160a01b0316146108a25760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606401610584565b610838815b806000036108b25750565b600054600003610a64577f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa6001600160a01b031663a9059cbb7f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa6001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096d91906114ae565b6040516370a0823160e01b81523060048201527f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa6001600160a01b0316906370a0823190602401602060405180830381865afa1580156109d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f5919061142b565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610a40573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c491906114cb565b60008190508060076000828254610a7b91906114e8565b9091555081905060086000610a8f426106ec565b81526020019081526020016000206000828254610aac91906114e8565b9091555050600054610acd826ec097ce7bc90715b34b9f1000000000611497565b610ad791906114fb565b60056000828254610ae891906114e8565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d5613409906020015b60405180910390a25050565b60006ec097ce7bc90715b34b9f100000000060055483610b479190611497565b610b5191906114fb565b92915050565b6040516001600160a01b0380851660248301528316604482015260648101829052610bc29085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610db5565b50505050565b60008080610be1610bdc62015180866114fb565b610e8a565b9196909550909350915050565b6001600160a01b0381166000908152600260205260408120549003610c105750565b6000610c1b826104c8565b6001600160a01b038316600090815260036020526040812060010180549293508392909190610c4b9084906114e8565b90915550506001600160a01b038216600090815260026020526040902054610c7290610b27565b6001600160a01b03831660009081526003602052604090205580156104c4578060066000828254610ca391906114e8565b90915550610cdd90506001600160a01b037f000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa168383610ffe565b816001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db782604051610b1b91815260200190565b8015610d7057610d28838361102e565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f83604051610d6391815260200190565b60405180910390a2505050565b610d7a8383611165565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd38883604051610d6391815260200190565b6000610e0a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661126d9092919063ffffffff16565b9050805160001480610e2b575080806020019051810190610e2b91906114cb565b6107f05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610584565b60008080838162253d8c610ea18362010bd961150f565b610eab919061150f565b9050600062023ab1610ebe836004611537565b610ec89190611567565b90506004610ed98262023ab1611537565b610ee490600361150f565b610eee9190611567565b610ef89083611595565b9150600062164b09610f0b84600161150f565b610f1790610fa0611537565b610f219190611567565b90506004610f31826105b5611537565b610f3b9190611567565b610f459084611595565b610f5090601f61150f565b9250600061098f610f62856050611537565b610f6c9190611567565b905060006050610f7e8361098f611537565b610f889190611567565b610f929086611595565b9050610f9f600b83611567565b9450610fac85600c611537565b610fb783600261150f565b610fc19190611595565b91508483610fd0603187611595565b610fdb906064611537565b610fe5919061150f565b610fef919061150f565b9a919950975095505050505050565b6040516001600160a01b0383166024820152604481018290526107f090849063a9059cbb60e01b90606401610b8b565b6001600160a01b0382166000908152600260205260409020541580159061106d57506001600160a01b0382166000908152600260205260409020548111155b6110a25760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b6044820152606401610584565b6110ab82610bee565b806000808282546110bc919061145a565b90915550506001600160a01b038216600090815260026020526040812080548392906110e990849061145a565b90915550506001600160a01b0382166000908152600260205260408120549003611123576001805490600061111d836115bc565b91905055505b6001600160a01b03821660009081526002602052604090205461114590610b27565b6001600160a01b0390921660009081526003602052604090209190915550565b6001600160a01b0382166000908152600260205260409020541561118c5761118c82610bee565b6001600160a01b03821660009081526002602052604081205481549091839181906111b89084906114e8565b90915550506001600160a01b038316600090815260026020526040812080548492906111e59084906114e8565b90915550508015801561120f57506001600160a01b03831660009081526002602052604090205415155b1561122a5760018054906000611224836115d3565b91905055505b6001600160a01b03831660009081526002602052604090205461124c90610b27565b6001600160a01b039093166000908152600360205260409020929092555050565b6060610548848460008585600080866001600160a01b031685876040516112949190611610565b60006040518083038185875af1925050503d80600081146112d1576040519150601f19603f3d011682016040523d82523d6000602084013e6112d6565b606091505b50915091506112e7878383876112f2565b979650505050505050565b6060831561136157825160000361135a576001600160a01b0385163b61135a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610584565b5081610548565b61054883838151156113765781518083602001fd5b8060405162461bcd60e51b8152600401610584919061162c565b6001600160a01b038116811461083857600080fd5b6000602082840312156113b757600080fd5b813561073781611390565b6000602082840312156113d457600080fd5b5035919050565b801515811461083857600080fd5b6000806000606084860312156113fe57600080fd5b833561140981611390565b9250602084013591506040840135611420816113db565b809150509250925092565b60006020828403121561143d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610b5157610b51611444565b634e487b7160e01b600052601260045260246000fd5b6000826114925761149261146d565b500690565b8082028115828204841417610b5157610b51611444565b6000602082840312156114c057600080fd5b815161073781611390565b6000602082840312156114dd57600080fd5b8151610737816113db565b80820180821115610b5157610b51611444565b60008261150a5761150a61146d565b500490565b808201828112600083128015821682158216171561152f5761152f611444565b505092915050565b80820260008212600160ff1b8414161561155357611553611444565b8181058314821517610b5157610b51611444565b6000826115765761157661146d565b600160ff1b82146000198414161561159057611590611444565b500590565b81810360008312801583831316838312821617156115b5576115b5611444565b5092915050565b6000816115cb576115cb611444565b506000190190565b6000600182016115e5576115e5611444565b5060010190565b60005b838110156116075781810151838201526020016115ef565b50506000910152565b600082516116228184602087016115ec565b9190910192915050565b602081526000825180602084015261164b8160408501602087016115ec565b601f01601f1916919091016040019291505056fea26469706673582212207a205bb06d0d501e0e1c152196f1946005b635834a968c55e6ecfd3145261cf064736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000661746a9ac04d64183736ab0beb79d30b64a9377000000000000000000000000e2329d670b3290991c743743183cb9a33233eeca000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _indexFund (address): 0x661746a9aC04d64183736AB0beB79D30b64A9377
Arg [1] : _trackingToken (address): 0xE2329D670b3290991c743743183cB9a33233EECa
Arg [2] : _rewardsToken (address): 0x034F52d62fC9F6F819a7Be04839F94521A1482aa
Arg [3] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000661746a9ac04d64183736ab0beb79d30b64a9377
Arg [1] : 000000000000000000000000e2329d670b3290991c743743183cb9a33233eeca
Arg [2] : 000000000000000000000000034f52d62fc9f6f819a7be04839f94521a1482aa
Arg [3] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
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.