false
true
0

Contract Address Details

0x00760602CAbF97B351F2b6d60Cf9d9Fdd8285d0A

Contract Name
Rewards
Creator
0x3cb673–fd1b08 at 0xb07938–04db9e
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
27553098
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
Rewards




Optimization enabled
true
Compiler version
v0.8.9+commit.e5eed63a




Optimization runs
200
EVM Version
london




Verified at
2026-04-22T03:12:37.130302Z

Constructor Arguments

00000000000000000000000030d20208d987713f46dfd34ef128bb16c404d10f000000000000000000000000d566918fb46c3dc43770b26eb1eda4e33a18505a

Arg [0] (address) : 0x30d20208d987713f46dfd34ef128bb16c404d10f
Arg [1] (address) : 0xd566918fb46c3dc43770b26eb1eda4e33a18505a

              

contracts/Rewards.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import './Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/Address.sol';

/// @title A rewards distributer contract
/// @author Stader Labs
/// @notice Distribute rewards on the provided Staker Contract according count of epochs and defined emission rate
contract Rewards is Ownable, Pausable, ReentrancyGuard {
  IERC20 public staderToken;
  /// @notice emission rate value for the calculation distribution rewards
  /// @dev  Unit is SD per second
  uint256 public emissionRate = 500;
  /// @notice information about start time, when the current contract instance was deployed
  uint256 public genesisTimestamp;
  /// @notice timestamp when the distribution rewards function was called in the last time
  uint256 public lastRedeemedTimestamp;
  /// @notice count of called distribution rewards function
  uint256 public epoch = 0;
  /// @notice address of staker contract
  address payable public stakingContractAddress;

  /// @notice event emitted while call function received
  event Received(address, uint256 amount);
  /// @notice event emitted while call function is triggered
  event Fallback(address, uint256 amount);
  /// @notice event emitted on successful transfer of rewards
  event DistributedRewards(address indexed stakerAddress, uint256 amount, uint256 timestamp);
  /// @notice event emitted on successful updating of emission rate
  event NewEmissionRate(uint256 amount);

  /// @notice Check for zero address before setting the address
  /// @dev Modifier
  /// @param _address the address to check
  modifier checkZeroAddress(address _address) {
    require(_address != address(0), 'Address cannot be zero');
    _;
  }

  /// @dev Constructor
  /// @param _stakingContractAddress the address of staker contract
  constructor(IERC20 _staderToken, address payable _stakingContractAddress) {
    require(_stakingContractAddress != address(0), 'Address cannot be a zero');
    staderToken = _staderToken;
    stakingContractAddress = _stakingContractAddress;
    genesisTimestamp = block.timestamp;
    lastRedeemedTimestamp = genesisTimestamp;
  }

  /**********************
   * Main functions      *
   **********************/

  /** @notice Send SD to the staking contract address based on the last redeemed timestamp.
     Example: if emissionRate is 20 SD per seconds & difference between last redeemed timestamp & current timestamp is 86400 seconds (1 Day)
     then the staker contract will receive 1,72,8000 SD (20 * 86400)
    send 10*10 SD token to the staking contract.
     */
  /// @dev currently we will distribute the rewards every 24 hours and is controlled by offchain function
  function distributeStakingRewards() external whenNotPaused nonReentrant {
    require(staderToken.balanceOf(address(this)) > 0, 'Contract balance should be greater than 0');
    uint256 currentTimestamp = block.timestamp;
    uint256 epochDelta = (currentTimestamp - lastRedeemedTimestamp);
    lastRedeemedTimestamp = currentTimestamp;
    epoch++;
    uint256 epochRewards = (epochDelta * emissionRate);

    uint256 totalRewards = staderToken.balanceOf(address(this));
    if (epochRewards > totalRewards) epochRewards = totalRewards; // this is important
    emit DistributedRewards(stakingContractAddress, epochRewards, currentTimestamp);
    require(
      staderToken.transfer(stakingContractAddress, epochRewards),
      'Failed to transfer rewards'
    );
  }

  /**********************
   * Setter functions   *
   **********************/

  /// @notice Emission rate is defined by SD per second.
  /// @param _emissionRate new value for the emission rate
  function setEmissionRate(uint256 _emissionRate) external onlyOwner {
    require(emissionRate != _emissionRate, 'Emission rate unchanged');
    require(_emissionRate > 0, 'Emission rate cannot be 0');
    emissionRate = _emissionRate;
    emit NewEmissionRate(emissionRate);
  }

  /// @notice Update staker contract address for the distribution rewards
  /// @param _stakingContractAddress new address of staker contract
  function setStakingContractAddress(address payable _stakingContractAddress)
    external
    checkZeroAddress(_stakingContractAddress)
    onlyOwner
  {
    require(stakingContractAddress != _stakingContractAddress, 'Staking address unchanged');
    stakingContractAddress = _stakingContractAddress;
  }

  /**********************
   * Getter functions   *
   **********************/

  /// @notice Get current Emission rate for calculating APY
  function getEmissionRate() external view returns (uint256) {
    return emissionRate;
  }

  /// @notice Get Last Redeemed Timestamp
  function getLastRedeemedTimestamp() external view returns (uint256) {
    return lastRedeemedTimestamp;
  }

  /// @notice Pauses the contract
  /// @dev The contract must be in the unpaused ot normal state
  function pause() external onlyOwner {
    _pause();
  }

  /// @notice Unpauses the contract and returns it to the normal state
  /// @dev The contract must be in the paused state
  function unpause() external onlyOwner {
    _unpause();
  }

  /**********************
   * Fallback functions *
   **********************/

  /// @notice when no other function matches (not even the receive function)
  fallback() external payable {
    emit Fallback(msg.sender, msg.value);
  }

  /// @notice for empty calldata (and any value)
  receive() external payable {
    emit Received(msg.sender, msg.value);
  }
}
        

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.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].
 */
