ETH Price: $2,605.42 (-2.23%)

Contract

0x4aD678aAe759C9F64d208056D87859213a00fa31
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60803461157672822022-10-17 10:39:11714 days ago1666003151IN
 Create: VirtualBalanceRewardPool
0 ETH0.01010259.87206932

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VirtualBalanceRewardPool

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 8 : VirtualBalanceRewardPool.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
/**
 *Submitted for verification at Etherscan.io on 2020-07-17
 */

/*
   ____            __   __        __   _
  / __/__ __ ___  / /_ / /  ___  / /_ (_)__ __
 _\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ /
/___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\
     /___/

* Synthetix: VirtualBalanceRewardPool.sol
*
* Docs: https://docs.synthetix.io/
*
*
* MIT License
* ===========
*
* Copyright (c) 2020 Synthetix
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/

import "./interfaces/IDeposit.sol";
import "./libraries/MathUtil.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

contract VirtualBalanceWrapper {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    IDeposit public deposits;

    function totalSupply() public view returns (uint256) {
        return deposits.totalSupply();
    }

    function balanceOf(address account) public view returns (uint256) {
        return deposits.balanceOf(account);
    }
}

contract VirtualBalanceRewardPool is VirtualBalanceWrapper {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    IERC20 public rewardToken;
    uint256 public constant duration = 7 days;

    address public operator;

    uint256 public periodFinish = 0;
    uint256 public rewardRate = 0;
    uint256 public lastUpdateTime;
    uint256 public rewardPerTokenStored;
    uint256 public queuedRewards = 0;
    uint256 public currentRewards = 0;
    uint256 public historicalRewards = 0;
    uint256 public newRewardRatio = 830;
    mapping(address => uint256) public userRewardPerTokenPaid;
    mapping(address => uint256) public rewards;

    event RewardAdded(uint256 reward);
    event Staked(address indexed user, uint256 amount);
    event Withdrawn(address indexed user, uint256 amount);
    event RewardPaid(address indexed user, uint256 reward);

    constructor(
        address deposit_,
        address reward_,
        address op_
    ) {
        deposits = IDeposit(deposit_);
        rewardToken = IERC20(reward_);
        operator = op_;
    }

    modifier updateReward(address account) {
        rewardPerTokenStored = rewardPerToken();
        lastUpdateTime = lastTimeRewardApplicable();
        if (account != address(0)) {
            rewards[account] = earned(account);
            userRewardPerTokenPaid[account] = rewardPerTokenStored;
        }
        _;
    }

    function lastTimeRewardApplicable() public view returns (uint256) {
        return MathUtil.min(block.timestamp, periodFinish);
    }

    function rewardPerToken() public view returns (uint256) {
        if (totalSupply() == 0) {
            return rewardPerTokenStored;
        }
        return
            rewardPerTokenStored.add(
                lastTimeRewardApplicable()
                    .sub(lastUpdateTime)
                    .mul(rewardRate)
                    .mul(1e18)
                    .div(totalSupply())
            );
    }

    function earned(address account) public view returns (uint256) {
        return
            balanceOf(account)
                .mul(rewardPerToken().sub(userRewardPerTokenPaid[account]))
                .div(1e18)
                .add(rewards[account]);
    }

    //update reward, emit, call linked reward's stake
    function stake(address _account, uint256 amount)
        external
        updateReward(_account)
    {
        require(msg.sender == address(deposits), "!authorized");
        // require(amount > 0, 'VirtualDepositRewardPool: Cannot stake 0');
        emit Staked(_account, amount);
    }

    function withdraw(address _account, uint256 amount)
        public
        updateReward(_account)
    {
        require(msg.sender == address(deposits), "!authorized");
        //require(amount > 0, 'VirtualDepositRewardPool : Cannot withdraw 0');

        emit Withdrawn(_account, amount);
    }

    function getReward(address _account) public updateReward(_account) {
        uint256 reward = earned(_account);
        if (reward > 0) {
            rewards[_account] = 0;
            rewardToken.safeTransfer(_account, reward);
            emit RewardPaid(_account, reward);
        }
    }

    function getReward() external {
        getReward(msg.sender);
    }

    function donate(uint256 _amount) external returns (bool) {
        IERC20(rewardToken).safeTransferFrom(
            msg.sender,
            address(this),
            _amount
        );
        queuedRewards = queuedRewards.add(_amount);
        return true;
    }

    function queueNewRewards(uint256 _rewards) external {
        require(msg.sender == operator, "!authorized");

        _rewards = _rewards.add(queuedRewards);

        if (block.timestamp >= periodFinish) {
            notifyRewardAmount(_rewards);
            queuedRewards = 0;
            return;
        }

        //et = now - (finish-duration)
        uint256 elapsedTime = block.timestamp.sub(periodFinish.sub(duration));
        //current at now: rewardRate * elapsedTime
        uint256 currentAtNow = rewardRate * elapsedTime;
        uint256 queuedRatio = currentAtNow.mul(1000).div(_rewards);
        if (queuedRatio < newRewardRatio) {
            notifyRewardAmount(_rewards);
            queuedRewards = 0;
        } else {
            queuedRewards = _rewards;
        }
    }

    function notifyRewardAmount(uint256 reward)
        internal
        updateReward(address(0))
    {
        historicalRewards = historicalRewards.add(reward);
        if (block.timestamp >= periodFinish) {
            rewardRate = reward.div(duration);
        } else {
            uint256 remaining = periodFinish.sub(block.timestamp);
            uint256 leftover = remaining.mul(rewardRate);
            reward = reward.add(leftover);
            rewardRate = reward.div(duration);
        }
        currentRewards = reward;
        lastUpdateTime = block.timestamp;
        periodFinish = block.timestamp.add(duration);
        emit RewardAdded(reward);
    }
}

File 2 of 8 : MathUtil.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUtil {
    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
}

File 3 of 8 : IDeposit.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

interface IDeposit {
    function isShutdown() external view returns (bool);

    function balanceOf(address _account) external view returns (uint256);

    function totalSupply() external view returns (uint256);

    function rewardClaimed(
        uint256,
        address,
        uint256
    ) external;

    function withdrawTo(
        uint256,
        uint256,
        address
    ) external;

    function claimRewards(uint256, address) external returns (bool);

    function owner() external returns (address);
}

File 4 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
     * ====
     *
     * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 5 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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);
}

File 7 of 8 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-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;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    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");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 8 of 8 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-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.
 */
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].
     */
    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);
}

