ETH Price: $3,008.45 (+1.49%)
Gas: 7 Gwei

Contract

0xB93b505Ed567982E2b6756177ddD23ab5745f309
 
Transaction Hash
Method
Block
From
To
Value
Exit197685582024-04-30 13:55:352 days ago1714485335IN
Index Protocol: DPI staking rewards v2
0 ETH0.0021879724.48115074
Get Reward197685532024-04-30 13:54:352 days ago1714485275IN
Index Protocol: DPI staking rewards v2
0 ETH0.0022815125.16897857
Exit196303782024-04-11 5:44:1121 days ago1712814251IN
Index Protocol: DPI staking rewards v2
0 ETH0.0016070313.53643266
Exit195690072024-04-02 15:30:3530 days ago1712071835IN
Index Protocol: DPI staking rewards v2
0 ETH0.0075707663.77042235
Exit195562672024-03-31 20:33:5932 days ago1711917239IN
Index Protocol: DPI staking rewards v2
0 ETH0.0032104527.04248141
Exit194937122024-03-23 0:24:2340 days ago1711153463IN
Index Protocol: DPI staking rewards v2
0 ETH0.0028166420.83345513
Get Reward191982842024-02-10 14:26:3582 days ago1707575195IN
Index Protocol: DPI staking rewards v2
0 ETH0.0012873828.77664458
Exit191982142024-02-10 14:11:1182 days ago1707574271IN
Index Protocol: DPI staking rewards v2
0 ETH0.004201931.0796136
Get Reward188482602023-12-23 11:36:59131 days ago1703331419IN
Index Protocol: DPI staking rewards v2
0 ETH0.0009594221.44584978
Exit185172702023-11-07 3:02:23177 days ago1699326143IN
Index Protocol: DPI staking rewards v2
0 ETH0.0066091849.61926564
Get Reward177524432023-07-23 1:08:59284 days ago1690074539IN
Index Protocol: DPI staking rewards v2
0 ETH0.0009049114
Exit176568922023-07-09 14:59:11298 days ago1688914751IN
Index Protocol: DPI staking rewards v2
0 ETH0.0037278227.57306219
Exit174952142023-06-16 21:57:47320 days ago1686952667IN
Index Protocol: DPI staking rewards v2
0 ETH0.0020331715.03851234
Exit174532442023-06-11 0:11:47326 days ago1686442307IN
Index Protocol: DPI staking rewards v2
0 ETH0.0017210814.49712859
Exit174361882023-06-08 14:30:47329 days ago1686234647IN
Index Protocol: DPI staking rewards v2
0 ETH0.004875236.05974552
Exit173856762023-06-01 11:31:11336 days ago1685619071IN
Index Protocol: DPI staking rewards v2
0 ETH0.002930932.79371263
Get Reward173856232023-06-01 11:20:35336 days ago1685618435IN
Index Protocol: DPI staking rewards v2
0 ETH0.0017134638.26225315
Get Reward173854802023-06-01 10:51:35336 days ago1685616695IN
Index Protocol: DPI staking rewards v2
0 ETH0.0023828426.28681815
Exit172221522023-05-09 9:58:11359 days ago1683626291IN
Index Protocol: DPI staking rewards v2
0 ETH0.006759950
Exit169991532023-04-07 21:05:59391 days ago1680901559IN
Index Protocol: DPI staking rewards v2
0 ETH0.0020581923.02905102
Get Reward169991502023-04-07 21:05:23391 days ago1680901523IN
Index Protocol: DPI staking rewards v2
0 ETH0.0009771421.81999996
Get Reward169991412023-04-07 21:03:35391 days ago1680901415IN
Index Protocol: DPI staking rewards v2
0 ETH0.0018986724.66837041
Exit169323202023-03-29 10:20:35400 days ago1680085235IN
Index Protocol: DPI staking rewards v2
0 ETH0.00308826.01101485
Exit168086902023-03-12 1:28:11417 days ago1678584491IN
Index Protocol: DPI staking rewards v2
0 ETH0.0036219423.78198357
Exit166378112023-02-16 0:47:23441 days ago1676508443IN
Index Protocol: DPI staking rewards v2
0 ETH0.0052320438.69916436
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
114050692020-12-07 10:15:431242 days ago1607336143
Index Protocol: DPI staking rewards v2
0.0966155 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x1D72f38A...055552D68
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
StakingRewardsV2