abstract 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() {
        _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 making 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;
    }
}
          

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

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
          

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
          

/

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

/

// SPDX-License-Identifier: MIT
// Halborn (Ownable.sol)

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/utils/Context.sol';

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed through a two-step process where the owner nominates an
 * account and the nominated account needs to call the `acceptOwnership()`
 * function for the transfer of the ownership to fully succeed. This ensures the
 * nominated EOA account is a valid and active account.
 *
 * `renounceOwnership()` function is disabled by default. Remove the comments
 * in order to enable the function.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
  address private _owner;
  address private _ownerCandidate;

  event OwnerUpdated(address indexed newOwner);

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor() {
    _owner = _msgSender();
    emit OwnerUpdated(_msgSender());
  }

  /**
   * @dev Returns the address of the current owner.
   */
  function owner() public view virtual returns (address) {
    return _owner;
  }

  /**
   * @dev Returns the address of the new owner candidate.
   */
  function ownerCandidate() external view virtual returns (address) {
    return _ownerCandidate;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(owner() == _msgSender(), 'Ownable: caller is not the owner');
    _;
  }

  /**
   * @dev Proposes a new owner. Can only be called by the current
   * owner of the contract.
   */
  function proposeOwner(address newOwner) external onlyOwner {
    if (newOwner == address(0x0)) revert('Address cannot be zero');

    _ownerCandidate = newOwner;
  }

  /**
   * @dev Assigns the ownership of the contract to _ownerCandidate.
   * Can only be called by the _ownerCandidate.
   */
  function acceptOwnership() external {
    if (_ownerCandidate != msg.sender) revert('You are not the owner');
    _owner = msg.sender;
    emit OwnerUpdated(msg.sender);
  }

  /**
   * @dev Cancels the new owner proposal.
   * Can only be called by the _ownerCandidate or the current owner
   * of the contract.
   */
  function cancelOwnerProposal() external {
    if (_ownerCandidate != msg.sender && _owner != msg.sender) revert('You are not the owner');
    _ownerCandidate = address(0x0);
  }

  /**
    Disabled by default:

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
    */
}
          

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"london","compilationTarget":{"contracts/Rewards.sol":"Rewards"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_staderToken","internalType":"contract IERC20"},{"type":"address","name":"_stakingContractAddress","internalType":"address payable"}]},{"type":"event","name":"DistributedRewards","inputs":[{"type":"address","name":"stakerAddress","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"timestamp","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Fallback","inputs":[{"type":"address","name":"","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"NewEmissionRate","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnerUpdated","inputs":[{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Received","inputs":[{"type":"address","name":"","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"fallback","stateMutability":"payable"},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"acceptOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"cancelOwnerProposal","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"distributeStakingRewards","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"emissionRate","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"epoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"genesisTimestamp","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getEmissionRate","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getLastRedeemedTimestamp","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastRedeemedTimestamp","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerCandidate","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"proposeOwner","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEmissionRate","inputs":[{"type":"uint256","name":"_emissionRate","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStakingContractAddress","inputs":[{"type":"address","name":"_stakingContractAddress","internalType":"address payable"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"staderToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"stakingContractAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x60806040526101f4600455600060075534801561001b57600080fd5b50604051610efb380380610efb83398101604081905261003a91610132565b600080546001600160a01b03191633908117825560405190917f4ffd725fc4a22075e9ec71c59edf9c38cdeb588a91b24fc5b61388c5be41282b91a26001805460ff60a01b191681556002556001600160a01b0381166100e05760405162461bcd60e51b815260206004820152601860248201527f416464726573732063616e6e6f742062652061207a65726f0000000000000000604482015260640160405180910390fd5b600380546001600160a01b039384166001600160a01b0319918216179091556008805492909316911617905542600581905560065561016c565b6001600160a01b038116811461012f57600080fd5b50565b6000806040838503121561014557600080fd5b82516101508161011a565b60208401519092506101618161011a565b809150509250929050565b610d808061017b6000396000f3fe6080604052600436106101185760003560e01c80638da5cb5b116100a0578063c0a77da911610064578063c0a77da914610331578063cacf66ab14610346578063dc1c14651461035c578063de4a6bf214610372578063e2fbcda31461038757610158565b80638da5cb5b146102a7578063900cf0cf146102c557806396afc450146102db578063a1bdb15e146102f1578063b5ed298a1461031157610158565b806345610524116100e757806345610524146102165780635c975abb146102355780635f504a821461025f57806379ba50971461027d5780638456cb591461029257610158565b80631c1f8aa31461018d57806323ca0eb0146101af5780633535f48b146101c45780633f4ba83a1461020157610158565b3661015857604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587491015b60405180910390a1005b604080513381523460208201527ffbf15a1bae5e021d024841007b692b167afd2a281a4ff0b44f47387eb388205c910161014e565b34801561019957600080fd5b506101ad6101a8366004610c36565b6103a7565b005b3480156101bb57600080fd5b506101ad6104a7565b3480156101d057600080fd5b506008546101e4906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561020d57600080fd5b506101ad6107d4565b34801561022257600080fd5b506006545b6040519081526020016101f8565b34801561024157600080fd5b50600154600160a01b900460ff1660405190151581526020016101f8565b34801561026b57600080fd5b506001546001600160a01b03166101e4565b34801561028957600080fd5b506101ad610808565b34801561029e57600080fd5b506101ad610898565b3480156102b357600080fd5b506000546001600160a01b03166101e4565b3480156102d157600080fd5b5061022760075481565b3480156102e757600080fd5b5061022760045481565b3480156102fd57600080fd5b506101ad61030c366004610c5a565b6108ca565b34801561031d57600080fd5b506101ad61032c366004610c36565b6109d1565b34801561033d57600080fd5b50600454610227565b34801561035257600080fd5b5061022760055481565b34801561036857600080fd5b5061022760065481565b34801561037e57600080fd5b506101ad610a6c565b34801561039357600080fd5b506003546101e4906001600160a01b031681565b806001600160a01b0381166103fc5760405162461bcd60e51b8152602060048201526016602482015275416464726573732063616e6e6f74206265207a65726f60501b60448201526064015b60405180910390fd5b6000546001600160a01b031633146104265760405162461bcd60e51b81526004016103f390610c73565b6008546001600160a01b03838116911614156104845760405162461bcd60e51b815260206004820152601960248201527f5374616b696e67206164647265737320756e6368616e6765640000000000000060448201526064016103f3565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6104af610ae9565b6002805414156105015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103f3565b600280556003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561054957600080fd5b505afa15801561055d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105819190610ca8565b116105e05760405162461bcd60e51b815260206004820152602960248201527f436f6e74726163742062616c616e63652073686f756c6420626520677265617460448201526806572207468616e20360bc1b60648201526084016103f3565b60065442906000906105f29083610cd7565b600683905560078054919250600061060983610cee565b919050555060006004548261061e9190610d09565b6003546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561066757600080fd5b505afa15801561067b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069f9190610ca8565b9050808211156106ad578091505b60085460408051848152602081018790526001600160a01b03909216917fbdc7f0d9188c186f7565a82393783726ccdb096db02b40f02f017f28b65ea37d910160405180910390a260035460085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810185905291169063a9059cbb90604401602060405180830381600087803b15801561074557600080fd5b505af1158015610759573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077d9190610d28565b6107c95760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207472616e73666572207265776172647300000000000060448201526064016103f3565b505060016002555050565b6000546001600160a01b031633146107fe5760405162461bcd60e51b81526004016103f390610c73565b610806610b36565b565b6001546001600160a01b0316331461085a5760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b60448201526064016103f3565b600080546001600160a01b03191633908117825560405190917f4ffd725fc4a22075e9ec71c59edf9c38cdeb588a91b24fc5b61388c5be41282b91a2565b6000546001600160a01b031633146108c25760405162461bcd60e51b81526004016103f390610c73565b610806610b8b565b6000546001600160a01b031633146108f45760405162461bcd60e51b81526004016103f390610c73565b8060045414156109465760405162461bcd60e51b815260206004820152601760248201527f456d697373696f6e207261746520756e6368616e67656400000000000000000060448201526064016103f3565b600081116109965760405162461bcd60e51b815260206004820152601960248201527f456d697373696f6e20726174652063616e6e6f7420626520300000000000000060448201526064016103f3565b60048190556040518181527f41f189206ae6a89a58bce48a3d7177707d766a762870e10005209e4713603d8d9060200160405180910390a150565b6000546001600160a01b031633146109fb5760405162461bcd60e51b81526004016103f390610c73565b6001600160a01b038116610a4a5760405162461bcd60e51b8152602060048201526016602482015275416464726573732063616e6e6f74206265207a65726f60501b60448201526064016103f3565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b03163314801590610a9257506000546001600160a01b03163314155b15610ad75760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b60448201526064016103f3565b600180546001600160a01b0319169055565b600154600160a01b900460ff16156108065760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f3565b610b3e610bce565b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610b93610ae9565b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b6e3390565b600154600160a01b900460ff166108065760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103f3565b6001600160a01b0381168114610c3357600080fd5b50565b600060208284031215610c4857600080fd5b8135610c5381610c1e565b9392505050565b600060208284031215610c6c57600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610cba57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610ce957610ce9610cc1565b500390565b6000600019821415610d0257610d02610cc1565b5060010190565b6000816000190483118215151615610d2357610d23610cc1565b500290565b600060208284031215610d3a57600080fd5b81518015158114610c5357600080fdfea2646970667358221220c4a4763832e19d04637fd6d0166e183d9fb6eabf7f4f30565bc78b7f9c77147f64736f6c6343000809003300000000000000000000000030d20208d987713f46dfd34ef128bb16c404d10f000000000000000000000000d566918fb46c3dc43770b26eb1eda4e33a18505a

Deployed ByteCode

0x6080604052600436106101185760003560e01c80638da5cb5b116100a0578063c0a77da911610064578063c0a77da914610331578063cacf66ab14610346578063dc1c14651461035c578063de4a6bf214610372578063e2fbcda31461038757610158565b80638da5cb5b146102a7578063900cf0cf146102c557806396afc450146102db578063a1bdb15e146102f1578063b5ed298a1461031157610158565b806345610524116100e757806345610524146102165780635c975abb146102355780635f504a821461025f57806379ba50971461027d5780638456cb591461029257610158565b80631c1f8aa31461018d57806323ca0eb0146101af5780633535f48b146101c45780633f4ba83a1461020157610158565b3661015857604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587491015b60405180910390a1005b604080513381523460208201527ffbf15a1bae5e021d024841007b692b167afd2a281a4ff0b44f47387eb388205c910161014e565b34801561019957600080fd5b506101ad6101a8366004610c36565b6103a7565b005b3480156101bb57600080fd5b506101ad6104a7565b3480156101d057600080fd5b506008546101e4906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561020d57600080fd5b506101ad6107d4565b34801561022257600080fd5b506006545b6040519081526020016101f8565b34801561024157600080fd5b50600154600160a01b900460ff1660405190151581526020016101f8565b34801561026b57600080fd5b506001546001600160a01b03166101e4565b34801561028957600080fd5b506101ad610808565b34801561029e57600080fd5b506101ad610898565b3480156102b357600080fd5b506000546001600160a01b03166101e4565b3480156102d157600080fd5b5061022760075481565b3480156102e757600080fd5b5061022760045481565b3480156102fd57600080fd5b506101ad61030c366004610c5a565b6108ca565b34801561031d57600080fd5b506101ad61032c366004610c36565b6109d1565b34801561033d57600080fd5b50600454610227565b34801561035257600080fd5b5061022760055481565b34801561036857600080fd5b5061022760065481565b34801561037e57600080fd5b506101ad610a6c565b34801561039357600080fd5b506003546101e4906001600160a01b031681565b806001600160a01b0381166103fc5760405162461bcd60e51b8152602060048201526016602482015275416464726573732063616e6e6f74206265207a65726f60501b60448201526064015b60405180910390fd5b6000546001600160a01b031633146104265760405162461bcd60e51b81526004016103f390610c73565b6008546001600160a01b03838116911614156104845760405162461bcd60e51b815260206004820152601960248201527f5374616b696e67206164647265737320756e6368616e6765640000000000000060448201526064016103f3565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6104af610ae9565b6002805414156105015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103f3565b600280556003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561054957600080fd5b505afa15801561055d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105819190610ca8565b116105e05760405162461bcd60e51b815260206004820152602960248201527f436f6e74726163742062616c616e63652073686f756c6420626520677265617460448201526806572207468616e20360bc1b60648201526084016103f3565b60065442906000906105f29083610cd7565b600683905560078054919250600061060983610cee565b919050555060006004548261061e9190610d09565b6003546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561066757600080fd5b505afa15801561067b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069f9190610ca8565b9050808211156106ad578091505b60085460408051848152602081018790526001600160a01b03909216917fbdc7f0d9188c186f7565a82393783726ccdb096db02b40f02f017f28b65ea37d910160405180910390a260035460085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810185905291169063a9059cbb90604401602060405180830381600087803b15801561074557600080fd5b505af1158015610759573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077d9190610d28565b6107c95760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207472616e73666572207265776172647300000000000060448201526064016103f3565b505060016002555050565b6000546001600160a01b031633146107fe5760405162461bcd60e51b81526004016103f390610c73565b610806610b36565b565b6001546001600160a01b0316331461085a5760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b60448201526064016103f3565b600080546001600160a01b03191633908117825560405190917f4ffd725fc4a22075e9ec71c59edf9c38cdeb588a91b24fc5b61388c5be41282b91a2565b6000546001600160a01b031633146108c25760405162461bcd60e51b81526004016103f390610c73565b610806610b8b565b6000546001600160a01b031633146108f45760405162461bcd60e51b81526004016103f390610c73565b8060045414156109465760405162461bcd60e51b815260206004820152601760248201527f456d697373696f6e207261746520756e6368616e67656400000000000000000060448201526064016103f3565b600081116109965760405162461bcd60e51b815260206004820152601960248201527f456d697373696f6e20726174652063616e6e6f7420626520300000000000000060448201526064016103f3565b60048190556040518181527f41f189206ae6a89a58bce48a3d7177707d766a762870e10005209e4713603d8d9060200160405180910390a150565b6000546001600160a01b031633146109fb5760405162461bcd60e51b81526004016103f390610c73565b6001600160a01b038116610a4a5760405162461bcd60e51b8152602060048201526016602482015275416464726573732063616e6e6f74206265207a65726f60501b60448201526064016103f3565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b03163314801590610a9257506000546001600160a01b03163314155b15610ad75760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b60448201526064016103f3565b600180546001600160a01b0319169055565b600154600160a01b900460ff16156108065760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f3565b610b3e610bce565b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610b93610ae9565b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b6e3390565b600154600160a01b900460ff166108065760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103f3565b6001600160a01b0381168114610c3357600080fd5b50565b600060208284031215610c4857600080fd5b8135610c5381610c1e565b9392505050565b600060208284031215610c6c57600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610cba57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610ce957610ce9610cc1565b500390565b6000600019821415610d0257610d02610cc1565b5060010190565b6000816000190483118215151615610d2357610d23610cc1565b500290565b600060208284031215610d3a57600080fd5b81518015158114610c5357600080fdfea2646970667358221220c4a4763832e19d04637fd6d0166e183d9fb6eabf7f4f30565bc78b7f9c77147f64736f6c63430008090033