Settings
{
  "viaIR": true,
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"deposit_","type":"address"},{"internalType":"address","name":"reward_","type":"address"},{"internalType":"address","name":"op_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposits","outputs":[{"internalType":"contract IDeposit","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"donate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"historicalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newRewardRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewards","type":"uint256"}],"name":"queueNewRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"queuedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080346100c157601f6110a638819003918201601f19168301916001600160401b038311848410176100c6578084926060946040528339810103126100c1578061004b6100b2926100dc565b90610064604061005d602084016100dc565b92016100dc565b6000806003558060045580600755806008558060095561033e600a5560018060a01b039283918260018060a01b03199616868254161790551683600154161760015516906002541617600255565b604051610fb590816100f18239f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036100c15756fe60806040526004361015610013575b600080fd5b60003560e01c80628cc262146102065780630700037d146101fd5780630fb5a6b4146101f457806318160ddd146101eb578063262d3d6d146101e2578063323a5e0b146101d95780633d18b912146101d0578063570ca735146101c7578063590a41f5146101be57806363d38c3b146101b55780636c8bcee8146101ac57806370a08231146101a35780637b0a47ee1461019a57806380faa57d146101915780638b87634714610188578063901a7d531461017f578063adc9772e14610176578063c00007b01461016d578063c8f33c9114610164578063cd3daf9d1461015b578063df136d6514610152578063ebe2b12b14610149578063f14faf6f14610140578063f3fef3a3146101375763f7c618c11461012f57600080fd5b61000e61077b565b5061000e6106fd565b5061000e61064d565b5061000e61062e565b5061000e61060f565b5061000e6105f3565b5061000e6105d4565b5061000e61055f565b5061000e6104b4565b5061000e610495565b5061000e61045a565b5061000e61043e565b5061000e61041f565b5061000e6103fb565b5061000e6103dc565b5061000e6103bd565b5061000e61039e565b5061000e610376565b5061000e61030e565b5061000e6102e6565b5061000e6102c7565b5061000e6102ab565b5061000e61028c565b5061000e610251565b5061000e610225565b600435906001600160a01b038216820361000e57565b503461000e57602060031936011261000e57602061024961024461020f565b610a32565b604051908152f35b503461000e57602060031936011261000e576001600160a01b0361027361020f565b16600052600c6020526020604060002054604051908152f35b503461000e57600060031936011261000e57602060405162093a808152f35b503461000e57600060031936011261000e576020610249610822565b503461000e57600060031936011261000e576020600954604051908152f35b503461000e57600060031936011261000e5760206001600160a01b0360005416604051908152f35b503461000e5760008060031936011261037357610329610912565b600655610334610900565b6005553361034b575b61034633610aeb565b604051f35b61035433610a32565b338252600c6020526040822055600654600b602052604082205561033d565b80fd5b503461000e57600060031936011261000e5760206001600160a01b0360025416604051908152f35b503461000e57602060031936011261000e576103bb600435610dd6565b005b503461000e57600060031936011261000e576020600754604051908152f35b503461000e57600060031936011261000e576020600a54604051908152f35b503461000e57602060031936011261000e57602061024961041a61020f565b6108a9565b503461000e57600060031936011261000e576020600454604051908152f35b503461000e57600060031936011261000e576020610249610900565b503461000e57602060031936011261000e576001600160a01b0361047c61020f565b16600052600b6020526020604060002054604051908152f35b503461000e57600060031936011261000e576020600854604051908152f35b503461000e57604060031936011261000e576104ce61020f565b6104d6610912565b6006556104e1610900565b6005556105056001600160a01b038083169283610533575b50600054163314610aa0565b7f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d60206040516024358152a2005b61053c90610a32565b83600052600c602052604060002055600654600b602052604060002055386104f9565b503461000e57602060031936011261000e576103bb61057c61020f565b610584610912565b60065561058f610900565b6005556001600160a01b038116806105a8575b50610aeb565b6105b182610a32565b90600052600c602052604060002055600654600b602052604060002055386105a2565b503461000e57600060031936011261000e576020600554604051908152f35b503461000e57600060031936011261000e576020610249610912565b503461000e57600060031936011261000e576020600654604051908152f35b503461000e57600060031936011261000e576020600354604051908152f35b503461000e57602060031936011261000e576106e46106df6004356106d76001600160a01b0360015416604051907f23b872dd0000000000000000000000000000000000000000000000000000000060208301523360248301523060448301528360648301526064825260a0820182811067ffffffffffffffff8211176106f0575b604052610c2d565b6007546109ad565b600755565b60405160018152602090f35b6106f86107a3565b6106cf565b503461000e57604060031936011261000e5761071761020f565b61071f610912565b60065561072a610900565b60055561074d6001600160a01b0380831692836105335750600054163314610aa0565b7f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d560206040516024358152a2005b503461000e57600060031936011261000e5760206001600160a01b0360015416604051908152f35b50634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff8211176107d657604052565b6107de6107a3565b604052565b90601f601f19910116810190811067ffffffffffffffff8211176107d657604052565b9081602091031261000e575190565b506040513d6000823e3d90fd5b600460206001600160a01b0360005416604051928380927f18160ddd0000000000000000000000000000000000000000000000000000000082525afa90811561089c575b600091610871575090565b610892915060203d8111610895575b61088a81836107e3565b810190610806565b90565b503d610880565b6108a4610815565b610866565b60206001600160a01b03602481600054169360405194859384927f70a082310000000000000000000000000000000000000000000000000000000084521660048301525afa90811561089c57600091610871575090565b60035480421060001461089257504290565b61091a610822565b1561099057610892600654610970610948610933610900565b600554808210610983575b60045491036109ff565b670de0b6b3a76400008160001904811182151516610976575b610969610822565b9102610a12565b906109ad565b61097e610996565b610961565b61098b610996565b61093e565b60065490565b50634e487b7160e01b600052601160045260246000fd5b811981116109b9570190565b6109c1610996565b0190565b8181106109d0570390565b6109d8610996565b0390565b6103e89080600019048211811515166109f3570290565b6109fb610996565b0290565b80600019048211811515166109f3570290565b8115610a1c570490565b634e487b7160e01b600052601260045260246000fd5b61089290670de0b6b3a7640000610a7d610a4b836108a9565b6001600160a01b03610a5b610912565b94169384600052600b60205260406000205490818110610a93575b03906109ff565b0490600052600c602052604060002054906109ad565b610a9b610996565b610a76565b15610aa757565b606460405162461bcd60e51b815260206004820152600b60248201527f21617574686f72697a65640000000000000000000000000000000000000000006044820152fd5b610af481610a32565b80610afd575050565b60207fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048691610b9b6001600160a01b038095169485600052600c84526000604081205560015416604051907fa9059cbb0000000000000000000000000000000000000000000000000000000085830152866024830152836044830152604482526080820182811067ffffffffffffffff8211176106f057604052610c2d565b604051908152a2565b9081602091031261000e5751801515810361000e5790565b15610bc357565b608460405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b6001600160a01b03169060405190610c44826107ba565b6020928383527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656484840152803b15610cbd5760008281928287610c969796519301915af1610c90610d01565b90610d4f565b80519081610ca357505050565b82610cbb93610cb6938301019101610ba4565b610bbc565b565b6064846040519062461bcd60e51b82526004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b3d15610d4a573d9067ffffffffffffffff8211610d3d575b60405191610d316020601f19601f84011601846107e3565b82523d6000602084013e565b610d456107a3565b610d19565b606090565b90919015610d5b575090565b815115610d6b5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251928360248401526000915b848310610dbd575050601f83604494601f199311610db0575b01168101030190fd5b6000858286010152610da7565b8183018101518684016044015285935091820191610d8e565b610df990610df06001600160a01b03600254163314610aa0565b600754906109ad565b600354421015610e8157610e5881610e53610e4e610e467ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6c58060035462093a808110610e74575b01426109c5565b6004546109ff565b6109dc565b610a12565b600a5411156106df57610e6a90610e91565b610cbb6000600755565b610e7c610996565b610e3f565b610e8a90610e91565b6000600755565b610f357fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d91610ebe610912565b60065580610ece816009546109ad565b600955600354428111610f4757505062093a8081046004555b80600855426005557ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6c57f4211610f3a575b610f2562093a804201600355565b6040519081529081906020820190565b0390a1565b610f42610996565b610f17565b610f64925061097090428110610f72575b600454904290036109ff565b62093a808104600455610ee7565b610f7a610996565b610f5856fea2646970667358221220583e839da90f7ddf7349245b4b7110c04a7c5c6634e85340fd844a550cdba44764736f6c634300080d00330000000000000000000000000fa1c21ce3f62a274342a2c2dca12a4f358a9e88000000000000000000000000a5b947687163fe88c3e6af5b17ae69896f4abccf000000000000000000000000edd77d21145fa99ae03689f7341e42750f9cf33c

Deployed Bytecode

0x60806040526004361015610013575b600080fd5b60003560e01c80628cc262146102065780630700037d146101fd5780630fb5a6b4146101f457806318160ddd146101eb578063262d3d6d146101e2578063323a5e0b146101d95780633d18b912146101d0578063570ca735146101c7578063590a41f5146101be57806363d38c3b146101b55780636c8bcee8146101ac57806370a08231146101a35780637b0a47ee1461019a57806380faa57d146101915780638b87634714610188578063901a7d531461017f578063adc9772e14610176578063c00007b01461016d578063c8f33c9114610164578063cd3daf9d1461015b578063df136d6514610152578063ebe2b12b14610149578063f14faf6f14610140578063f3fef3a3146101375763f7c618c11461012f57600080fd5b61000e61077b565b5061000e6106fd565b5061000e61064d565b5061000e61062e565b5061000e61060f565b5061000e6105f3565b5061000e6105d4565b5061000e61055f565b5061000e6104b4565b5061000e610495565b5061000e61045a565b5061000e61043e565b5061000e61041f565b5061000e6103fb565b5061000e6103dc565b5061000e6103bd565b5061000e61039e565b5061000e610376565b5061000e61030e565b5061000e6102e6565b5061000e6102c7565b5061000e6102ab565b5061000e61028c565b5061000e610251565b5061000e610225565b600435906001600160a01b038216820361000e57565b503461000e57602060031936011261000e57602061024961024461020f565b610a32565b604051908152f35b503461000e57602060031936011261000e576001600160a01b0361027361020f565b16600052600c6020526020604060002054604051908152f35b503461000e57600060031936011261000e57602060405162093a808152f35b503461000e57600060031936011261000e576020610249610822565b503461000e57600060031936011261000e576020600954604051908152f35b503461000e57600060031936011261000e5760206001600160a01b0360005416604051908152f35b503461000e5760008060031936011261037357610329610912565b600655610334610900565b6005553361034b575b61034633610aeb565b604051f35b61035433610a32565b338252600c6020526040822055600654600b602052604082205561033d565b80fd5b503461000e57600060031936011261000e5760206001600160a01b0360025416604051908152f35b503461000e57602060031936011261000e576103bb600435610dd6565b005b503461000e57600060031936011261000e576020600754604051908152f35b503461000e57600060031936011261000e576020600a54604051908152f35b503461000e57602060031936011261000e57602061024961041a61020f565b6108a9565b503461000e57600060031936011261000e576020600454604051908152f35b503461000e57600060031936011261000e576020610249610900565b503461000e57602060031936011261000e576001600160a01b0361047c61020f565b16600052600b6020526020604060002054604051908152f35b503461000e57600060031936011261000e576020600854604051908152f35b503461000e57604060031936011261000e576104ce61020f565b6104d6610912565b6006556104e1610900565b6005556105056001600160a01b038083169283610533575b50600054163314610aa0565b7f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d60206040516024358152a2005b61053c90610a32565b83600052600c602052604060002055600654600b602052604060002055386104f9565b503461000e57602060031936011261000e576103bb61057c61020f565b610584610912565b60065561058f610900565b6005556001600160a01b038116806105a8575b50610aeb565b6105b182610a32565b90600052600c602052604060002055600654600b602052604060002055386105a2565b503461000e57600060031936011261000e576020600554604051908152f35b503461000e57600060031936011261000e576020610249610912565b503461000e57600060031936011261000e576020600654604051908152f35b503461000e57600060031936011261000e576020600354604051908152f35b503461000e57602060031936011261000e576106e46106df6004356106d76001600160a01b0360015416604051907f23b872dd0000000000000000000000000000000000000000000000000000000060208301523360248301523060448301528360648301526064825260a0820182811067ffffffffffffffff8211176106f0575b604052610c2d565b6007546109ad565b600755565b60405160018152602090f35b6106f86107a3565b6106cf565b503461000e57604060031936011261000e5761071761020f565b61071f610912565b60065561072a610900565b60055561074d6001600160a01b0380831692836105335750600054163314610aa0565b7f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d560206040516024358152a2005b503461000e57600060031936011261000e5760206001600160a01b0360015416604051908152f35b50634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff8211176107d657604052565b6107de6107a3565b604052565b90601f601f19910116810190811067ffffffffffffffff8211176107d657604052565b9081602091031261000e575190565b506040513d6000823e3d90fd5b600460206001600160a01b0360005416604051928380927f18160ddd0000000000000000000000000000000000000000000000000000000082525afa90811561089c575b600091610871575090565b610892915060203d8111610895575b61088a81836107e3565b810190610806565b90565b503d610880565b6108a4610815565b610866565b60206001600160a01b03602481600054169360405194859384927f70a082310000000000000000000000000000000000000000000000000000000084521660048301525afa90811561089c57600091610871575090565b60035480421060001461089257504290565b61091a610822565b1561099057610892600654610970610948610933610900565b600554808210610983575b60045491036109ff565b670de0b6b3a76400008160001904811182151516610976575b610969610822565b9102610a12565b906109ad565b61097e610996565b610961565b61098b610996565b61093e565b60065490565b50634e487b7160e01b600052601160045260246000fd5b811981116109b9570190565b6109c1610996565b0190565b8181106109d0570390565b6109d8610996565b0390565b6103e89080600019048211811515166109f3570290565b6109fb610996565b0290565b80600019048211811515166109f3570290565b8115610a1c570490565b634e487b7160e01b600052601260045260246000fd5b61089290670de0b6b3a7640000610a7d610a4b836108a9565b6001600160a01b03610a5b610912565b94169384600052600b60205260406000205490818110610a93575b03906109ff565b0490600052600c602052604060002054906109ad565b610a9b610996565b610a76565b15610aa757565b606460405162461bcd60e51b815260206004820152600b60248201527f21617574686f72697a65640000000000000000000000000000000000000000006044820152fd5b610af481610a32565b80610afd575050565b60207fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048691610b9b6001600160a01b038095169485600052600c84526000604081205560015416604051907fa9059cbb0000000000000000000000000000000000000000000000000000000085830152866024830152836044830152604482526080820182811067ffffffffffffffff8211176106f057604052610c2d565b604051908152a2565b9081602091031261000e5751801515810361000e5790565b15610bc357565b608460405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b6001600160a01b03169060405190610c44826107ba565b6020928383527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656484840152803b15610cbd5760008281928287610c969796519301915af1610c90610d01565b90610d4f565b80519081610ca357505050565b82610cbb93610cb6938301019101610ba4565b610bbc565b565b6064846040519062461bcd60e51b82526004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b3d15610d4a573d9067ffffffffffffffff8211610d3d575b60405191610d316020601f19601f84011601846107e3565b82523d6000602084013e565b610d456107a3565b610d19565b606090565b90919015610d5b575090565b815115610d6b5750805190602001fd5b6040519062461bcd60e51b82528160208060048301528251928360248401526000915b848310610dbd575050601f83604494601f199311610db0575b01168101030190fd5b6000858286010152610da7565b8183018101518684016044015285935091820191610d8e565b610df990610df06001600160a01b03600254163314610aa0565b600754906109ad565b600354421015610e8157610e5881610e53610e4e610e467ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6c58060035462093a808110610e74575b01426109c5565b6004546109ff565b6109dc565b610a12565b600a5411156106df57610e6a90610e91565b610cbb6000600755565b610e7c610996565b610e3f565b610e8a90610e91565b6000600755565b610f357fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d91610ebe610912565b60065580610ece816009546109ad565b600955600354428111610f4757505062093a8081046004555b80600855426005557ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6c57f4211610f3a575b610f2562093a804201600355565b6040519081529081906020820190565b0390a1565b610f42610996565b610f17565b610f64925061097090428110610f72575b600454904290036109ff565b62093a808104600455610ee7565b610f7a610996565b610f5856fea2646970667358221220583e839da90f7ddf7349245b4b7110c04a7c5c6634e85340fd844a550cdba44764736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000fa1c21ce3f62a274342a2c2dca12a4f358a9e88000000000000000000000000a5b947687163fe88c3e6af5b17ae69896f4abccf000000000000000000000000edd77d21145fa99ae03689f7341e42750f9cf33c

-----Decoded View---------------
Arg [0] : deposit_ (address): 0x0FA1c21cE3f62A274342a2C2DCA12A4F358a9e88
Arg [1] : reward_ (address): 0xA5B947687163FE88C3e6af5b17Ae69896F4abccf
Arg [2] : op_ (address): 0xEDd77d21145Fa99Ae03689f7341E42750f9CF33c

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000fa1c21ce3f62a274342a2c2dca12a4f358a9e88
Arg [1] : 000000000000000000000000a5b947687163fe88c3e6af5b17ae69896f4abccf
Arg [2] : 000000000000000000000000edd77d21145fa99ae03689f7341e42750f9cf33c


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.