ETH Price: $2,586.19 (-2.18%)

Contract

0x51Ad9dF02902Fe652eA039Fea7F4b23BC2d1e9B5
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim200819042024-06-13 9:07:2369 days ago1718269643IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.001462811.11064236
Claim199577622024-05-27 0:54:5986 days ago1716771299IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.000477063.7762397
Claim199185242024-05-21 13:16:5991 days ago1716297419IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0022999718.20553437
Claim198504852024-05-12 0:51:23101 days ago1715475083IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.000345213.0134657
Claim198504472024-05-12 0:43:47101 days ago1715474627IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.00042843.73962972
Claim198503982024-05-12 0:33:59101 days ago1715474039IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.000342442.98958821
Claim197471022024-04-27 13:56:11115 days ago1714226171IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.000789786.89488921
Claim197006862024-04-21 2:04:47122 days ago1713665087IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.000735095.31979417
Claim196374372024-04-12 5:28:11131 days ago1712899691IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.00127611.13965965
Claim195071682024-03-24 21:49:59149 days ago1711316999IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0027706819.23311336
Claim194702312024-03-19 17:18:47154 days ago1710868727IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0047857741.77597746
Claim194368472024-03-15 0:40:47159 days ago1710463247IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0051974845.3699121
Claim193935152024-03-08 22:56:11165 days ago1709938571IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0063877955.7661982
Claim193837352024-03-07 13:56:47166 days ago1709819807IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0087972876.79328003
Claim193073542024-02-25 21:43:47177 days ago1708897427IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0048174642.05700354
Claim192572272024-02-18 21:04:11184 days ago1708290251IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0030089626.27140938
Claim192251312024-02-14 8:50:59189 days ago1707900659IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0023993519.92254034
Claim191616602024-02-05 11:04:59198 days ago1707131099IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0019962217.42548852
Claim189965762024-01-13 7:47:35221 days ago1705132055IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0021129115.3614991
Claim189501102024-01-06 19:07:47227 days ago1704568067IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0031777826.38611233
Claim189434382024-01-05 20:27:35228 days ago1704486455IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0019116516.69073805
Claim189434182024-01-05 20:23:35228 days ago1704486215IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0021247118.55094297
Claim189210672024-01-02 17:05:11231 days ago1704215111IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.002915722.14607285
Claim189055302023-12-31 12:42:11233 days ago1704026531IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0017152913.02839285
Claim188839502023-12-28 11:55:59236 days ago1703764559IN
0x51Ad9dF0...BC2d1e9B5
0 ETH0.0036135324.19942243
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ImpostorsStakerClaim

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : ImpostorsStakerClaim.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.15;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

import "../interfaces/ITiny721.sol";
import "../interfaces/staker/IFixedStaker.sol";
import "../libraries/EIP712.sol";

/*
  It saves bytecode to revert on custom errors instead of using require
  statements. We are just declaring these errors for reverting with upon various
  conditions later in this contract.
*/
error CannotClaimInvalidSignature();
error CannotClaimAlreadyClaimed();
error SweepingTransferFailed();