Compiler Version
v0.6.10+commit.00c0fcaf

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-05
*/

// Dependency file: @openzeppelin/contracts/utils/Address.sol

// pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [// importANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * // importANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// Dependency file: contracts/staking/RewardsDistributionRecipient.sol

// pragma solidity ^0.6.10;

abstract contract RewardsDistributionRecipient {
    address public rewardsDistribution;

    function notifyRewardAmount(uint256 reward) external virtual;

    modifier onlyRewardsDistribution() {
        require(msg.sender == rewardsDistribution, "Caller is not RewardsDistribution contract");
        _;
    }
}
// Dependency file: @openzeppelin/contracts/utils/ReentrancyGuard.sol

// pragma solidity ^0.6.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// Dependency file: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

// pragma solidity ^0.6.0;

// import "./IERC20.sol";
// import "../../math/SafeMath.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 SafeMath for uint256;
    using Address for address;

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

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

    /**
     * @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'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

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

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

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. 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
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// Dependency file: @openzeppelin/contracts/math/SafeMath.sol

// pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// Dependency file: @openzeppelin/contracts/math/Math.sol

// pragma solidity ^0.6.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * // importANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

pragma solidity ^0.6.10;

// import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import { Math } from  "@openzeppelin/contracts/math/Math.sol";
// import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";
// import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
// import { ReentrancyGuard } from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";

// Inheritance
// import { RewardsDistributionRecipient } from  "./RewardsDistributionRecipient.sol";

// NOTE: V2 allows setting of rewardsDuration in constructor
contract StakingRewardsV2 is RewardsDistributionRecipient, ReentrancyGuard {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    /* ========== STATE VARIABLES ========== */

    IERC20 public rewardsToken;
    IERC20 public stakingToken;
    uint256 public periodFinish = 0;
    uint256 public rewardRate = 0;
    uint256 public rewardsDuration;
    uint256 public lastUpdateTime;
    uint256 public rewardPerTokenStored;

    mapping(address => uint256) public userRewardPerTokenPaid;
    mapping(address => uint256) public rewards;

    uint256 private _totalSupply;
    mapping(address => uint256) private _balances;

    /* ========== CONSTRUCTOR ========== */

    constructor(
        address _rewardsDistribution,
        address _rewardsToken,
        address _stakingToken,
        uint256 _rewardsDuration
    ) public {
        rewardsToken = IERC20(_rewardsToken);
        stakingToken = IERC20(_stakingToken);
        rewardsDistribution = _rewardsDistribution;
        rewardsDuration = _rewardsDuration;
    }

    /* ========== VIEWS ========== */

    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) external view returns (uint256) {
        return _balances[account];
    }

    function lastTimeRewardApplicable() public view returns (uint256) {
        return Math.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 _balances[account].mul(rewardPerToken().sub(userRewardPerTokenPaid[account])).div(1e18).add(rewards[account]);
    }

    function getRewardForDuration() external view returns (uint256) {
        return rewardRate.mul(rewardsDuration);
    }

    /* ========== MUTATIVE FUNCTIONS ========== */

    function stake(uint256 amount) external nonReentrant updateReward(msg.sender) {
        require(amount > 0, "Cannot stake 0");
        _totalSupply = _totalSupply.add(amount);
        _balances[msg.sender] = _balances[msg.sender].add(amount);
        stakingToken.safeTransferFrom(msg.sender, address(this), amount);
        emit Staked(msg.sender, amount);
    }

    function withdraw(uint256 amount) public nonReentrant updateReward(msg.sender) {
        require(amount > 0, "Cannot withdraw 0");
        _totalSupply = _totalSupply.sub(amount);
        _balances[msg.sender] = _balances[msg.sender].sub(amount);
        stakingToken.safeTransfer(msg.sender, amount);
        emit Withdrawn(msg.sender, amount);
    }

    function getReward() public nonReentrant updateReward(msg.sender) {
        uint256 reward = rewards[msg.sender];
        if (reward > 0) {
            rewards[msg.sender] = 0;
            rewardsToken.safeTransfer(msg.sender, reward);
            emit RewardPaid(msg.sender, reward);
        }
    }

    function exit() external {
        withdraw(_balances[msg.sender]);
        getReward();
    }

    /* ========== RESTRICTED FUNCTIONS ========== */

    function notifyRewardAmount(uint256 reward) external override onlyRewardsDistribution updateReward(address(0)) {
        if (block.timestamp >= periodFinish) {
            rewardRate = reward.div(rewardsDuration);
        } else {
            uint256 remaining = periodFinish.sub(block.timestamp);
            uint256 leftover = remaining.mul(rewardRate);
            rewardRate = reward.add(leftover).div(rewardsDuration);
        }

        // Ensure the provided reward amount is not more than the balance in the contract.
        // This keeps the reward rate in the right range, preventing overflows due to
        // very high values of rewardRate in the earned and rewardsPerToken functions;
        // Reward + leftover must be less than 2^256 / 10^18 to avoid overflow.
        uint balance = rewardsToken.balanceOf(address(this));
        require(rewardRate <= balance.div(rewardsDuration), "Provided reward too high");

        lastUpdateTime = block.timestamp;
        periodFinish = block.timestamp.add(rewardsDuration);
        emit RewardAdded(reward);
    }

    /* ========== MODIFIERS ========== */

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

    /* ========== EVENTS ========== */

    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);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_rewardsDistribution","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"},{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","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":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"periodFinish","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":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDistribution","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c806372f702f3116100b8578063c8f33c911161007c578063c8f33c911461029a578063cd3daf9d146102a2578063d1af0c7d146102aa578063df136d65146102b2578063e9fad8ee146102ba578063ebe2b12b146102c257610136565b806372f702f31461023f5780637b0a47ee1461024757806380faa57d1461024f5780638b87634714610257578063a694fc3a1461027d57610136565b8063386a9525116100ff578063386a9525146101c85780633c6b16ab146101d05780633d18b912146101ed5780633fc6df6e146101f557806370a082311461021957610136565b80628cc2621461013b5780630700037d1461017357806318160ddd146101995780631c1f78eb146101a15780632e1a7d4d146101a9575b600080fd5b6101616004803603602081101561015157600080fd5b50356001600160a01b03166102ca565b60408051918252519081900360200190f35b6101616004803603602081101561018957600080fd5b50356001600160a01b0316610360565b610161610372565b610161610379565b6101c6600480360360208110156101bf57600080fd5b5035610397565b005b610161610538565b6101c6600480360360208110156101e657600080fd5b503561053e565b6101c661078f565b6101fd6108c5565b604080516001600160a01b039092168252519081900360200190f35b6101616004803603602081101561022f57600080fd5b50356001600160a01b03166108d4565b6101fd6108ef565b6101616108fe565b610161610904565b6101616004803603602081101561026d57600080fd5b50356001600160a01b0316610912565b6101c66004803603602081101561029357600080fd5b5035610924565b610161610ac3565b610161610ac9565b6101fd610b23565b610161610b32565b6101c6610b38565b610161610b5b565b6001600160a01b0381166000908152600a6020908152604080832054600990925282205461035a919061034e90670de0b6b3a7640000906103429061031d90610311610ac9565b9063ffffffff610b6116565b6001600160a01b0388166000908152600c60205260409020549063ffffffff610baa16565b9063ffffffff610c0316565b9063ffffffff610c4516565b92915050565b600a6020526000908152604090205481565b600b545b90565b6000610392600654600554610baa90919063ffffffff16565b905090565b600260015414156103ef576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600155336103fd610ac9565b600855610408610904565b6007556001600160a01b0381161561044f57610423816102ca565b6001600160a01b0382166000908152600a60209081526040808320939093556008546009909152919020555b60008211610498576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b600b546104ab908363ffffffff610b6116565b600b55336000908152600c60205260409020546104ce908363ffffffff610b6116565b336000818152600c60205260409020919091556003546104fa916001600160a01b039091169084610c9f565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2505060018055565b60065481565b6000546001600160a01b031633146105875760405162461bcd60e51b815260040180806020018281038252602a8152602001806110c5602a913960400191505060405180910390fd5b6000610591610ac9565b60085561059c610904565b6007556001600160a01b038116156105e3576105b7816102ca565b6001600160a01b0382166000908152600a60209081526040808320939093556008546009909152919020555b60045442106106085760065461060090839063ffffffff610c0316565b600555610657565b60045460009061061e904263ffffffff610b6116565b9050600061063760055483610baa90919063ffffffff16565b60065490915061065190610342868463ffffffff610c4516565b60055550505b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156106a257600080fd5b505afa1580156106b6573d6000803e3d6000fd5b505050506040513d60208110156106cc57600080fd5b50516006549091506106e590829063ffffffff610c0316565b600554111561073b576040805162461bcd60e51b815260206004820152601860248201527f50726f76696465642072657761726420746f6f20686967680000000000000000604482015290519081900360640190fd5b426007819055600654610754919063ffffffff610c4516565b6004556040805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1505050565b600260015414156107e7576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600155336107f5610ac9565b600855610800610904565b6007556001600160a01b038116156108475761081b816102ca565b6001600160a01b0382166000908152600a60209081526040808320939093556008546009909152919020555b336000908152600a602052604090205480156108bd57336000818152600a6020526040812055600254610886916001600160a01b039091169083610c9f565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505060018055565b6000546001600160a01b031681565b6001600160a01b03166000908152600c602052604090205490565b6003546001600160a01b031681565b60055481565b600061039242600454610cf6565b60096020526000908152604090205481565b6002600154141561097c576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001553361098a610ac9565b600855610995610904565b6007556001600160a01b038116156109dc576109b0816102ca565b6001600160a01b0382166000908152600a60209081526040808320939093556008546009909152919020555b60008211610a22576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b600b54610a35908363ffffffff610c4516565b600b55336000908152600c6020526040902054610a58908363ffffffff610c4516565b336000818152600c6020526040902091909155600354610a85916001600160a01b03909116903085610d0c565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a2505060018055565b60075481565b6000600b5460001415610adf5750600854610376565b610392610b14600b54610342670de0b6b3a7640000610b08600554610b08600754610311610904565b9063ffffffff610baa16565b6008549063ffffffff610c4516565b6002546001600160a01b031681565b60085481565b336000908152600c6020526040902054610b5190610397565b610b5961078f565b565b60045481565b6000610ba383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d6c565b9392505050565b600082610bb95750600061035a565b82820282848281610bc657fe5b0414610ba35760405162461bcd60e51b81526004018080602001828103825260218152602001806110a46021913960400191505060405180910390fd5b6000610ba383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e03565b600082820183811015610ba3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cf1908490610e68565b505050565b6000818310610d055781610ba3565b5090919050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610d66908590610e68565b50505050565b60008184841115610dfb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610dc0578181015183820152602001610da8565b50505050905090810190601f168015610ded5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610e525760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610dc0578181015183820152602001610da8565b506000838581610e5e57fe5b0495945050505050565b6060610ebd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f199092919063ffffffff16565b805190915015610cf157808060200190516020811015610edc57600080fd5b5051610cf15760405162461bcd60e51b815260040180806020018281038252602a8152602001806110ef602a913960400191505060405180910390fd5b6060610f288484600085610f30565b949350505050565b6060610f3b8561109d565b610f8c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310610fcb5780518252601f199092019160209182019101610fac565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461102d576040519150601f19603f3d011682016040523d82523d6000602084013e611032565b606091505b50915091508115611046579150610f289050565b8051156110565780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610dc0578181015183820152602001610da8565b3b15159056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742052657761726473446973747269627574696f6e20636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220790c9fad58a65efe2ffe34ef46b974a94b813884b9da0922717f6c950df59fa164736f6c634300060a0033