/**
  @title The Impostors genesis season is over. Callers may claim pending BLOOD.
  @author Tim Clancy
  @author Rostislav Khlebnikov
  @author Liam Clancy
  @author 0xthrpw

  July 19th, 2022.
*/
contract ImpostorsStakerClaim is
  EIP712, Ownable, ReentrancyGuard
{
  using SafeERC20 for IERC20;

  /// A constant hash of the claim operation's signature.
  bytes32 constant public CLAIM_TYPEHASH = keccak256(
    "claim(address _claimant,address _asset,uint256 _amount)"
  );

  /// The name of the vault.
  string public name;

  /// The address permitted to sign claim signatures.
  address public immutable signer;

  /// The address of the Impostors staker.
  address public immutable staker;

  /// The address of the Impostors items to unlock transfers for.
  address public immutable impostors;

  /// A mapping for whether or not a specific claimant has claimed.
  mapping ( address => bool ) public claimed;

  /**
    An event emitted when a claimant claims tokens.

    @param claimant The caller who claimed the tokens.
    @param asset The ERC-20 tokens being claimed.
    @param amount The amount of tokens claimed.
  */
  event Claimed (
    address indexed claimant,
    address indexed asset,
    uint256 amount
  );

  /**
    Construct a new vault by providing it a permissioned claim signer which may
    issue claims and claim amounts.

    @param _name The name of the vault used in EIP-712 domain separation.
    @param _signer The address permitted to sign claim signatures.
    @param _staker The address of the Impostors staker.
    @param _impostors The address of the Impostors items to unlock transfers on.
  */
  constructor (
    string memory _name,
    address _signer,
    address _staker,
    address _impostors
  ) EIP712(_name, "1") {
    name = _name;
    signer = _signer;
    staker = _staker;
    impostors = _impostors;
  }

  /**
    A private helper function to validate a signature supplied for token claims.
    This function constructs a digest and verifies that the signature signer was
    the authorized address we expect.

    @param _claimant The claimant attempting to claim tokens.
    @param _asset The address of the ERC-20 token being claimed.
    @param _amount The amount of tokens the claimant is trying to claim.
    @param _v The recovery byte of the signature.
    @param _r Half of the ECDSA signature pair.
    @param _s Half of the ECDSA signature pair.
  */
  function validClaim (
    address _claimant,
    address _asset,
    uint256 _amount,
    uint8 _v,
    bytes32 _r,
    bytes32 _s
  ) private view returns (bool) {
    bytes32 digest = keccak256(
      abi.encodePacked(
        "\x19\x01",
        DOMAIN_SEPARATOR,
        keccak256(
          abi.encode(
            CLAIM_TYPEHASH,
            _claimant,
            _asset,
            _amount
          )
        )
      )
    );

    // The claim is validated if it was signed by our authorized signer.
    return ecrecover(digest, _v, _r, _s) == signer;
  }

  /**
    Allow a caller to claim any of their available tokens if
      1. the claim is backed by a valid signature from the trusted `signer`.
      2. the vault has enough tokens to fulfill the claim.
      3. the user's items are unlocked.

    @param _asset The address of the ERC-20 token being claimed.
    @param _amount The amount of tokens that the caller is trying to claim.
    @param _v The recovery byte of the signature.
    @param _r Half of the ECDSA signature pair.
    @param _s Half of the ECDSA signature pair.
  */
  function claim (
    address _asset,
    uint256 _amount,
    uint8 _v,
    bytes32 _r,
    bytes32 _s
  ) external nonReentrant {

    // Validate that the caller has not already claimed.
    if (claimed[_msgSender()]) {
      revert CannotClaimAlreadyClaimed();
    }

    // Validiate that the claim was provided by our trusted `signer`.
    bool validSignature = validClaim(
      _msgSender(),
      _asset,
      _amount,
      _v,
      _r,
      _s
    );
    if (!validSignature) {
      revert CannotClaimInvalidSignature();
    }

    // Mark the claim as fulfilled.
    claimed[_msgSender()] = true;

    /*
      Iterate through all pools in the staker to retrieve the caller's staked
      items.
    */
    for (uint256 poolId = 1; poolId < 5;) {
      (uint256[] memory flexStakedItems, ) = IFixedStaker(staker).getPosition(
        poolId,
        _msgSender()
      );

      // Unlock each item.
      for (uint256 i = 0; i < flexStakedItems.length;) {
        uint256 impostorId = flexStakedItems[i];
        ITiny721(impostors).lockTransfer(impostorId, false);

        // Increment.
        unchecked {
          ++i;
        }
      }

      // Increment.
      unchecked {
        ++poolId;
      }
    }

    // Transfer tokens to the claimant.
    IERC20(_asset).safeTransfer(
      _msgSender(),
      _amount
    );

    // Emit an event.
    emit Claimed(_msgSender(), _asset, _amount);
  }

  /**
    Allow the owner to sweep either Ether or a particular ERC-20 token from the
    contract and send it to another address. This allows the owner of the shop
    to withdraw their funds after the sale is completed.

    @param _token The token to sweep the balance from; if a zero address is sent
      then the contract's balance of Ether will be swept.
    @param _destination The address to send the swept tokens to.
    @param _amount The amount of token to sweep.
  */
  function sweep (
    address _token,
    address _destination,
    uint256 _amount
  ) external onlyOwner nonReentrant {

    // A zero address means we should attempt to sweep Ether.
    if (_token == address(0)) {
      (bool success, ) = payable(_destination).call{ value: _amount }("");
      if (!success) { revert SweepingTransferFailed(); }

    // Otherwise, we should try to sweep an ERC-20 token.
    } else {
      IERC20(_token).safeTransfer(_destination, _amount);
    }
  }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 10 : ReentrancyGuard.sol
// 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;
    }
}

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.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 `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);

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

File 5 of 10 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

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

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

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

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

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

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 6 of 10 : ITiny721.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.11;

/**
  @title A minimalistic, gas-efficient ERC-721 implementation forked from the
    `Super721` ERC-721 implementation used by SuperFarm.
  @author Tim Clancy
  @author 0xthrpw
  @author Qazawat Zirak
  @author Rostislav Khlebnikov

  Compared to the original `Super721` implementation that this contract forked
  from, this is a very pared-down contract that includes simple delegated
  minting and transfer locks.

  This contract includes the gas efficiency techniques graciously shared with
  the world in the specific ERC-721 implementation by Chiru Labs that is being
  called "ERC-721A" (https://github.com/chiru-labs/ERC721A). We have validated
  this contract against their test cases.

  February 8th, 2022.
*/
interface ITiny721 {

  /**
    Return the total number of this token that have ever been minted.

    @return The total supply of minted tokens.
  */
  function totalSupply () external view returns (uint256);

  /**
    Return whether or not the transfer of a particular token ID `_id` is locked.

    @param _id The ID of the token to check the lock status of.

    @return Whether or not the particular token ID `_id` has transfers locked.
  */
  function transferLocks (
    uint256 _id
  ) external returns (bool);

  /**
    Provided with an address parameter, this function returns the number of all
    tokens in this collection that are owned by the specified address.

    @param _owner The address of the account for which we are checking balances
  */
  function balanceOf (
    address _owner
  ) external returns (uint256);

  /**
    Return the address that holds a particular token ID.

    @param _id The token ID to check for the holding address of.

    @return The address that holds the token with ID of `_id`.
  */
  function ownerOf (
    uint256 _id
  ) external returns (address);

  /**
    This function performs an unsafe transfer of token ID `_id` from address
    `_from` to address `_to`. The transfer is considered unsafe because it does
    not validate that the receiver can actually take proper receipt of an
    ERC-721 token.

    @param _from The address to transfer the token from.
    @param _to The address to transfer the token to.
    @param _id The ID of the token being transferred.
  */
  function transferFrom (
    address _from,
    address _to,
    uint256 _id
  ) external;

  /**
    This function allows permissioned minters of this contract to mint one or
    more tokens dictated by the `_amount` parameter. Any minted tokens are sent
    to the `_recipient` address.

    Note that tokens are always minted sequentially starting at one. That is,
    the list of token IDs is always increasing and looks like [ 1, 2, 3... ].
    Also note that per our use cases the intended recipient of these minted
    items will always be externally-owned accounts and not other contracts. As a
    result there is no safety check on whether or not the mint destination can
    actually correctly handle an ERC-721 token.

    @param _recipient The recipient of the tokens being minted.
    @param _amount The amount of tokens to mint.
  */
  function mint_Qgo (
    address _recipient,
    uint256 _amount
  ) external;

  /**
    This function allows an administrative caller to lock the transfer of
    particular token IDs. This is designed for a non-escrow staking contract
    that comes later to lock a user's NFT while still letting them keep it in
    their wallet.
    @param _id The ID of the token to lock.
    @param _locked The status of the lock; true to lock, false to unlock.
  */
  function lockTransfer (
    uint256 _id,
    bool _locked
  ) external;
}

File 7 of 10 : IFixedStaker.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.11;

/**
  @title A simple staking contract for transfer-locking `Tiny721` items in
    exchange for tokens.
  @author Tim Clancy
  @author Rostislav Khlebnikov
  @author 0xthrpw

  This staking contract disburses tokens from its internal reservoir to those
  who stake `Tiny721` items, at a fixed rate of token per item independent of
  the number of items staked. It supports defining multiple time-locked pools
  with different rates.

  April 28th, 2022.
*/
interface IFixedStaker {

  /**
    Retrieve details about a particular staker `_staker`'s `Position` in a
    particular pool `_id`.

    @param _id The ID of the pool to retrieve a position for.
    @param _staker The address of the staker to retrieve a position for.

    @return A deconstructed `Position` as a tuple of the array of staked item
      IDs and the amount of token paid out in total for that user's position.
  */
  function getPosition (
    uint256 _id,
    address _staker
  ) external view returns (uint256[] memory, uint256);

  /**
    View to retrieve current pending rewards for a user

    @param _poolIds the pools we are inquiring about
    @param _user the address of the account being queried
  */
  function pendingClaims (
    uint256[] memory _poolIds,
    address _user
  ) external view returns (uint256 totalClaimAmount);

  /**
    Allow the contract owner to add a new staking `Pool` to the Staker or
    overwrite the configuration of an existing one.

    @param _id The ID of the `Pool` to add or update.
    @param _item The address of the item contract that is staked in this pool.
    @param _lockedTokensPerSecond The amount of token that each item staked in
      this pool earns each second while it is locked during the `lockDuration`.
    @param _unlockedTokensPerSecond The amount of token that each item staked in
      this pool earns each second while it is unlocked and available for
      withdrawal.
    @param _lockDuration The amount of time in seconds where this pool requires
      that the asset remain time-locked and unavailable to withdraw. Once the
      item has been staked for `lockDuration` seconds, the item may be
      withdrawn from the pool and the number of tokens earned changes to the
      `unlockedTokensPerSecond` rate.
    @param _deadline The timestamp stakes must be created by, any stakes to
      pool that are attempted after this timestamp will revert.
  */
  function setPool (
    uint256 _id,
    address _item,
    uint256 _lockedTokensPerSecond,
    uint256 _unlockedTokensPerSecond,
    uint256 _lockDuration,
    uint256 _deadline
  ) external;

  /**
    Claim all of the caller's pending tokens from the specified pools.

    @param _poolIds The IDs of the pools to claim pending token rewards from.
  */
  function claim (
    uint256[] memory _poolIds
  ) external;

  /**
    Lock some particular token IDs from some particular contract addresses into
    some particular `Pool` of this Staker.

    @param _poolId The ID of the `Pool` to stake items in.
    @param _tokenIds An array of token IDs corresponding to specific tokens in
      the item contract from `Pool` with the ID of `_poolId`.
  */
  function stake (
    uint256 _poolId,
    uint256[] calldata _tokenIds
  ) external;

  /**
    Unlock some particular token IDs from some particular contract addresses
    from some particular `Pool` of this Staker.

    @param _poolId The ID of the `Pool` to unstake items from.
    @param _tokenIds An array of token IDs corresponding to specific tokens in
      the item contract from `Pool` with the ID of `_poolId` that are to be
      unstaked.
  */
  function withdraw (
    uint256 _poolId,
    uint256[] calldata _tokenIds
  ) external;

  /**
    Allow the owner to forcibly unlock some particular token IDs from some
    particular contract addresses from some particular `Pool` of this Staker.
    The eviction mechanic allows the owner to intervene in cases where item
    locks induce issues in the broader third-party ecosystem, namely in regards
    to unfulfillable marketplace listings. An address whose items are being
    forcibly evicted may optionally be banned from staking and may optionally
    have its rewards not delivered.

    @param _evictee The address being evicted from the specified pool.
    @param _poolId The ID of the `Pool` to evict items from.
    @param _tokenIds An array of token IDs corresponding to specific tokens in
      the item contract from `Pool` with the ID of `_poolId` that are to be
      evicted.
    @param _ban Whether or not the `_evictee` should be banned from future
      staking.
    @param _skipClaim Whether or not the `_evictee`'s pending claims should be
      skipped.
  */
  function evict (
    address _evictee,
    uint256 _poolId,
    uint256[] calldata _tokenIds,
    bool _ban,
    bool _skipClaim
  ) external;

  /**
    Set whether or not an address is banned from staking.

    @param _caller The caller to ban or unban.
    @param _banned Whether or not `_caller` is banned.
  */
  function setBan (
    address _caller,
    bool _banned
  ) external;

  /**
    Allow the owner to sweep either Ether or a particular ERC-20 token from the
    contract and send it to another address. This allows the owner of the shop
    to withdraw their funds after the sale is completed.

    @param _token The token to sweep the balance from; if a zero address is sent
      then the contract's balance of Ether will be swept.
    @param _amount The amount of token to sweep.
    @param _destination The address to send the swept tokens to.
  */
  function sweep (
    address _token,
    address _destination,
    uint256 _amount
  ) external;
}

File 8 of 10 : EIP712.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.11;

abstract contract EIP712 {
  bytes32 constant EIP712DOMAIN_TYPEHASH = keccak256 (
    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
  );

  struct EIP712Domain {
    string  name;
    string  version;
    uint256 chainId;
    address verifyingContract;
  }

  bytes internal personalSignPrefix = "\x19Ethereum Signed Message:\n";

  bytes32 immutable public DOMAIN_SEPARATOR;

  constructor (
    string memory _name,
    string memory _version
  ) {
    uint chainId;
    assembly {
      chainId := chainid()
    }
    DOMAIN_SEPARATOR = hash(EIP712Domain({
      name: _name,
      version: _version,
      chainId: chainId,
      verifyingContract: address(this)
    }));
  }

  function hash (
    EIP712Domain memory eip712Domain
  ) internal pure returns (bytes32) {
    return keccak256(abi.encode(
      EIP712DOMAIN_TYPEHASH,
      keccak256(bytes(eip712Domain.name)),
      keccak256(bytes(eip712Domain.version)),
      eip712Domain.chainId,
      eip712Domain.verifyingContract
    ));
  }

  function parseSignature (
    bytes memory signature
  ) internal pure returns (uint8 v, bytes32 r, bytes32 s) {
    // ecrecover takes the signature parameters, and the only way to get them
    // currently is to use assembly.
    // solhint-disable-next-line no-inline-assembly
    assembly {
      r := mload(add(signature, 0x20))
      s := mload(add(signature, 0x40))
      v := byte(0, mload(add(signature, 0x60)))
    }
    return (v,r,s);
  }
}

File 9 of 10 : Context.sol
// 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;
    }
}

File 10 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"_staker","type":"address"},{"internalType":"address","name":"_impostors","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotClaimAlreadyClaimed","type":"error"},{"inputs":[],"name":"CannotClaimInvalidSignature","type":"error"},{"inputs":[],"name":"SweepingTransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimant","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"CLAIM_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"impostors","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610140604052601a6101009081527f19457468657265756d205369676e6564204d6573736167653a0a0000000000006101205260009062000041908262000294565b503480156200004f57600080fd5b50604051620013d3380380620013d383398101604081905262000072916200037d565b60408051808201825260018152603160f81b602080830191909152825160808101845287815290810182905246928101839052306060820152869290620000b990620000ff565b60805250620000cc91503390506200019d565b60016002556003620000df858262000294565b506001600160a01b0392831660a05290821660c0521660e0525062000493565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82600001518051906020012083602001518051906020012084604001518560600151604051602001620001809594939291909485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b604051602081830303815290604052805190602001209050919050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021a57607f821691505b6020821081036200023b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028f57600081815260208120601f850160051c810160208610156200026a5750805b601f850160051c820191505b818110156200028b5782815560010162000276565b5050505b505050565b81516001600160401b03811115620002b057620002b0620001ef565b620002c881620002c1845462000205565b8462000241565b602080601f831160018114620003005760008415620002e75750858301515b600019600386901b1c1916600185901b1785556200028b565b600085815260208120601f198616915b82811015620003315788860151825594840194600190910190840162000310565b5085821015620003505787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b03811681146200037857600080fd5b919050565b600080600080608085870312156200039457600080fd5b84516001600160401b0380821115620003ac57600080fd5b818701915087601f830112620003c157600080fd5b815181811115620003d657620003d6620001ef565b604051601f8201601f19908116603f01168101908382118183101715620004015762000401620001ef565b81604052828152602093508a848487010111156200041e57600080fd5b600091505b8282101562000442578482018401518183018501529083019062000423565b82821115620004545760008484830101525b97506200046691505087820162000360565b94505050620004786040860162000360565b9150620004886060860162000360565b905092959194509250565b60805160a05160c05160e051610eeb620004e8600039600081816101500152610611015260008181610177015261052201526000818160dc015261092b01526000818161011b015261082e0152610eeb6000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80636b0509b1116100715780636b0509b1146101ae578063715018a6146101d55780638da5cb5b146101dd578063c884ef83146101ee578063e7d1ebf414610221578063f2fde38b1461023457600080fd5b806306fdde03146100b9578063238ac933146100d75780633644e515146101165780634aae6c791461014b5780635ebaf1db1461017257806362c0676714610199575b600080fd5b6100c1610247565b6040516100ce9190610c1a565b60405180910390f35b6100fe7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100ce565b61013d7f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016100ce565b6100fe7f000000000000000000000000000000000000000000000000000000000000000081565b6100fe7f000000000000000000000000000000000000000000000000000000000000000081565b6101ac6101a7366004610c69565b6102d5565b005b61013d7f6f837e924caff5aab091ff9cd45cb0f5a18a31e71f5a0581f79fa980ad3d072c81565b6101ac610403565b6001546001600160a01b03166100fe565b6102116101fc366004610ca5565b60046020526000908152604090205460ff1681565b60405190151581526020016100ce565b6101ac61022f366004610cc0565b610439565b6101ac610242366004610ca5565b6106e5565b6003805461025490610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461028090610d16565b80156102cd5780601f106102a2576101008083540402835291602001916102cd565b820191906000526020600020905b8154815290600101906020018083116102b057829003601f168201915b505050505081565b6001546001600160a01b031633146103085760405162461bcd60e51b81526004016102ff90610d50565b60405180910390fd5b60028054036103595760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ff565b600280556001600160a01b0383166103e5576000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146103b8576040519150601f19603f3d011682016040523d82523d6000602084013e6103bd565b606091505b50509050806103df57604051639081276360e01b815260040160405180910390fd5b506103f9565b6103f96001600160a01b0384168383610780565b5050600160025550565b6001546001600160a01b0316331461042d5760405162461bcd60e51b81526004016102ff90610d50565b61043760006107d7565b565b600280540361048a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ff565b600280553360009081526004602052604090205460ff16156104bf57604051635947ff1560e11b815260040160405180910390fd5b60006104cf338787878787610829565b9050806104ef576040516335b5a4e360e21b815260040160405180910390fd5b336000908152600460205260409020805460ff191660019081179091555b60058110156106835760006001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663d29f541d83336040516001600160e01b031960e085901b16815260048101929092526001600160a01b03166024820152604401600060405180830381865afa158015610593573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105bb9190810190610d9b565b50905060005b81518110156106795760008282815181106105de576105de610e61565b6020908102919091010151604051630ced5c9d60e21b815260048101829052600060248201529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906333b5727490604401600060405180830381600087803b15801561065557600080fd5b505af1158015610669573d6000803e3d6000fd5b50505050816001019150506105c1565b505060010161050d565b506106986001600160a01b0387163387610780565b6040518581526001600160a01b0387169033907ff7a40077ff7a04c7e61f6f26fb13774259ddf1b6bce9ecf26a8276cdd39926839060200160405180910390a35050600160025550505050565b6001546001600160a01b0316331461070f5760405162461bcd60e51b81526004016102ff90610d50565b6001600160a01b0381166107745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102ff565b61077d816107d7565b50565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526107d2908490610995565b505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000807f00000000000000000000000000000000000000000000000000000000000000007f6f837e924caff5aab091ff9cd45cb0f5a18a31e71f5a0581f79fa980ad3d072c8989896040516020016108a494939291909384526001600160a01b03928316602085015291166040830152606082015260800190565b604051602081830303815290604052805190602001206040516020016108e192919061190160f01b81526002810192909252602282015260420190565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff881691830191909152606082018690526080820185905291506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169060019060a0016020604051602081039080840390855afa158015610974573d6000803e3d6000fd5b505050602060405103516001600160a01b0316149150509695505050505050565b60006109ea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610a679092919063ffffffff16565b8051909150156107d25780806020019051810190610a089190610e77565b6107d25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102ff565b6060610a768484600085610a80565b90505b9392505050565b606082471015610ae15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102ff565b6001600160a01b0385163b610b385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102ff565b600080866001600160a01b03168587604051610b549190610e99565b60006040518083038185875af1925050503d8060008114610b91576040519150601f19603f3d011682016040523d82523d6000602084013e610b96565b606091505b5091509150610ba6828286610bb1565b979650505050505050565b60608315610bc0575081610a79565b825115610bd05782518084602001fd5b8160405162461bcd60e51b81526004016102ff9190610c1a565b60005b83811015610c05578181015183820152602001610bed565b83811115610c14576000848401525b50505050565b6020815260008251806020840152610c39816040850160208701610bea565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610c6457600080fd5b919050565b600080600060608486031215610c7e57600080fd5b610c8784610c4d565b9250610c9560208501610c4d565b9150604084013590509250925092565b600060208284031215610cb757600080fd5b610a7982610c4d565b600080600080600060a08688031215610cd857600080fd5b610ce186610c4d565b945060208601359350604086013560ff81168114610cfe57600080fd5b94979396509394606081013594506080013592915050565b600181811c90821680610d2a57607f821691505b602082108103610d4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610dae57600080fd5b825167ffffffffffffffff80821115610dc657600080fd5b818501915085601f830112610dda57600080fd5b8151602082821115610dee57610dee610d85565b8160051b604051601f19603f83011681018181108682111715610e1357610e13610d85565b604052928352818301935084810182019289841115610e3157600080fd5b948201945b83861015610e4f57855185529482019493820193610e36565b97909101519698969750505050505050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215610e8957600080fd5b81518015158114610a7957600080fd5b60008251610eab818460208701610bea565b919091019291505056fea264697066735822122097aac7cf30c11f46c2f365975100c6dcc627d8993fbb847600a238757c651c8464736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000009999c181c5f6a970fbea7ed2e490581d5b5105f2000000000000000000000000f9936bc175f4777d85351738ef869b3ad7e7072d0000000000000000000000003110ef5f612208724ca51f5761a69081809f03b7000000000000000000000000000000000000000000000000000000000000001447656e6573697320536561736f6e20436c61696d000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80636b0509b1116100715780636b0509b1146101ae578063715018a6146101d55780638da5cb5b146101dd578063c884ef83146101ee578063e7d1ebf414610221578063f2fde38b1461023457600080fd5b806306fdde03146100b9578063238ac933146100d75780633644e515146101165780634aae6c791461014b5780635ebaf1db1461017257806362c0676714610199575b600080fd5b6100c1610247565b6040516100ce9190610c1a565b60405180910390f35b6100fe7f0000000000000000000000009999c181c5f6a970fbea7ed2e490581d5b5105f281565b6040516001600160a01b0390911681526020016100ce565b61013d7ff701ae8a2a301cd9a8031018ebf6edade945bf961c18fa63997454d7f03cb02c81565b6040519081526020016100ce565b6100fe7f0000000000000000000000003110ef5f612208724ca51f5761a69081809f03b781565b6100fe7f000000000000000000000000f9936bc175f4777d85351738ef869b3ad7e7072d81565b6101ac6101a7366004610c69565b6102d5565b005b61013d7f6f837e924caff5aab091ff9cd45cb0f5a18a31e71f5a0581f79fa980ad3d072c81565b6101ac610403565b6001546001600160a01b03166100fe565b6102116101fc366004610ca5565b60046020526000908152604090205460ff1681565b60405190151581526020016100ce565b6101ac61022f366004610cc0565b610439565b6101ac610242366004610ca5565b6106e5565b6003805461025490610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461028090610d16565b80156102cd5780601f106102a2576101008083540402835291602001916102cd565b820191906000526020600020905b8154815290600101906020018083116102b057829003601f168201915b505050505081565b6001546001600160a01b031633146103085760405162461bcd60e51b81526004016102ff90610d50565b60405180910390fd5b60028054036103595760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ff565b600280556001600160a01b0383166103e5576000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146103b8576040519150601f19603f3d011682016040523d82523d6000602084013e6103bd565b606091505b50509050806103df57604051639081276360e01b815260040160405180910390fd5b506103f9565b6103f96001600160a01b0384168383610780565b5050600160025550565b6001546001600160a01b0316331461042d5760405162461bcd60e51b81526004016102ff90610d50565b61043760006107d7565b565b600280540361048a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ff565b600280553360009081526004602052604090205460ff16156104bf57604051635947ff1560e11b815260040160405180910390fd5b60006104cf338787878787610829565b9050806104ef576040516335b5a4e360e21b815260040160405180910390fd5b336000908152600460205260409020805460ff191660019081179091555b60058110156106835760006001600160a01b037f000000000000000000000000f9936bc175f4777d85351738ef869b3ad7e7072d1663d29f541d83336040516001600160e01b031960e085901b16815260048101929092526001600160a01b03166024820152604401600060405180830381865afa158015610593573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105bb9190810190610d9b565b50905060005b81518110156106795760008282815181106105de576105de610e61565b6020908102919091010151604051630ced5c9d60e21b815260048101829052600060248201529091506001600160a01b037f0000000000000000000000003110ef5f612208724ca51f5761a69081809f03b716906333b5727490604401600060405180830381600087803b15801561065557600080fd5b505af1158015610669573d6000803e3d6000fd5b50505050816001019150506105c1565b505060010161050d565b506106986001600160a01b0387163387610780565b6040518581526001600160a01b0387169033907ff7a40077ff7a04c7e61f6f26fb13774259ddf1b6bce9ecf26a8276cdd39926839060200160405180910390a35050600160025550505050565b6001546001600160a01b0316331461070f5760405162461bcd60e51b81526004016102ff90610d50565b6001600160a01b0381166107745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102ff565b61077d816107d7565b50565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526107d2908490610995565b505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000807ff701ae8a2a301cd9a8031018ebf6edade945bf961c18fa63997454d7f03cb02c7f6f837e924caff5aab091ff9cd45cb0f5a18a31e71f5a0581f79fa980ad3d072c8989896040516020016108a494939291909384526001600160a01b03928316602085015291166040830152606082015260800190565b604051602081830303815290604052805190602001206040516020016108e192919061190160f01b81526002810192909252602282015260420190565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff881691830191909152606082018690526080820185905291506001600160a01b037f0000000000000000000000009999c181c5f6a970fbea7ed2e490581d5b5105f2169060019060a0016020604051602081039080840390855afa158015610974573d6000803e3d6000fd5b505050602060405103516001600160a01b0316149150509695505050505050565b60006109ea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610a679092919063ffffffff16565b8051909150156107d25780806020019051810190610a089190610e77565b6107d25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102ff565b6060610a768484600085610a80565b90505b9392505050565b606082471015610ae15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102ff565b6001600160a01b0385163b610b385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102ff565b600080866001600160a01b03168587604051610b549190610e99565b60006040518083038185875af1925050503d8060008114610b91576040519150601f19603f3d011682016040523d82523d6000602084013e610b96565b606091505b5091509150610ba6828286610bb1565b979650505050505050565b60608315610bc0575081610a79565b825115610bd05782518084602001fd5b8160405162461bcd60e51b81526004016102ff9190610c1a565b60005b83811015610c05578181015183820152602001610bed565b83811115610c14576000848401525b50505050565b6020815260008251806020840152610c39816040850160208701610bea565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610c6457600080fd5b919050565b600080600060608486031215610c7e57600080fd5b610c8784610c4d565b9250610c9560208501610c4d565b9150604084013590509250925092565b600060208284031215610cb757600080fd5b610a7982610c4d565b600080600080600060a08688031215610cd857600080fd5b610ce186610c4d565b945060208601359350604086013560ff81168114610cfe57600080fd5b94979396509394606081013594506080013592915050565b600181811c90821680610d2a57607f821691505b602082108103610d4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610dae57600080fd5b825167ffffffffffffffff80821115610dc657600080fd5b818501915085601f830112610dda57600080fd5b8151602082821115610dee57610dee610d85565b8160051b604051601f19603f83011681018181108682111715610e1357610e13610d85565b604052928352818301935084810182019289841115610e3157600080fd5b948201945b83861015610e4f57855185529482019493820193610e36565b97909101519698969750505050505050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215610e8957600080fd5b81518015158114610a7957600080fd5b60008251610eab818460208701610bea565b919091019291505056fea264697066735822122097aac7cf30c11f46c2f365975100c6dcc627d8993fbb847600a238757c651c8464736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000009999c181c5f6a970fbea7ed2e490581d5b5105f2000000000000000000000000f9936bc175f4777d85351738ef869b3ad7e7072d0000000000000000000000003110ef5f612208724ca51f5761a69081809f03b7000000000000000000000000000000000000000000000000000000000000001447656e6573697320536561736f6e20436c61696d000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Genesis Season Claim
Arg [1] : _signer (address): 0x9999c181c5F6a970FbeA7ED2E490581d5B5105F2
Arg [2] : _staker (address): 0xF9936bC175F4777d85351738EF869B3ad7E7072d
Arg [3] : _impostors (address): 0x3110EF5f612208724CA51F5761A69081809F03B7

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000009999c181c5f6a970fbea7ed2e490581d5b5105f2
Arg [2] : 000000000000000000000000f9936bc175f4777d85351738ef869b3ad7e7072d
Arg [3] : 0000000000000000000000003110ef5f612208724ca51f5761a69081809f03b7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 47656e6573697320536561736f6e20436c61696d000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.