Deployed Bytecode Sourcemap

22730:5167:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24550:198;;;;;;;;;;;;;;;;-1:-1:-1;24550:198:0;-1:-1:-1;;;;;24550:198:0;;:::i;:::-;;;;;;;;;;;;;;;;23252:42;;;;;;;;;;;;;;;;-1:-1:-1;23252:42:0;-1:-1:-1;;;;;23252:42:0;;:::i;23852:93::-;;;:::i;24756:121::-;;;:::i;25316:357::-;;;;;;;;;;;;;;;;-1:-1:-1;25316:357:0;;:::i;:::-;;23071:30;;;:::i;26157:1092::-;;;;;;;;;;;;;;;;-1:-1:-1;26157:1092:0;;:::i;25681:307::-;;;:::i;6222:34::-;;;:::i;:::-;;;;-1:-1:-1;;;;;6222:34:0;;;;;;;;;;;;;;23953:112;;;;;;;;;;;;;;;;-1:-1:-1;23953:112:0;-1:-1:-1;;;;;23953:112:0;;:::i;22964:26::-;;;:::i;23035:29::-;;;:::i;24073:131::-;;;:::i;23188:57::-;;;;;;;;;;;;;;;;-1:-1:-1;23188:57:0;-1:-1:-1;;;;;23188:57:0;;:::i;24939:369::-;;;;;;;;;;;;;;;;-1:-1:-1;24939:369:0;;:::i;23108:29::-;;;:::i;24212:330::-;;;:::i;22931:26::-;;;:::i;23144:35::-;;;:::i;25996:97::-;;;:::i;22997:31::-;;;:::i;24550:198::-;-1:-1:-1;;;;;24723:16:0;;24604:7;24723:16;;;:7;:16;;;;;;;;;24675:22;:31;;;;;;24631:109;;24723:16;24631:87;;24713:4;;24631:77;;24654:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;-1:-1:-1;;;;;24631:18:0;;;;;;:9;:18;;;;;;;:77;:22;:77;:::i;:::-;:81;:87;:81;:87;:::i;:::-;:91;:109;:91;:109;:::i;:::-;24624:116;24550:198;-1:-1:-1;;24550:198:0:o;23252:42::-;;;;;;;;;;;;;:::o;23852:93::-;23925:12;;23852:93;;:::o;24756:121::-;24811:7;24838:31;24853:15;;24838:10;;:14;;:31;;;;:::i;:::-;24831:38;;24756:121;:::o;25316:357::-;8238:1;8844:7;;:19;;8836:63;;;;;-1:-1:-1;;;8836:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8238:1;8977:7;:18;25383:10:::1;27375:16;:14;:16::i;:::-;27352:20;:39:::0;27419:26:::1;:24;:26::i;:::-;27402:14;:43:::0;-1:-1:-1;;;;;27460:21:0;::::1;::::0;27456:157:::1;;27517:15;27524:7;27517:6;:15::i;:::-;-1:-1:-1::0;;;;;27498:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;;;:34;;;;27581:20:::1;::::0;27547:22:::1;:31:::0;;;;;;:54;27456:157:::1;25423:1:::2;25414:6;:10;25406:40;;;::::0;;-1:-1:-1;;;25406:40:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;25406:40:0;;;;;;;;;;;;;::::2;;25472:12;::::0;:24:::2;::::0;25489:6;25472:24:::2;:16;:24;:::i;:::-;25457:12;:39:::0;25541:10:::2;25531:21;::::0;;;:9:::2;:21;::::0;;;;;:33:::2;::::0;25557:6;25531:33:::2;:25;:33;:::i;:::-;25517:10;25507:21;::::0;;;:9:::2;:21;::::0;;;;:57;;;;25575:12:::2;::::0;:45:::2;::::0;-1:-1:-1;;;;;25575:12:0;;::::2;::::0;25613:6;25575:25:::2;:45::i;:::-;25636:29;::::0;;;;;;;25646:10:::2;::::0;25636:29:::2;::::0;;;;;::::2;::::0;;::::2;-1:-1:-1::0;;8194:1:0;9156:22;;25316:357::o;23071:30::-;;;;:::o;26157:1092::-;6402:19;;-1:-1:-1;;;;;6402:19:0;6388:10;:33;6380:88;;;;-1:-1:-1;;;6380:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26264:1:::1;27375:16;:14;:16::i;:::-;27352:20;:39:::0;27419:26:::1;:24;:26::i;:::-;27402:14;:43:::0;-1:-1:-1;;;;;27460:21:0;::::1;::::0;27456:157:::1;;27517:15;27524:7;27517:6;:15::i;:::-;-1:-1:-1::0;;;;;27498:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;;;:34;;;;27581:20:::1;::::0;27547:22:::1;:31:::0;;;;;;:54;27456:157:::1;26302:12:::2;;26283:15;:31;26279:318;;26355:15;::::0;26344:27:::2;::::0;:6;;:27:::2;:10;:27;:::i;:::-;26331:10;:40:::0;26279:318:::2;;;26424:12;::::0;26404:17:::2;::::0;26424:33:::2;::::0;26441:15:::2;26424:33;:16;:33;:::i;:::-;26404:53;;26472:16;26491:25;26505:10;;26491:9;:13;;:25;;;;:::i;:::-;26569:15;::::0;26472:44;;-1:-1:-1;26544:41:0::2;::::0;:20:::2;:6:::0;26472:44;26544:20:::2;:10;:20;:::i;:41::-;26531:10;:54:::0;-1:-1:-1;;26279:318:0::2;26972:12;::::0;:37:::2;::::0;;-1:-1:-1;;;26972:37:0;;27003:4:::2;26972:37;::::0;::::2;::::0;;;26957:12:::2;::::0;-1:-1:-1;;;;;26972:12:0::2;::::0;:22:::2;::::0;:37;;;;;::::2;::::0;;;;;;;;:12;:37;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;26972:37:0;27054:15:::2;::::0;26972:37;;-1:-1:-1;27042:28:0::2;::::0;26972:37;;27042:28:::2;:11;:28;:::i;:::-;27028:10;;:42;;27020:79;;;::::0;;-1:-1:-1;;;27020:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;27129:15;27112:14;:32:::0;;;27190:15:::2;::::0;27170:36:::2;::::0;27129:15;27170:36:::2;:19;:36;:::i;:::-;27155:12;:51:::0;27222:19:::2;::::0;;;;;;;::::2;::::0;;;;::::2;::::0;;::::2;27623:1;6479::::1;26157:1092:::0;:::o;25681:307::-;8238:1;8844:7;;:19;;8836:63;;;;;-1:-1:-1;;;8836:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8238:1;8977:7;:18;25735:10:::1;27375:16;:14;:16::i;:::-;27352:20;:39:::0;27419:26:::1;:24;:26::i;:::-;27402:14;:43:::0;-1:-1:-1;;;;;27460:21:0;::::1;::::0;27456:157:::1;;27517:15;27524:7;27517:6;:15::i;:::-;-1:-1:-1::0;;;;;27498:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;;;:34;;;;27581:20:::1;::::0;27547:22:::1;:31:::0;;;;;;:54;27456:157:::1;25783:10:::2;25758:14;25775:19:::0;;;:7:::2;:19;::::0;;;;;25809:10;;25805:176:::2;;25844:10;25858:1;25836:19:::0;;;:7:::2;:19;::::0;;;;:23;25874:12:::2;::::0;:45:::2;::::0;-1:-1:-1;;;;;25874:12:0;;::::2;::::0;25912:6;25874:25:::2;:45::i;:::-;25939:30;::::0;;;;;;;25950:10:::2;::::0;25939:30:::2;::::0;;;;;::::2;::::0;;::::2;25805:176;-1:-1:-1::0;;8194:1:0;9156:22;;25681:307::o;6222:34::-;;;-1:-1:-1;;;;;6222:34:0;;:::o;23953:112::-;-1:-1:-1;;;;;24039:18:0;24012:7;24039:18;;;:9;:18;;;;;;;23953:112::o;22964:26::-;;;-1:-1:-1;;;;;22964:26:0;;:::o;23035:29::-;;;;:::o;24073:131::-;24130:7;24157:39;24166:15;24183:12;;24157:8;:39::i;23188:57::-;;;;;;;;;;;;;:::o;24939:369::-;8238:1;8844:7;;:19;;8836:63;;;;;-1:-1:-1;;;8836:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8238:1;8977:7;:18;25005:10:::1;27375:16;:14;:16::i;:::-;27352:20;:39:::0;27419:26:::1;:24;:26::i;:::-;27402:14;:43:::0;-1:-1:-1;;;;;27460:21:0;::::1;::::0;27456:157:::1;;27517:15;27524:7;27517:6;:15::i;:::-;-1:-1:-1::0;;;;;27498:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;;;:34;;;;27581:20:::1;::::0;27547:22:::1;:31:::0;;;;;;:54;27456:157:::1;25045:1:::2;25036:6;:10;25028:37;;;::::0;;-1:-1:-1;;;25028:37:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;25028:37:0;;;;;;;;;;;;;::::2;;25091:12;::::0;:24:::2;::::0;25108:6;25091:24:::2;:16;:24;:::i;:::-;25076:12;:39:::0;25160:10:::2;25150:21;::::0;;;:9:::2;:21;::::0;;;;;:33:::2;::::0;25176:6;25150:33:::2;:25;:33;:::i;:::-;25136:10;25126:21;::::0;;;:9:::2;:21;::::0;;;;:57;;;;25194:12:::2;::::0;:64:::2;::::0;-1:-1:-1;;;;;25194:12:0;;::::2;::::0;25244:4:::2;25251:6:::0;25194:29:::2;:64::i;:::-;25274:26;::::0;;;;;;;25281:10:::2;::::0;25274:26:::2;::::0;;;;;::::2;::::0;;::::2;-1:-1:-1::0;;8194:1:0;9156:22;;24939:369::o;23108:29::-;;;;:::o;24212:330::-;24259:7;24283:12;;24299:1;24283:17;24279:77;;;-1:-1:-1;24324:20:0;;24317:27;;24279:77;24386:148;24429:90;24506:12;;24429:72;24496:4;24429:62;24480:10;;24429:46;24460:14;;24429:26;:24;:26::i;:46::-;:50;:62;:50;:62;:::i;:90::-;24386:20;;;:148;:24;:148;:::i;22931:26::-;;;-1:-1:-1;;;;;22931:26:0;;:::o;23144:35::-;;;;:::o;25996:97::-;26051:10;26041:21;;;;:9;:21;;;;;;26032:31;;:8;:31::i;:::-;26074:11;:9;:11::i;:::-;25996:97::o;22997:31::-;;;;:::o;14432:136::-;14490:7;14517:43;14521:1;14524;14517:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;14510:50;14432:136;-1:-1:-1;;;14432:136:0:o;15322:471::-;15380:7;15625:6;15621:47;;-1:-1:-1;15655:1:0;15648:8;;15621:47;15692:5;;;15696:1;15692;:5;:1;15716:5;;;;;:10;15708:56;;;;-1:-1:-1;;;15708:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16269:132;16327:7;16354:39;16358:1;16361;16354:39;;;;;;;;;;;;;;;;;:3;:39::i;13968:181::-;14026:7;14058:5;;;14082:6;;;;14074:46;;;;;-1:-1:-1;;;14074:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;9960:177;10070:58;;;-1:-1:-1;;;;;10070:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10070:58:0;-1:-1:-1;;;10070:58:0;;;10043:86;;10063:5;;10043:19;:86::i;:::-;9960:177;;;:::o;18866:106::-;18924:7;18955:1;18951;:5;:13;;18963:1;18951:13;;;-1:-1:-1;18959:1:0;;18866:106;-1:-1:-1;18866:106:0:o;10145:205::-;10273:68;;;-1:-1:-1;;;;;10273:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10273:68:0;-1:-1:-1;;;10273:68:0;;;10246:96;;10266:5;;10246:19;:96::i;:::-;10145:205;;;;:::o;14871:192::-;14957:7;14993:12;14985:6;;;;14977:29;;;;-1:-1:-1;;;14977:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15029:5:0;;;14871:192::o;16897:278::-;16983:7;17018:12;17011:5;17003:28;;;;-1:-1:-1;;;17003:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17042:9;17058:1;17054;:5;;;;;;;16897:278;-1:-1:-1;;;;;16897:278:0:o;12265:761::-;12689:23;12715:69;12743:4;12715:69;;;;;;;;;;;;;;;;;12723:5;-1:-1:-1;;;;;12715:27:0;;;:69;;;;;:::i;:::-;12799:17;;12689:95;;-1:-1:-1;12799:21:0;12795:224;;12941:10;12930:30;;;;;;;;;;;;;;;-1:-1:-1;12930:30:0;12922:85;;;;-1:-1:-1;;;12922:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700:196;3803:12;3835:53;3858:6;3866:4;3872:1;3875:12;3835:22;:53::i;:::-;3828:60;3700:196;-1:-1:-1;;;;3700:196:0:o;5077:979::-;5207:12;5240:18;5251:6;5240:10;:18::i;:::-;5232:60;;;;;-1:-1:-1;;;5232:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5366:12;5380:23;5407:6;-1:-1:-1;;;;;5407:11:0;5427:8;5438:4;5407:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5407:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5365:78;;;;5458:7;5454:595;;;5489:10;-1:-1:-1;5482:17:0;;-1:-1:-1;5482:17:0;5454:595;5603:17;;:21;5599:439;;5866:10;5860:17;5927:15;5914:10;5910:2;5906:19;5899:44;5814:148;6002:20;;-1:-1:-1;;;6002:20:0;;;;;;;;;;;;;;;;;6009:12;;6002:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;779:422;1146:20;1185:8;;;779:422::o

Swarm Source

ipfs://790c9fad58a65efe2ffe34ef46b974a94b813884b9da0922717f6c950df59fa1

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  ]
[ 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.